@aws-sdk/client-bedrock-agentcore-control 3.933.0 → 3.935.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.
@@ -0,0 +1,378 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AgentRuntimeEndpointStatus: {
6
+ readonly CREATE_FAILED: "CREATE_FAILED";
7
+ readonly CREATING: "CREATING";
8
+ readonly DELETING: "DELETING";
9
+ readonly READY: "READY";
10
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
11
+ readonly UPDATING: "UPDATING";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type AgentRuntimeEndpointStatus = (typeof AgentRuntimeEndpointStatus)[keyof typeof AgentRuntimeEndpointStatus];
17
+ /**
18
+ * @public
19
+ * @enum
20
+ */
21
+ export declare const ValidationExceptionReason: {
22
+ readonly CANNOT_PARSE: "CannotParse";
23
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
24
+ readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
25
+ readonly RESOURCE_CONFLICT: "ResourceConflict";
26
+ readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
27
+ };
28
+ /**
29
+ * @public
30
+ */
31
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
32
+ /**
33
+ * @public
34
+ * @enum
35
+ */
36
+ export declare const AgentManagedRuntimeType: {
37
+ readonly PYTHON_3_10: "PYTHON_3_10";
38
+ readonly PYTHON_3_11: "PYTHON_3_11";
39
+ readonly PYTHON_3_12: "PYTHON_3_12";
40
+ readonly PYTHON_3_13: "PYTHON_3_13";
41
+ };
42
+ /**
43
+ * @public
44
+ */
45
+ export type AgentManagedRuntimeType = (typeof AgentManagedRuntimeType)[keyof typeof AgentManagedRuntimeType];
46
+ /**
47
+ * @public
48
+ * @enum
49
+ */
50
+ export declare const NetworkMode: {
51
+ readonly PUBLIC: "PUBLIC";
52
+ readonly VPC: "VPC";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const ServerProtocol: {
63
+ readonly A2A: "A2A";
64
+ readonly HTTP: "HTTP";
65
+ readonly MCP: "MCP";
66
+ };
67
+ /**
68
+ * @public
69
+ */
70
+ export type ServerProtocol = (typeof ServerProtocol)[keyof typeof ServerProtocol];
71
+ /**
72
+ * @public
73
+ * @enum
74
+ */
75
+ export declare const AgentRuntimeStatus: {
76
+ readonly CREATE_FAILED: "CREATE_FAILED";
77
+ readonly CREATING: "CREATING";
78
+ readonly DELETING: "DELETING";
79
+ readonly READY: "READY";
80
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
81
+ readonly UPDATING: "UPDATING";
82
+ };
83
+ /**
84
+ * @public
85
+ */
86
+ export type AgentRuntimeStatus = (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
87
+ /**
88
+ * @public
89
+ * @enum
90
+ */
91
+ export declare const BrowserNetworkMode: {
92
+ readonly PUBLIC: "PUBLIC";
93
+ readonly VPC: "VPC";
94
+ };
95
+ /**
96
+ * @public
97
+ */
98
+ export type BrowserNetworkMode = (typeof BrowserNetworkMode)[keyof typeof BrowserNetworkMode];
99
+ /**
100
+ * @public
101
+ * @enum
102
+ */
103
+ export declare const BrowserStatus: {
104
+ readonly CREATE_FAILED: "CREATE_FAILED";
105
+ readonly CREATING: "CREATING";
106
+ readonly DELETED: "DELETED";
107
+ readonly DELETE_FAILED: "DELETE_FAILED";
108
+ readonly DELETING: "DELETING";
109
+ readonly READY: "READY";
110
+ };
111
+ /**
112
+ * @public
113
+ */
114
+ export type BrowserStatus = (typeof BrowserStatus)[keyof typeof BrowserStatus];
115
+ /**
116
+ * @public
117
+ * @enum
118
+ */
119
+ export declare const ResourceType: {
120
+ readonly CUSTOM: "CUSTOM";
121
+ readonly SYSTEM: "SYSTEM";
122
+ };
123
+ /**
124
+ * @public
125
+ */
126
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
127
+ /**
128
+ * @public
129
+ * @enum
130
+ */
131
+ export declare const CodeInterpreterNetworkMode: {
132
+ readonly PUBLIC: "PUBLIC";
133
+ readonly SANDBOX: "SANDBOX";
134
+ readonly VPC: "VPC";
135
+ };
136
+ /**
137
+ * @public
138
+ */
139
+ export type CodeInterpreterNetworkMode = (typeof CodeInterpreterNetworkMode)[keyof typeof CodeInterpreterNetworkMode];
140
+ /**
141
+ * @public
142
+ * @enum
143
+ */
144
+ export declare const CodeInterpreterStatus: {
145
+ readonly CREATE_FAILED: "CREATE_FAILED";
146
+ readonly CREATING: "CREATING";
147
+ readonly DELETED: "DELETED";
148
+ readonly DELETE_FAILED: "DELETE_FAILED";
149
+ readonly DELETING: "DELETING";
150
+ readonly READY: "READY";
151
+ };
152
+ /**
153
+ * @public
154
+ */
155
+ export type CodeInterpreterStatus = (typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
156
+ /**
157
+ * @public
158
+ * @enum
159
+ */
160
+ export declare const AuthorizerType: {
161
+ readonly AWS_IAM: "AWS_IAM";
162
+ readonly CUSTOM_JWT: "CUSTOM_JWT";
163
+ };
164
+ /**
165
+ * @public
166
+ */
167
+ export type AuthorizerType = (typeof AuthorizerType)[keyof typeof AuthorizerType];
168
+ /**
169
+ * @public
170
+ * @enum
171
+ */
172
+ export declare const ExceptionLevel: {
173
+ readonly DEBUG: "DEBUG";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type ExceptionLevel = (typeof ExceptionLevel)[keyof typeof ExceptionLevel];
179
+ /**
180
+ * @public
181
+ * @enum
182
+ */
183
+ export declare const SearchType: {
184
+ readonly SEMANTIC: "SEMANTIC";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type SearchType = (typeof SearchType)[keyof typeof SearchType];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const GatewayProtocolType: {
195
+ readonly MCP: "MCP";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type GatewayProtocolType = (typeof GatewayProtocolType)[keyof typeof GatewayProtocolType];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const GatewayStatus: {
206
+ readonly CREATING: "CREATING";
207
+ readonly DELETING: "DELETING";
208
+ readonly FAILED: "FAILED";
209
+ readonly READY: "READY";
210
+ readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
211
+ readonly UPDATING: "UPDATING";
212
+ };
213
+ /**
214
+ * @public
215
+ */
216
+ export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
217
+ /**
218
+ * @public
219
+ * @enum
220
+ */
221
+ export declare const ApiKeyCredentialLocation: {
222
+ readonly HEADER: "HEADER";
223
+ readonly QUERY_PARAMETER: "QUERY_PARAMETER";
224
+ };
225
+ /**
226
+ * @public
227
+ */
228
+ export type ApiKeyCredentialLocation = (typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
229
+ /**
230
+ * @public
231
+ * @enum
232
+ */
233
+ export declare const CredentialProviderType: {
234
+ readonly API_KEY: "API_KEY";
235
+ readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
236
+ readonly OAUTH: "OAUTH";
237
+ };
238
+ /**
239
+ * @public
240
+ */
241
+ export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
242
+ /**
243
+ * @public
244
+ * @enum
245
+ */
246
+ export declare const SchemaType: {
247
+ readonly ARRAY: "array";
248
+ readonly BOOLEAN: "boolean";
249
+ readonly INTEGER: "integer";
250
+ readonly NUMBER: "number";
251
+ readonly OBJECT: "object";
252
+ readonly STRING: "string";
253
+ };
254
+ /**
255
+ * @public
256
+ */
257
+ export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
258
+ /**
259
+ * @public
260
+ * @enum
261
+ */
262
+ export declare const TargetStatus: {
263
+ readonly CREATING: "CREATING";
264
+ readonly DELETING: "DELETING";
265
+ readonly FAILED: "FAILED";
266
+ readonly READY: "READY";
267
+ readonly SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL";
268
+ readonly SYNCHRONIZING: "SYNCHRONIZING";
269
+ readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
270
+ readonly UPDATING: "UPDATING";
271
+ };
272
+ /**
273
+ * @public
274
+ */
275
+ export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
276
+ /**
277
+ * @public
278
+ * @enum
279
+ */
280
+ export declare const KeyType: {
281
+ readonly CustomerManagedKey: "CustomerManagedKey";
282
+ readonly ServiceManagedKey: "ServiceManagedKey";
283
+ };
284
+ /**
285
+ * @public
286
+ */
287
+ export type KeyType = (typeof KeyType)[keyof typeof KeyType];
288
+ /**
289
+ * @public
290
+ * @enum
291
+ */
292
+ export declare const MemoryStatus: {
293
+ readonly ACTIVE: "ACTIVE";
294
+ readonly CREATING: "CREATING";
295
+ readonly DELETING: "DELETING";
296
+ readonly FAILED: "FAILED";
297
+ };
298
+ /**
299
+ * @public
300
+ */
301
+ export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
302
+ /**
303
+ * @public
304
+ * @enum
305
+ */
306
+ export declare const OverrideType: {
307
+ readonly SELF_MANAGED: "SELF_MANAGED";
308
+ readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
309
+ readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
310
+ readonly USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE";
311
+ };
312
+ /**
313
+ * @public
314
+ */
315
+ export type OverrideType = (typeof OverrideType)[keyof typeof OverrideType];
316
+ /**
317
+ * @public
318
+ * @enum
319
+ */
320
+ export declare const MemoryStrategyStatus: {
321
+ readonly ACTIVE: "ACTIVE";
322
+ readonly CREATING: "CREATING";
323
+ readonly DELETING: "DELETING";
324
+ readonly FAILED: "FAILED";
325
+ };
326
+ /**
327
+ * @public
328
+ */
329
+ export type MemoryStrategyStatus = (typeof MemoryStrategyStatus)[keyof typeof MemoryStrategyStatus];
330
+ /**
331
+ * @public
332
+ * @enum
333
+ */
334
+ export declare const MemoryStrategyType: {
335
+ readonly CUSTOM: "CUSTOM";
336
+ readonly SEMANTIC: "SEMANTIC";
337
+ readonly SUMMARIZATION: "SUMMARIZATION";
338
+ readonly USER_PREFERENCE: "USER_PREFERENCE";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type MemoryStrategyType = (typeof MemoryStrategyType)[keyof typeof MemoryStrategyType];
344
+ /**
345
+ * @public
346
+ * @enum
347
+ */
348
+ export declare const CredentialProviderVendorType: {
349
+ readonly AtlassianOauth2: "AtlassianOauth2";
350
+ readonly Auth0Oauth2: "Auth0Oauth2";
351
+ readonly CognitoOauth2: "CognitoOauth2";
352
+ readonly CustomOauth2: "CustomOauth2";
353
+ readonly CyberArkOauth2: "CyberArkOauth2";
354
+ readonly DropboxOauth2: "DropboxOauth2";
355
+ readonly FacebookOauth2: "FacebookOauth2";
356
+ readonly FusionAuthOauth2: "FusionAuthOauth2";
357
+ readonly GithubOauth2: "GithubOauth2";
358
+ readonly GoogleOauth2: "GoogleOauth2";
359
+ readonly HubspotOauth2: "HubspotOauth2";
360
+ readonly LinkedinOauth2: "LinkedinOauth2";
361
+ readonly MicrosoftOauth2: "MicrosoftOauth2";
362
+ readonly NotionOauth2: "NotionOauth2";
363
+ readonly OktaOauth2: "OktaOauth2";
364
+ readonly OneLoginOauth2: "OneLoginOauth2";
365
+ readonly PingOneOauth2: "PingOneOauth2";
366
+ readonly RedditOauth2: "RedditOauth2";
367
+ readonly SalesforceOauth2: "SalesforceOauth2";
368
+ readonly SlackOauth2: "SlackOauth2";
369
+ readonly SpotifyOauth2: "SpotifyOauth2";
370
+ readonly TwitchOauth2: "TwitchOauth2";
371
+ readonly XOauth2: "XOauth2";
372
+ readonly YandexOauth2: "YandexOauth2";
373
+ readonly ZoomOauth2: "ZoomOauth2";
374
+ };
375
+ /**
376
+ * @public
377
+ */
378
+ export type CredentialProviderVendorType = (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
@@ -0,0 +1,176 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BedrockAgentCoreControlServiceException as __BaseException } from "./BedrockAgentCoreControlServiceException";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ValidationExceptionField } from "./models_0";
5
+ /**
6
+ * <p>This exception is thrown when a request is denied per access permissions</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
16
+ }
17
+ /**
18
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
19
+ * @public
20
+ */
21
+ export declare class ConflictException extends __BaseException {
22
+ readonly name: "ConflictException";
23
+ readonly $fault: "client";
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
31
+ * @public
32
+ */
33
+ export declare class InternalServerException extends __BaseException {
34
+ readonly name: "InternalServerException";
35
+ readonly $fault: "server";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
43
+ * @public
44
+ */
45
+ export declare class ResourceNotFoundException extends __BaseException {
46
+ readonly name: "ResourceNotFoundException";
47
+ readonly $fault: "client";
48
+ /**
49
+ * @internal
50
+ */
51
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
52
+ }
53
+ /**
54
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
55
+ * @public
56
+ */
57
+ export declare class ServiceQuotaExceededException extends __BaseException {
58
+ readonly name: "ServiceQuotaExceededException";
59
+ readonly $fault: "client";
60
+ /**
61
+ * @internal
62
+ */
63
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
64
+ }
65
+ /**
66
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
67
+ * @public
68
+ */
69
+ export declare class ThrottlingException extends __BaseException {
70
+ readonly name: "ThrottlingException";
71
+ readonly $fault: "client";
72
+ /**
73
+ * @internal
74
+ */
75
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
76
+ }
77
+ /**
78
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
79
+ * @public
80
+ */
81
+ export declare class ValidationException extends __BaseException {
82
+ readonly name: "ValidationException";
83
+ readonly $fault: "client";
84
+ reason: ValidationExceptionReason | undefined;
85
+ fieldList?: ValidationExceptionField[] | undefined;
86
+ /**
87
+ * @internal
88
+ */
89
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
90
+ }
91
+ /**
92
+ * <p>Exception thrown when decryption of a secret fails.</p>
93
+ * @public
94
+ */
95
+ export declare class DecryptionFailure extends __BaseException {
96
+ readonly name: "DecryptionFailure";
97
+ readonly $fault: "client";
98
+ /**
99
+ * @internal
100
+ */
101
+ constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
102
+ }
103
+ /**
104
+ * <p>Exception thrown when encryption of a secret fails.</p>
105
+ * @public
106
+ */
107
+ export declare class EncryptionFailure extends __BaseException {
108
+ readonly name: "EncryptionFailure";
109
+ readonly $fault: "client";
110
+ /**
111
+ * @internal
112
+ */
113
+ constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
114
+ }
115
+ /**
116
+ * <p>Exception thrown when a resource limit is exceeded.</p>
117
+ * @public
118
+ */
119
+ export declare class ResourceLimitExceededException extends __BaseException {
120
+ readonly name: "ResourceLimitExceededException";
121
+ readonly $fault: "client";
122
+ /**
123
+ * @internal
124
+ */
125
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
126
+ }
127
+ /**
128
+ * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
129
+ * @public
130
+ */
131
+ export declare class UnauthorizedException extends __BaseException {
132
+ readonly name: "UnauthorizedException";
133
+ readonly $fault: "client";
134
+ /**
135
+ * @internal
136
+ */
137
+ constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
138
+ }
139
+ /**
140
+ * <p>An internal error occurred.</p>
141
+ * @public
142
+ */
143
+ export declare class ServiceException extends __BaseException {
144
+ readonly name: "ServiceException";
145
+ readonly $fault: "server";
146
+ $retryable: {};
147
+ /**
148
+ * @internal
149
+ */
150
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
151
+ }
152
+ /**
153
+ * <p>API rate limit has been exceeded.</p>
154
+ * @public
155
+ */
156
+ export declare class ThrottledException extends __BaseException {
157
+ readonly name: "ThrottledException";
158
+ readonly $fault: "client";
159
+ $retryable: {};
160
+ /**
161
+ * @internal
162
+ */
163
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
164
+ }
165
+ /**
166
+ * <p>Exception thrown when a resource is modified concurrently by multiple requests.</p>
167
+ * @public
168
+ */
169
+ export declare class ConcurrentModificationException extends __BaseException {
170
+ readonly name: "ConcurrentModificationException";
171
+ readonly $fault: "client";
172
+ /**
173
+ * @internal
174
+ */
175
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
176
+ }