@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.
- package/dist-cjs/index.js +171 -170
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +170 -0
- package/dist-es/models/errors.js +175 -0
- package/dist-es/models/models_0.js +1 -345
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +378 -0
- package/dist-types/models/errors.d.ts +176 -0
- package/dist-types/models/models_0.d.ts +1 -552
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +212 -0
- package/dist-types/ts3.4/models/errors.d.ts +99 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -309
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import {
|
|
2
|
+
AgentManagedRuntimeType,
|
|
3
|
+
AgentRuntimeEndpointStatus,
|
|
4
|
+
AgentRuntimeStatus,
|
|
5
|
+
ApiKeyCredentialLocation,
|
|
6
|
+
AuthorizerType,
|
|
7
|
+
BrowserNetworkMode,
|
|
8
|
+
BrowserStatus,
|
|
9
|
+
CodeInterpreterNetworkMode,
|
|
10
|
+
CodeInterpreterStatus,
|
|
11
|
+
CredentialProviderType,
|
|
12
|
+
CredentialProviderVendorType,
|
|
13
|
+
ExceptionLevel,
|
|
14
|
+
GatewayProtocolType,
|
|
15
|
+
GatewayStatus,
|
|
16
|
+
KeyType,
|
|
17
|
+
MemoryStatus,
|
|
18
|
+
MemoryStrategyStatus,
|
|
19
|
+
MemoryStrategyType,
|
|
20
|
+
NetworkMode,
|
|
21
|
+
OverrideType,
|
|
22
|
+
ResourceType,
|
|
23
|
+
SchemaType,
|
|
24
|
+
SearchType,
|
|
25
|
+
ServerProtocol,
|
|
26
|
+
TargetStatus,
|
|
27
|
+
} from "./enums";
|
|
15
28
|
export interface CreateAgentRuntimeEndpointRequest {
|
|
16
29
|
agentRuntimeId: string | undefined;
|
|
17
30
|
name: string | undefined;
|
|
@@ -20,16 +33,6 @@ export interface CreateAgentRuntimeEndpointRequest {
|
|
|
20
33
|
clientToken?: string | undefined;
|
|
21
34
|
tags?: Record<string, string> | undefined;
|
|
22
35
|
}
|
|
23
|
-
export declare const AgentRuntimeEndpointStatus: {
|
|
24
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
25
|
-
readonly CREATING: "CREATING";
|
|
26
|
-
readonly DELETING: "DELETING";
|
|
27
|
-
readonly READY: "READY";
|
|
28
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
29
|
-
readonly UPDATING: "UPDATING";
|
|
30
|
-
};
|
|
31
|
-
export type AgentRuntimeEndpointStatus =
|
|
32
|
-
(typeof AgentRuntimeEndpointStatus)[keyof typeof AgentRuntimeEndpointStatus];
|
|
33
36
|
export interface CreateAgentRuntimeEndpointResponse {
|
|
34
37
|
targetVersion: string | undefined;
|
|
35
38
|
agentRuntimeEndpointArn: string | undefined;
|
|
@@ -39,56 +42,10 @@ export interface CreateAgentRuntimeEndpointResponse {
|
|
|
39
42
|
status: AgentRuntimeEndpointStatus | undefined;
|
|
40
43
|
createdAt: Date | undefined;
|
|
41
44
|
}
|
|
42
|
-
export declare class InternalServerException extends __BaseException {
|
|
43
|
-
readonly name: "InternalServerException";
|
|
44
|
-
readonly $fault: "server";
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
47
|
-
);
|
|
48
|
-
}
|
|
49
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
50
|
-
readonly name: "ResourceNotFoundException";
|
|
51
|
-
readonly $fault: "client";
|
|
52
|
-
constructor(
|
|
53
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
57
|
-
readonly name: "ServiceQuotaExceededException";
|
|
58
|
-
readonly $fault: "client";
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class ThrottlingException extends __BaseException {
|
|
64
|
-
readonly name: "ThrottlingException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
45
|
export interface ValidationExceptionField {
|
|
71
46
|
name: string | undefined;
|
|
72
47
|
message: string | undefined;
|
|
73
48
|
}
|
|
74
|
-
export declare const ValidationExceptionReason: {
|
|
75
|
-
readonly CANNOT_PARSE: "CannotParse";
|
|
76
|
-
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
77
|
-
readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
|
|
78
|
-
readonly RESOURCE_CONFLICT: "ResourceConflict";
|
|
79
|
-
readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
|
|
80
|
-
};
|
|
81
|
-
export type ValidationExceptionReason =
|
|
82
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
83
|
-
export declare class ValidationException extends __BaseException {
|
|
84
|
-
readonly name: "ValidationException";
|
|
85
|
-
readonly $fault: "client";
|
|
86
|
-
reason: ValidationExceptionReason | undefined;
|
|
87
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
88
|
-
constructor(
|
|
89
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
49
|
export interface DeleteAgentRuntimeEndpointRequest {
|
|
93
50
|
agentRuntimeId: string | undefined;
|
|
94
51
|
endpointName: string | undefined;
|
|
@@ -153,14 +110,6 @@ export interface UpdateAgentRuntimeEndpointResponse {
|
|
|
153
110
|
createdAt: Date | undefined;
|
|
154
111
|
lastUpdatedAt: Date | undefined;
|
|
155
112
|
}
|
|
156
|
-
export declare const AgentManagedRuntimeType: {
|
|
157
|
-
readonly PYTHON_3_10: "PYTHON_3_10";
|
|
158
|
-
readonly PYTHON_3_11: "PYTHON_3_11";
|
|
159
|
-
readonly PYTHON_3_12: "PYTHON_3_12";
|
|
160
|
-
readonly PYTHON_3_13: "PYTHON_3_13";
|
|
161
|
-
};
|
|
162
|
-
export type AgentManagedRuntimeType =
|
|
163
|
-
(typeof AgentManagedRuntimeType)[keyof typeof AgentManagedRuntimeType];
|
|
164
113
|
export interface S3Location {
|
|
165
114
|
bucket: string | undefined;
|
|
166
115
|
prefix: string | undefined;
|
|
@@ -241,11 +190,6 @@ export interface LifecycleConfiguration {
|
|
|
241
190
|
idleRuntimeSessionTimeout?: number | undefined;
|
|
242
191
|
maxLifetime?: number | undefined;
|
|
243
192
|
}
|
|
244
|
-
export declare const NetworkMode: {
|
|
245
|
-
readonly PUBLIC: "PUBLIC";
|
|
246
|
-
readonly VPC: "VPC";
|
|
247
|
-
};
|
|
248
|
-
export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
|
|
249
193
|
export interface VpcConfig {
|
|
250
194
|
securityGroups: string[] | undefined;
|
|
251
195
|
subnets: string[] | undefined;
|
|
@@ -254,13 +198,6 @@ export interface NetworkConfiguration {
|
|
|
254
198
|
networkMode: NetworkMode | undefined;
|
|
255
199
|
networkModeConfig?: VpcConfig | undefined;
|
|
256
200
|
}
|
|
257
|
-
export declare const ServerProtocol: {
|
|
258
|
-
readonly A2A: "A2A";
|
|
259
|
-
readonly HTTP: "HTTP";
|
|
260
|
-
readonly MCP: "MCP";
|
|
261
|
-
};
|
|
262
|
-
export type ServerProtocol =
|
|
263
|
-
(typeof ServerProtocol)[keyof typeof ServerProtocol];
|
|
264
201
|
export interface ProtocolConfiguration {
|
|
265
202
|
serverProtocol: ServerProtocol | undefined;
|
|
266
203
|
}
|
|
@@ -295,16 +232,6 @@ export interface CreateAgentRuntimeRequest {
|
|
|
295
232
|
environmentVariables?: Record<string, string> | undefined;
|
|
296
233
|
tags?: Record<string, string> | undefined;
|
|
297
234
|
}
|
|
298
|
-
export declare const AgentRuntimeStatus: {
|
|
299
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
300
|
-
readonly CREATING: "CREATING";
|
|
301
|
-
readonly DELETING: "DELETING";
|
|
302
|
-
readonly READY: "READY";
|
|
303
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
304
|
-
readonly UPDATING: "UPDATING";
|
|
305
|
-
};
|
|
306
|
-
export type AgentRuntimeStatus =
|
|
307
|
-
(typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
|
|
308
235
|
export interface WorkloadIdentityDetails {
|
|
309
236
|
workloadIdentityArn: string | undefined;
|
|
310
237
|
}
|
|
@@ -408,30 +335,6 @@ export interface CreateApiKeyCredentialProviderResponse {
|
|
|
408
335
|
name: string | undefined;
|
|
409
336
|
credentialProviderArn: string | undefined;
|
|
410
337
|
}
|
|
411
|
-
export declare class DecryptionFailure extends __BaseException {
|
|
412
|
-
readonly name: "DecryptionFailure";
|
|
413
|
-
readonly $fault: "client";
|
|
414
|
-
constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
|
|
415
|
-
}
|
|
416
|
-
export declare class EncryptionFailure extends __BaseException {
|
|
417
|
-
readonly name: "EncryptionFailure";
|
|
418
|
-
readonly $fault: "client";
|
|
419
|
-
constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
|
|
420
|
-
}
|
|
421
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
422
|
-
readonly name: "ResourceLimitExceededException";
|
|
423
|
-
readonly $fault: "client";
|
|
424
|
-
constructor(
|
|
425
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
426
|
-
);
|
|
427
|
-
}
|
|
428
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
429
|
-
readonly name: "UnauthorizedException";
|
|
430
|
-
readonly $fault: "client";
|
|
431
|
-
constructor(
|
|
432
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
433
|
-
);
|
|
434
|
-
}
|
|
435
338
|
export interface DeleteApiKeyCredentialProviderRequest {
|
|
436
339
|
name: string | undefined;
|
|
437
340
|
}
|
|
@@ -474,12 +377,6 @@ export interface UpdateApiKeyCredentialProviderResponse {
|
|
|
474
377
|
export interface BrowserSigningConfigInput {
|
|
475
378
|
enabled: boolean | undefined;
|
|
476
379
|
}
|
|
477
|
-
export declare const BrowserNetworkMode: {
|
|
478
|
-
readonly PUBLIC: "PUBLIC";
|
|
479
|
-
readonly VPC: "VPC";
|
|
480
|
-
};
|
|
481
|
-
export type BrowserNetworkMode =
|
|
482
|
-
(typeof BrowserNetworkMode)[keyof typeof BrowserNetworkMode];
|
|
483
380
|
export interface BrowserNetworkConfiguration {
|
|
484
381
|
networkMode: BrowserNetworkMode | undefined;
|
|
485
382
|
vpcConfig?: VpcConfig | undefined;
|
|
@@ -498,15 +395,6 @@ export interface CreateBrowserRequest {
|
|
|
498
395
|
clientToken?: string | undefined;
|
|
499
396
|
tags?: Record<string, string> | undefined;
|
|
500
397
|
}
|
|
501
|
-
export declare const BrowserStatus: {
|
|
502
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
503
|
-
readonly CREATING: "CREATING";
|
|
504
|
-
readonly DELETED: "DELETED";
|
|
505
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
506
|
-
readonly DELETING: "DELETING";
|
|
507
|
-
readonly READY: "READY";
|
|
508
|
-
};
|
|
509
|
-
export type BrowserStatus = (typeof BrowserStatus)[keyof typeof BrowserStatus];
|
|
510
398
|
export interface CreateBrowserResponse {
|
|
511
399
|
browserId: string | undefined;
|
|
512
400
|
browserArn: string | undefined;
|
|
@@ -542,11 +430,6 @@ export interface GetBrowserResponse {
|
|
|
542
430
|
createdAt: Date | undefined;
|
|
543
431
|
lastUpdatedAt: Date | undefined;
|
|
544
432
|
}
|
|
545
|
-
export declare const ResourceType: {
|
|
546
|
-
readonly CUSTOM: "CUSTOM";
|
|
547
|
-
readonly SYSTEM: "SYSTEM";
|
|
548
|
-
};
|
|
549
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
550
433
|
export interface ListBrowsersRequest {
|
|
551
434
|
maxResults?: number | undefined;
|
|
552
435
|
nextToken?: string | undefined;
|
|
@@ -565,13 +448,6 @@ export interface ListBrowsersResponse {
|
|
|
565
448
|
browserSummaries: BrowserSummary[] | undefined;
|
|
566
449
|
nextToken?: string | undefined;
|
|
567
450
|
}
|
|
568
|
-
export declare const CodeInterpreterNetworkMode: {
|
|
569
|
-
readonly PUBLIC: "PUBLIC";
|
|
570
|
-
readonly SANDBOX: "SANDBOX";
|
|
571
|
-
readonly VPC: "VPC";
|
|
572
|
-
};
|
|
573
|
-
export type CodeInterpreterNetworkMode =
|
|
574
|
-
(typeof CodeInterpreterNetworkMode)[keyof typeof CodeInterpreterNetworkMode];
|
|
575
451
|
export interface CodeInterpreterNetworkConfiguration {
|
|
576
452
|
networkMode: CodeInterpreterNetworkMode | undefined;
|
|
577
453
|
vpcConfig?: VpcConfig | undefined;
|
|
@@ -584,16 +460,6 @@ export interface CreateCodeInterpreterRequest {
|
|
|
584
460
|
clientToken?: string | undefined;
|
|
585
461
|
tags?: Record<string, string> | undefined;
|
|
586
462
|
}
|
|
587
|
-
export declare const CodeInterpreterStatus: {
|
|
588
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
589
|
-
readonly CREATING: "CREATING";
|
|
590
|
-
readonly DELETED: "DELETED";
|
|
591
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
592
|
-
readonly DELETING: "DELETING";
|
|
593
|
-
readonly READY: "READY";
|
|
594
|
-
};
|
|
595
|
-
export type CodeInterpreterStatus =
|
|
596
|
-
(typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
|
|
597
463
|
export interface CreateCodeInterpreterResponse {
|
|
598
464
|
codeInterpreterId: string | undefined;
|
|
599
465
|
codeInterpreterArn: string | undefined;
|
|
@@ -642,21 +508,6 @@ export interface ListCodeInterpretersResponse {
|
|
|
642
508
|
codeInterpreterSummaries: CodeInterpreterSummary[] | undefined;
|
|
643
509
|
nextToken?: string | undefined;
|
|
644
510
|
}
|
|
645
|
-
export declare const AuthorizerType: {
|
|
646
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
647
|
-
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
648
|
-
};
|
|
649
|
-
export type AuthorizerType =
|
|
650
|
-
(typeof AuthorizerType)[keyof typeof AuthorizerType];
|
|
651
|
-
export declare const ExceptionLevel: {
|
|
652
|
-
readonly DEBUG: "DEBUG";
|
|
653
|
-
};
|
|
654
|
-
export type ExceptionLevel =
|
|
655
|
-
(typeof ExceptionLevel)[keyof typeof ExceptionLevel];
|
|
656
|
-
export declare const SearchType: {
|
|
657
|
-
readonly SEMANTIC: "SEMANTIC";
|
|
658
|
-
};
|
|
659
|
-
export type SearchType = (typeof SearchType)[keyof typeof SearchType];
|
|
660
511
|
export interface MCPGatewayConfiguration {
|
|
661
512
|
supportedVersions?: string[] | undefined;
|
|
662
513
|
instructions?: string | undefined;
|
|
@@ -679,11 +530,6 @@ export declare namespace GatewayProtocolConfiguration {
|
|
|
679
530
|
_: (name: string, value: any) => T;
|
|
680
531
|
}
|
|
681
532
|
}
|
|
682
|
-
export declare const GatewayProtocolType: {
|
|
683
|
-
readonly MCP: "MCP";
|
|
684
|
-
};
|
|
685
|
-
export type GatewayProtocolType =
|
|
686
|
-
(typeof GatewayProtocolType)[keyof typeof GatewayProtocolType];
|
|
687
533
|
export interface CreateGatewayRequest {
|
|
688
534
|
name: string | undefined;
|
|
689
535
|
description?: string | undefined;
|
|
@@ -697,15 +543,6 @@ export interface CreateGatewayRequest {
|
|
|
697
543
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
698
544
|
tags?: Record<string, string> | undefined;
|
|
699
545
|
}
|
|
700
|
-
export declare const GatewayStatus: {
|
|
701
|
-
readonly CREATING: "CREATING";
|
|
702
|
-
readonly DELETING: "DELETING";
|
|
703
|
-
readonly FAILED: "FAILED";
|
|
704
|
-
readonly READY: "READY";
|
|
705
|
-
readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
|
|
706
|
-
readonly UPDATING: "UPDATING";
|
|
707
|
-
};
|
|
708
|
-
export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
|
|
709
546
|
export interface CreateGatewayResponse {
|
|
710
547
|
gatewayArn: string | undefined;
|
|
711
548
|
gatewayId: string | undefined;
|
|
@@ -804,12 +641,6 @@ export interface UpdateGatewayResponse {
|
|
|
804
641
|
workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
|
|
805
642
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
806
643
|
}
|
|
807
|
-
export declare const ApiKeyCredentialLocation: {
|
|
808
|
-
readonly HEADER: "HEADER";
|
|
809
|
-
readonly QUERY_PARAMETER: "QUERY_PARAMETER";
|
|
810
|
-
};
|
|
811
|
-
export type ApiKeyCredentialLocation =
|
|
812
|
-
(typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
|
|
813
644
|
export interface GatewayApiKeyCredentialProvider {
|
|
814
645
|
providerArn: string | undefined;
|
|
815
646
|
credentialParameterName?: string | undefined;
|
|
@@ -847,26 +678,10 @@ export declare namespace CredentialProvider {
|
|
|
847
678
|
_: (name: string, value: any) => T;
|
|
848
679
|
}
|
|
849
680
|
}
|
|
850
|
-
export declare const CredentialProviderType: {
|
|
851
|
-
readonly API_KEY: "API_KEY";
|
|
852
|
-
readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
|
|
853
|
-
readonly OAUTH: "OAUTH";
|
|
854
|
-
};
|
|
855
|
-
export type CredentialProviderType =
|
|
856
|
-
(typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
857
681
|
export interface CredentialProviderConfiguration {
|
|
858
682
|
credentialProviderType: CredentialProviderType | undefined;
|
|
859
683
|
credentialProvider?: CredentialProvider | undefined;
|
|
860
684
|
}
|
|
861
|
-
export declare const SchemaType: {
|
|
862
|
-
readonly ARRAY: "array";
|
|
863
|
-
readonly BOOLEAN: "boolean";
|
|
864
|
-
readonly INTEGER: "integer";
|
|
865
|
-
readonly NUMBER: "number";
|
|
866
|
-
readonly OBJECT: "object";
|
|
867
|
-
readonly STRING: "string";
|
|
868
|
-
};
|
|
869
|
-
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
|
|
870
685
|
export interface S3Configuration {
|
|
871
686
|
uri?: string | undefined;
|
|
872
687
|
bucketOwnerAccountId?: string | undefined;
|
|
@@ -900,17 +715,6 @@ export declare namespace ApiSchemaConfiguration {
|
|
|
900
715
|
_: (name: string, value: any) => T;
|
|
901
716
|
}
|
|
902
717
|
}
|
|
903
|
-
export declare const TargetStatus: {
|
|
904
|
-
readonly CREATING: "CREATING";
|
|
905
|
-
readonly DELETING: "DELETING";
|
|
906
|
-
readonly FAILED: "FAILED";
|
|
907
|
-
readonly READY: "READY";
|
|
908
|
-
readonly SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL";
|
|
909
|
-
readonly SYNCHRONIZING: "SYNCHRONIZING";
|
|
910
|
-
readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
|
|
911
|
-
readonly UPDATING: "UPDATING";
|
|
912
|
-
};
|
|
913
|
-
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
914
718
|
export interface DeleteGatewayTargetRequest {
|
|
915
719
|
gatewayIdentifier: string | undefined;
|
|
916
720
|
targetId: string | undefined;
|
|
@@ -949,11 +753,6 @@ export interface SynchronizeGatewayTargetsRequest {
|
|
|
949
753
|
export interface GetTokenVaultRequest {
|
|
950
754
|
tokenVaultId?: string | undefined;
|
|
951
755
|
}
|
|
952
|
-
export declare const KeyType: {
|
|
953
|
-
readonly CustomerManagedKey: "CustomerManagedKey";
|
|
954
|
-
readonly ServiceManagedKey: "ServiceManagedKey";
|
|
955
|
-
};
|
|
956
|
-
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
957
756
|
export interface KmsConfiguration {
|
|
958
757
|
keyType: KeyType | undefined;
|
|
959
758
|
kmsKeyArn?: string | undefined;
|
|
@@ -1192,13 +991,6 @@ export interface CreateMemoryInput {
|
|
|
1192
991
|
memoryStrategies?: MemoryStrategyInput[] | undefined;
|
|
1193
992
|
tags?: Record<string, string> | undefined;
|
|
1194
993
|
}
|
|
1195
|
-
export declare const MemoryStatus: {
|
|
1196
|
-
readonly ACTIVE: "ACTIVE";
|
|
1197
|
-
readonly CREATING: "CREATING";
|
|
1198
|
-
readonly DELETING: "DELETING";
|
|
1199
|
-
readonly FAILED: "FAILED";
|
|
1200
|
-
};
|
|
1201
|
-
export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
|
|
1202
994
|
export interface SemanticConsolidationOverride {
|
|
1203
995
|
appendToPrompt: string | undefined;
|
|
1204
996
|
modelId: string | undefined;
|
|
@@ -1377,35 +1169,12 @@ export interface SelfManagedConfiguration {
|
|
|
1377
1169
|
invocationConfiguration: InvocationConfiguration | undefined;
|
|
1378
1170
|
historicalContextWindowSize: number | undefined;
|
|
1379
1171
|
}
|
|
1380
|
-
export declare const OverrideType: {
|
|
1381
|
-
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
1382
|
-
readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
|
|
1383
|
-
readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
|
|
1384
|
-
readonly USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE";
|
|
1385
|
-
};
|
|
1386
|
-
export type OverrideType = (typeof OverrideType)[keyof typeof OverrideType];
|
|
1387
1172
|
export interface StrategyConfiguration {
|
|
1388
1173
|
type?: OverrideType | undefined;
|
|
1389
1174
|
extraction?: ExtractionConfiguration | undefined;
|
|
1390
1175
|
consolidation?: ConsolidationConfiguration | undefined;
|
|
1391
1176
|
selfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
1392
1177
|
}
|
|
1393
|
-
export declare const MemoryStrategyStatus: {
|
|
1394
|
-
readonly ACTIVE: "ACTIVE";
|
|
1395
|
-
readonly CREATING: "CREATING";
|
|
1396
|
-
readonly DELETING: "DELETING";
|
|
1397
|
-
readonly FAILED: "FAILED";
|
|
1398
|
-
};
|
|
1399
|
-
export type MemoryStrategyStatus =
|
|
1400
|
-
(typeof MemoryStrategyStatus)[keyof typeof MemoryStrategyStatus];
|
|
1401
|
-
export declare const MemoryStrategyType: {
|
|
1402
|
-
readonly CUSTOM: "CUSTOM";
|
|
1403
|
-
readonly SEMANTIC: "SEMANTIC";
|
|
1404
|
-
readonly SUMMARIZATION: "SUMMARIZATION";
|
|
1405
|
-
readonly USER_PREFERENCE: "USER_PREFERENCE";
|
|
1406
|
-
};
|
|
1407
|
-
export type MemoryStrategyType =
|
|
1408
|
-
(typeof MemoryStrategyType)[keyof typeof MemoryStrategyType];
|
|
1409
1178
|
export interface MemoryStrategy {
|
|
1410
1179
|
strategyId: string | undefined;
|
|
1411
1180
|
name: string | undefined;
|
|
@@ -1434,18 +1203,6 @@ export interface Memory {
|
|
|
1434
1203
|
export interface CreateMemoryOutput {
|
|
1435
1204
|
memory?: Memory | undefined;
|
|
1436
1205
|
}
|
|
1437
|
-
export declare class ServiceException extends __BaseException {
|
|
1438
|
-
readonly name: "ServiceException";
|
|
1439
|
-
readonly $fault: "server";
|
|
1440
|
-
$retryable: {};
|
|
1441
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
1442
|
-
}
|
|
1443
|
-
export declare class ThrottledException extends __BaseException {
|
|
1444
|
-
readonly name: "ThrottledException";
|
|
1445
|
-
readonly $fault: "client";
|
|
1446
|
-
$retryable: {};
|
|
1447
|
-
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
1448
|
-
}
|
|
1449
1206
|
export interface DeleteMemoryInput {
|
|
1450
1207
|
clientToken?: string | undefined;
|
|
1451
1208
|
memoryId: string | undefined;
|
|
@@ -1625,35 +1382,6 @@ export interface UpdateMemoryInput {
|
|
|
1625
1382
|
export interface UpdateMemoryOutput {
|
|
1626
1383
|
memory?: Memory | undefined;
|
|
1627
1384
|
}
|
|
1628
|
-
export declare const CredentialProviderVendorType: {
|
|
1629
|
-
readonly AtlassianOauth2: "AtlassianOauth2";
|
|
1630
|
-
readonly Auth0Oauth2: "Auth0Oauth2";
|
|
1631
|
-
readonly CognitoOauth2: "CognitoOauth2";
|
|
1632
|
-
readonly CustomOauth2: "CustomOauth2";
|
|
1633
|
-
readonly CyberArkOauth2: "CyberArkOauth2";
|
|
1634
|
-
readonly DropboxOauth2: "DropboxOauth2";
|
|
1635
|
-
readonly FacebookOauth2: "FacebookOauth2";
|
|
1636
|
-
readonly FusionAuthOauth2: "FusionAuthOauth2";
|
|
1637
|
-
readonly GithubOauth2: "GithubOauth2";
|
|
1638
|
-
readonly GoogleOauth2: "GoogleOauth2";
|
|
1639
|
-
readonly HubspotOauth2: "HubspotOauth2";
|
|
1640
|
-
readonly LinkedinOauth2: "LinkedinOauth2";
|
|
1641
|
-
readonly MicrosoftOauth2: "MicrosoftOauth2";
|
|
1642
|
-
readonly NotionOauth2: "NotionOauth2";
|
|
1643
|
-
readonly OktaOauth2: "OktaOauth2";
|
|
1644
|
-
readonly OneLoginOauth2: "OneLoginOauth2";
|
|
1645
|
-
readonly PingOneOauth2: "PingOneOauth2";
|
|
1646
|
-
readonly RedditOauth2: "RedditOauth2";
|
|
1647
|
-
readonly SalesforceOauth2: "SalesforceOauth2";
|
|
1648
|
-
readonly SlackOauth2: "SlackOauth2";
|
|
1649
|
-
readonly SpotifyOauth2: "SpotifyOauth2";
|
|
1650
|
-
readonly TwitchOauth2: "TwitchOauth2";
|
|
1651
|
-
readonly XOauth2: "XOauth2";
|
|
1652
|
-
readonly YandexOauth2: "YandexOauth2";
|
|
1653
|
-
readonly ZoomOauth2: "ZoomOauth2";
|
|
1654
|
-
};
|
|
1655
|
-
export type CredentialProviderVendorType =
|
|
1656
|
-
(typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
|
|
1657
1385
|
export interface AtlassianOauth2ProviderConfigInput {
|
|
1658
1386
|
clientId: string | undefined;
|
|
1659
1387
|
clientSecret: string | undefined;
|
|
@@ -2136,16 +1864,6 @@ export interface UpdateOauth2CredentialProviderResponse {
|
|
|
2136
1864
|
createdTime: Date | undefined;
|
|
2137
1865
|
lastUpdatedTime: Date | undefined;
|
|
2138
1866
|
}
|
|
2139
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
2140
|
-
readonly name: "ConcurrentModificationException";
|
|
2141
|
-
readonly $fault: "client";
|
|
2142
|
-
constructor(
|
|
2143
|
-
opts: __ExceptionOptionType<
|
|
2144
|
-
ConcurrentModificationException,
|
|
2145
|
-
__BaseException
|
|
2146
|
-
>
|
|
2147
|
-
);
|
|
2148
|
-
}
|
|
2149
1867
|
export interface SetTokenVaultCMKRequest {
|
|
2150
1868
|
tokenVaultId?: string | undefined;
|
|
2151
1869
|
kmsConfiguration: KmsConfiguration | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|