@aws-sdk/client-bedrock-agentcore-control 3.939.0 → 3.943.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +216 -0
- package/dist-cjs/index.js +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/schemas/schemas_0.js +1320 -97
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +5 -5
|
@@ -3,30 +3,45 @@ export * from "./CreateAgentRuntimeEndpointCommand";
|
|
|
3
3
|
export * from "./CreateApiKeyCredentialProviderCommand";
|
|
4
4
|
export * from "./CreateBrowserCommand";
|
|
5
5
|
export * from "./CreateCodeInterpreterCommand";
|
|
6
|
+
export * from "./CreateEvaluatorCommand";
|
|
6
7
|
export * from "./CreateGatewayCommand";
|
|
7
8
|
export * from "./CreateGatewayTargetCommand";
|
|
8
9
|
export * from "./CreateMemoryCommand";
|
|
9
10
|
export * from "./CreateOauth2CredentialProviderCommand";
|
|
11
|
+
export * from "./CreateOnlineEvaluationConfigCommand";
|
|
12
|
+
export * from "./CreatePolicyCommand";
|
|
13
|
+
export * from "./CreatePolicyEngineCommand";
|
|
10
14
|
export * from "./CreateWorkloadIdentityCommand";
|
|
11
15
|
export * from "./DeleteAgentRuntimeCommand";
|
|
12
16
|
export * from "./DeleteAgentRuntimeEndpointCommand";
|
|
13
17
|
export * from "./DeleteApiKeyCredentialProviderCommand";
|
|
14
18
|
export * from "./DeleteBrowserCommand";
|
|
15
19
|
export * from "./DeleteCodeInterpreterCommand";
|
|
20
|
+
export * from "./DeleteEvaluatorCommand";
|
|
16
21
|
export * from "./DeleteGatewayCommand";
|
|
17
22
|
export * from "./DeleteGatewayTargetCommand";
|
|
18
23
|
export * from "./DeleteMemoryCommand";
|
|
19
24
|
export * from "./DeleteOauth2CredentialProviderCommand";
|
|
25
|
+
export * from "./DeleteOnlineEvaluationConfigCommand";
|
|
26
|
+
export * from "./DeletePolicyCommand";
|
|
27
|
+
export * from "./DeletePolicyEngineCommand";
|
|
28
|
+
export * from "./DeleteResourcePolicyCommand";
|
|
20
29
|
export * from "./DeleteWorkloadIdentityCommand";
|
|
21
30
|
export * from "./GetAgentRuntimeCommand";
|
|
22
31
|
export * from "./GetAgentRuntimeEndpointCommand";
|
|
23
32
|
export * from "./GetApiKeyCredentialProviderCommand";
|
|
24
33
|
export * from "./GetBrowserCommand";
|
|
25
34
|
export * from "./GetCodeInterpreterCommand";
|
|
35
|
+
export * from "./GetEvaluatorCommand";
|
|
26
36
|
export * from "./GetGatewayCommand";
|
|
27
37
|
export * from "./GetGatewayTargetCommand";
|
|
28
38
|
export * from "./GetMemoryCommand";
|
|
29
39
|
export * from "./GetOauth2CredentialProviderCommand";
|
|
40
|
+
export * from "./GetOnlineEvaluationConfigCommand";
|
|
41
|
+
export * from "./GetPolicyCommand";
|
|
42
|
+
export * from "./GetPolicyEngineCommand";
|
|
43
|
+
export * from "./GetPolicyGenerationCommand";
|
|
44
|
+
export * from "./GetResourcePolicyCommand";
|
|
30
45
|
export * from "./GetTokenVaultCommand";
|
|
31
46
|
export * from "./GetWorkloadIdentityCommand";
|
|
32
47
|
export * from "./ListAgentRuntimeEndpointsCommand";
|
|
@@ -35,21 +50,33 @@ export * from "./ListAgentRuntimesCommand";
|
|
|
35
50
|
export * from "./ListApiKeyCredentialProvidersCommand";
|
|
36
51
|
export * from "./ListBrowsersCommand";
|
|
37
52
|
export * from "./ListCodeInterpretersCommand";
|
|
53
|
+
export * from "./ListEvaluatorsCommand";
|
|
38
54
|
export * from "./ListGatewayTargetsCommand";
|
|
39
55
|
export * from "./ListGatewaysCommand";
|
|
40
56
|
export * from "./ListMemoriesCommand";
|
|
41
57
|
export * from "./ListOauth2CredentialProvidersCommand";
|
|
58
|
+
export * from "./ListOnlineEvaluationConfigsCommand";
|
|
59
|
+
export * from "./ListPoliciesCommand";
|
|
60
|
+
export * from "./ListPolicyEnginesCommand";
|
|
61
|
+
export * from "./ListPolicyGenerationAssetsCommand";
|
|
62
|
+
export * from "./ListPolicyGenerationsCommand";
|
|
42
63
|
export * from "./ListTagsForResourceCommand";
|
|
43
64
|
export * from "./ListWorkloadIdentitiesCommand";
|
|
65
|
+
export * from "./PutResourcePolicyCommand";
|
|
44
66
|
export * from "./SetTokenVaultCMKCommand";
|
|
67
|
+
export * from "./StartPolicyGenerationCommand";
|
|
45
68
|
export * from "./SynchronizeGatewayTargetsCommand";
|
|
46
69
|
export * from "./TagResourceCommand";
|
|
47
70
|
export * from "./UntagResourceCommand";
|
|
48
71
|
export * from "./UpdateAgentRuntimeCommand";
|
|
49
72
|
export * from "./UpdateAgentRuntimeEndpointCommand";
|
|
50
73
|
export * from "./UpdateApiKeyCredentialProviderCommand";
|
|
74
|
+
export * from "./UpdateEvaluatorCommand";
|
|
51
75
|
export * from "./UpdateGatewayCommand";
|
|
52
76
|
export * from "./UpdateGatewayTargetCommand";
|
|
53
77
|
export * from "./UpdateMemoryCommand";
|
|
54
78
|
export * from "./UpdateOauth2CredentialProviderCommand";
|
|
79
|
+
export * from "./UpdateOnlineEvaluationConfigCommand";
|
|
80
|
+
export * from "./UpdatePolicyCommand";
|
|
81
|
+
export * from "./UpdatePolicyEngineCommand";
|
|
55
82
|
export * from "./UpdateWorkloadIdentityCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -19,6 +19,15 @@ export const AgentManagedRuntimeType = {
|
|
|
19
19
|
PYTHON_3_12: "PYTHON_3_12",
|
|
20
20
|
PYTHON_3_13: "PYTHON_3_13",
|
|
21
21
|
};
|
|
22
|
+
export const ClaimMatchOperatorType = {
|
|
23
|
+
CONTAINS: "CONTAINS",
|
|
24
|
+
CONTAINS_ANY: "CONTAINS_ANY",
|
|
25
|
+
EQUALS: "EQUALS",
|
|
26
|
+
};
|
|
27
|
+
export const InboundTokenClaimValueType = {
|
|
28
|
+
STRING: "STRING",
|
|
29
|
+
STRING_ARRAY: "STRING_ARRAY",
|
|
30
|
+
};
|
|
22
31
|
export const NetworkMode = {
|
|
23
32
|
PUBLIC: "PUBLIC",
|
|
24
33
|
VPC: "VPC",
|
|
@@ -65,6 +74,23 @@ export const CodeInterpreterStatus = {
|
|
|
65
74
|
DELETING: "DELETING",
|
|
66
75
|
READY: "READY",
|
|
67
76
|
};
|
|
77
|
+
export const EvaluatorLevel = {
|
|
78
|
+
SESSION: "SESSION",
|
|
79
|
+
TOOL_CALL: "TOOL_CALL",
|
|
80
|
+
TRACE: "TRACE",
|
|
81
|
+
};
|
|
82
|
+
export const EvaluatorStatus = {
|
|
83
|
+
ACTIVE: "ACTIVE",
|
|
84
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
85
|
+
CREATING: "CREATING",
|
|
86
|
+
DELETING: "DELETING",
|
|
87
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
88
|
+
UPDATING: "UPDATING",
|
|
89
|
+
};
|
|
90
|
+
export const EvaluatorType = {
|
|
91
|
+
BUILTIN: "Builtin",
|
|
92
|
+
CUSTOM: "Custom",
|
|
93
|
+
};
|
|
68
94
|
export const AuthorizerType = {
|
|
69
95
|
AWS_IAM: "AWS_IAM",
|
|
70
96
|
CUSTOM_JWT: "CUSTOM_JWT",
|
|
@@ -77,6 +103,10 @@ export const GatewayInterceptionPoint = {
|
|
|
77
103
|
REQUEST: "REQUEST",
|
|
78
104
|
RESPONSE: "RESPONSE",
|
|
79
105
|
};
|
|
106
|
+
export const GatewayPolicyEngineMode = {
|
|
107
|
+
ENFORCE: "ENFORCE",
|
|
108
|
+
LOG_ONLY: "LOG_ONLY",
|
|
109
|
+
};
|
|
80
110
|
export const SearchType = {
|
|
81
111
|
SEMANTIC: "SEMANTIC",
|
|
82
112
|
};
|
|
@@ -95,11 +125,24 @@ export const ApiKeyCredentialLocation = {
|
|
|
95
125
|
HEADER: "HEADER",
|
|
96
126
|
QUERY_PARAMETER: "QUERY_PARAMETER",
|
|
97
127
|
};
|
|
128
|
+
export const OAuthGrantType = {
|
|
129
|
+
AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
|
|
130
|
+
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
131
|
+
};
|
|
98
132
|
export const CredentialProviderType = {
|
|
99
133
|
API_KEY: "API_KEY",
|
|
100
134
|
GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
|
|
101
135
|
OAUTH: "OAUTH",
|
|
102
136
|
};
|
|
137
|
+
export const RestApiMethod = {
|
|
138
|
+
DELETE: "DELETE",
|
|
139
|
+
GET: "GET",
|
|
140
|
+
HEAD: "HEAD",
|
|
141
|
+
OPTIONS: "OPTIONS",
|
|
142
|
+
PATCH: "PATCH",
|
|
143
|
+
POST: "POST",
|
|
144
|
+
PUT: "PUT",
|
|
145
|
+
};
|
|
103
146
|
export const SchemaType = {
|
|
104
147
|
ARRAY: "array",
|
|
105
148
|
BOOLEAN: "boolean",
|
|
@@ -129,6 +172,7 @@ export const MemoryStatus = {
|
|
|
129
172
|
FAILED: "FAILED",
|
|
130
173
|
};
|
|
131
174
|
export const OverrideType = {
|
|
175
|
+
EPISODIC_OVERRIDE: "EPISODIC_OVERRIDE",
|
|
132
176
|
SELF_MANAGED: "SELF_MANAGED",
|
|
133
177
|
SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE",
|
|
134
178
|
SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE",
|
|
@@ -142,6 +186,7 @@ export const MemoryStrategyStatus = {
|
|
|
142
186
|
};
|
|
143
187
|
export const MemoryStrategyType = {
|
|
144
188
|
CUSTOM: "CUSTOM",
|
|
189
|
+
EPISODIC: "EPISODIC",
|
|
145
190
|
SEMANTIC: "SEMANTIC",
|
|
146
191
|
SUMMARIZATION: "SUMMARIZATION",
|
|
147
192
|
USER_PREFERENCE: "USER_PREFERENCE",
|
|
@@ -173,3 +218,62 @@ export const CredentialProviderVendorType = {
|
|
|
173
218
|
YandexOauth2: "YandexOauth2",
|
|
174
219
|
ZoomOauth2: "ZoomOauth2",
|
|
175
220
|
};
|
|
221
|
+
export const FilterOperator = {
|
|
222
|
+
CONTAINS: "Contains",
|
|
223
|
+
EQUALS: "Equals",
|
|
224
|
+
GREATER_THAN: "GreaterThan",
|
|
225
|
+
GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual",
|
|
226
|
+
LESS_THAN: "LessThan",
|
|
227
|
+
LESS_THAN_OR_EQUAL: "LessThanOrEqual",
|
|
228
|
+
NOT_CONTAINS: "NotContains",
|
|
229
|
+
NOT_EQUALS: "NotEquals",
|
|
230
|
+
};
|
|
231
|
+
export const OnlineEvaluationExecutionStatus = {
|
|
232
|
+
DISABLED: "DISABLED",
|
|
233
|
+
ENABLED: "ENABLED",
|
|
234
|
+
};
|
|
235
|
+
export const OnlineEvaluationConfigStatus = {
|
|
236
|
+
ACTIVE: "ACTIVE",
|
|
237
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
238
|
+
CREATING: "CREATING",
|
|
239
|
+
DELETING: "DELETING",
|
|
240
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
241
|
+
UPDATING: "UPDATING",
|
|
242
|
+
};
|
|
243
|
+
export const PolicyEngineStatus = {
|
|
244
|
+
ACTIVE: "ACTIVE",
|
|
245
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
246
|
+
CREATING: "CREATING",
|
|
247
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
248
|
+
DELETING: "DELETING",
|
|
249
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
250
|
+
UPDATING: "UPDATING",
|
|
251
|
+
};
|
|
252
|
+
export const PolicyGenerationStatus = {
|
|
253
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
254
|
+
GENERATED: "GENERATED",
|
|
255
|
+
GENERATE_FAILED: "GENERATE_FAILED",
|
|
256
|
+
GENERATING: "GENERATING",
|
|
257
|
+
};
|
|
258
|
+
export const FindingType = {
|
|
259
|
+
ALLOW_ALL: "ALLOW_ALL",
|
|
260
|
+
ALLOW_NONE: "ALLOW_NONE",
|
|
261
|
+
DENY_ALL: "DENY_ALL",
|
|
262
|
+
DENY_NONE: "DENY_NONE",
|
|
263
|
+
INVALID: "INVALID",
|
|
264
|
+
NOT_TRANSLATABLE: "NOT_TRANSLATABLE",
|
|
265
|
+
VALID: "VALID",
|
|
266
|
+
};
|
|
267
|
+
export const PolicyValidationMode = {
|
|
268
|
+
FAIL_ON_ANY_FINDINGS: "FAIL_ON_ANY_FINDINGS",
|
|
269
|
+
IGNORE_ALL_FINDINGS: "IGNORE_ALL_FINDINGS",
|
|
270
|
+
};
|
|
271
|
+
export const PolicyStatus = {
|
|
272
|
+
ACTIVE: "ACTIVE",
|
|
273
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
274
|
+
CREATING: "CREATING",
|
|
275
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
276
|
+
DELETING: "DELETING",
|
|
277
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
278
|
+
UPDATING: "UPDATING",
|
|
279
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListEvaluatorsCommand, } from "../commands/ListEvaluatorsCommand";
|
|
4
|
+
export const paginateListEvaluators = createPaginator(BedrockAgentCoreControlClient, ListEvaluatorsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListOnlineEvaluationConfigsCommand, } from "../commands/ListOnlineEvaluationConfigsCommand";
|
|
4
|
+
export const paginateListOnlineEvaluationConfigs = createPaginator(BedrockAgentCoreControlClient, ListOnlineEvaluationConfigsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListPoliciesCommand, } from "../commands/ListPoliciesCommand";
|
|
4
|
+
export const paginateListPolicies = createPaginator(BedrockAgentCoreControlClient, ListPoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListPolicyEnginesCommand, } from "../commands/ListPolicyEnginesCommand";
|
|
4
|
+
export const paginateListPolicyEngines = createPaginator(BedrockAgentCoreControlClient, ListPolicyEnginesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListPolicyGenerationAssetsCommand, } from "../commands/ListPolicyGenerationAssetsCommand";
|
|
4
|
+
export const paginateListPolicyGenerationAssets = createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListPolicyGenerationsCommand, } from "../commands/ListPolicyGenerationsCommand";
|
|
4
|
+
export const paginateListPolicyGenerations = createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -5,8 +5,14 @@ export * from "./ListAgentRuntimesPaginator";
|
|
|
5
5
|
export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
6
6
|
export * from "./ListBrowsersPaginator";
|
|
7
7
|
export * from "./ListCodeInterpretersPaginator";
|
|
8
|
+
export * from "./ListEvaluatorsPaginator";
|
|
8
9
|
export * from "./ListGatewayTargetsPaginator";
|
|
9
10
|
export * from "./ListGatewaysPaginator";
|
|
10
11
|
export * from "./ListMemoriesPaginator";
|
|
11
12
|
export * from "./ListOauth2CredentialProvidersPaginator";
|
|
13
|
+
export * from "./ListOnlineEvaluationConfigsPaginator";
|
|
14
|
+
export * from "./ListPoliciesPaginator";
|
|
15
|
+
export * from "./ListPolicyEnginesPaginator";
|
|
16
|
+
export * from "./ListPolicyGenerationAssetsPaginator";
|
|
17
|
+
export * from "./ListPolicyGenerationsPaginator";
|
|
12
18
|
export * from "./ListWorkloadIdentitiesPaginator";
|