@aws-sdk/client-bedrock-agentcore-control 3.1037.0 → 3.1039.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 +84 -0
- package/dist-cjs/index.js +217 -2
- package/dist-cjs/schemas/schemas_0.js +529 -98
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
- package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
- package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
- package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +516 -86
- package/dist-es/waiters/waitForMemoryCreated.js +1 -1
- package/dist-es/waiters/waitForPolicyActive.js +1 -1
- package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
- package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
- package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
- package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
- package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
- package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +2866 -2901
- package/dist-types/models/models_1.d.ts +1406 -4
- package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +405 -571
- package/dist-types/ts3.4/models/models_1.d.ts +592 -7
- package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
- package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
- package/package.json +8 -8
|
@@ -120,6 +120,17 @@ export declare const CodeInterpreterStatus: {
|
|
|
120
120
|
};
|
|
121
121
|
export type CodeInterpreterStatus =
|
|
122
122
|
(typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
|
|
123
|
+
export declare const ConfigurationBundleStatus: {
|
|
124
|
+
readonly ACTIVE: "ACTIVE";
|
|
125
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
126
|
+
readonly CREATING: "CREATING";
|
|
127
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
128
|
+
readonly DELETING: "DELETING";
|
|
129
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
130
|
+
readonly UPDATING: "UPDATING";
|
|
131
|
+
};
|
|
132
|
+
export type ConfigurationBundleStatus =
|
|
133
|
+
(typeof ConfigurationBundleStatus)[keyof typeof ConfigurationBundleStatus];
|
|
123
134
|
export declare const EvaluatorLevel: {
|
|
124
135
|
readonly SESSION: "SESSION";
|
|
125
136
|
readonly TOOL_CALL: "TOOL_CALL";
|
|
@@ -137,6 +148,11 @@ export declare const EvaluatorStatus: {
|
|
|
137
148
|
};
|
|
138
149
|
export type EvaluatorStatus =
|
|
139
150
|
(typeof EvaluatorStatus)[keyof typeof EvaluatorStatus];
|
|
151
|
+
export declare const IncludedData: {
|
|
152
|
+
readonly ALL_DATA: "ALL_DATA";
|
|
153
|
+
readonly METADATA_ONLY: "METADATA_ONLY";
|
|
154
|
+
};
|
|
155
|
+
export type IncludedData = (typeof IncludedData)[keyof typeof IncludedData];
|
|
140
156
|
export declare const EvaluatorType: {
|
|
141
157
|
readonly BUILTIN: "Builtin";
|
|
142
158
|
readonly CODE: "CustomCode";
|
|
@@ -144,6 +160,7 @@ export declare const EvaluatorType: {
|
|
|
144
160
|
};
|
|
145
161
|
export type EvaluatorType = (typeof EvaluatorType)[keyof typeof EvaluatorType];
|
|
146
162
|
export declare const AuthorizerType: {
|
|
163
|
+
readonly AUTHENTICATE_ONLY: "AUTHENTICATE_ONLY";
|
|
147
164
|
readonly AWS_IAM: "AWS_IAM";
|
|
148
165
|
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
149
166
|
readonly NONE: "NONE";
|
|
@@ -185,6 +202,20 @@ export declare const GatewayStatus: {
|
|
|
185
202
|
readonly UPDATING: "UPDATING";
|
|
186
203
|
};
|
|
187
204
|
export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
|
|
205
|
+
export declare const PrincipalMatchOperator: {
|
|
206
|
+
readonly StringEquals: "StringEquals";
|
|
207
|
+
readonly StringLike: "StringLike";
|
|
208
|
+
};
|
|
209
|
+
export type PrincipalMatchOperator =
|
|
210
|
+
(typeof PrincipalMatchOperator)[keyof typeof PrincipalMatchOperator];
|
|
211
|
+
export declare const GatewayRuleStatus: {
|
|
212
|
+
readonly ACTIVE: "ACTIVE";
|
|
213
|
+
readonly CREATING: "CREATING";
|
|
214
|
+
readonly DELETING: "DELETING";
|
|
215
|
+
readonly UPDATING: "UPDATING";
|
|
216
|
+
};
|
|
217
|
+
export type GatewayRuleStatus =
|
|
218
|
+
(typeof GatewayRuleStatus)[keyof typeof GatewayRuleStatus];
|
|
188
219
|
export declare const ApiKeyCredentialLocation: {
|
|
189
220
|
readonly HEADER: "HEADER";
|
|
190
221
|
readonly QUERY_PARAMETER: "QUERY_PARAMETER";
|
|
@@ -199,7 +230,9 @@ export type OAuthGrantType =
|
|
|
199
230
|
(typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
200
231
|
export declare const CredentialProviderType: {
|
|
201
232
|
readonly API_KEY: "API_KEY";
|
|
233
|
+
readonly CALLER_IAM_CREDENTIALS: "CALLER_IAM_CREDENTIALS";
|
|
202
234
|
readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
|
|
235
|
+
readonly JWT_PASSTHROUGH: "JWT_PASSTHROUGH";
|
|
203
236
|
readonly OAUTH: "OAUTH";
|
|
204
237
|
};
|
|
205
238
|
export type CredentialProviderType =
|
|
@@ -228,6 +261,12 @@ export declare const ListingMode: {
|
|
|
228
261
|
readonly DYNAMIC: "DYNAMIC";
|
|
229
262
|
};
|
|
230
263
|
export type ListingMode = (typeof ListingMode)[keyof typeof ListingMode];
|
|
264
|
+
export declare const TargetProtocolType: {
|
|
265
|
+
readonly HTTP: "HTTP";
|
|
266
|
+
readonly MCP: "MCP";
|
|
267
|
+
};
|
|
268
|
+
export type TargetProtocolType =
|
|
269
|
+
(typeof TargetProtocolType)[keyof typeof TargetProtocolType];
|
|
231
270
|
export declare const TargetStatus: {
|
|
232
271
|
readonly CREATE_PENDING_AUTH: "CREATE_PENDING_AUTH";
|
|
233
272
|
readonly CREATING: "CREATING";
|