@aws-sdk/client-bedrock-agentcore-control 3.901.0 → 3.906.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/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +4684 -5034
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +6 -4
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +11 -7
- package/dist-types/commands/CreateGatewayCommand.d.ts +2 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +3 -0
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +15 -11
- package/dist-types/commands/GetGatewayCommand.d.ts +1 -1
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +12 -8
- package/dist-types/commands/UpdateGatewayCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +85 -47
- package/dist-types/ts3.4/models/models_0.d.ts +23 -13
- package/package.json +5 -5
|
@@ -193,6 +193,10 @@ export declare namespace AuthorizerConfiguration {
|
|
|
193
193
|
}
|
|
194
194
|
const visit: <T>(value: AuthorizerConfiguration, visitor: Visitor<T>) => T;
|
|
195
195
|
}
|
|
196
|
+
export interface LifecycleConfiguration {
|
|
197
|
+
idleRuntimeSessionTimeout?: number | undefined;
|
|
198
|
+
maxLifetime?: number | undefined;
|
|
199
|
+
}
|
|
196
200
|
export declare const NetworkMode: {
|
|
197
201
|
readonly PUBLIC: "PUBLIC";
|
|
198
202
|
readonly VPC: "VPC";
|
|
@@ -207,6 +211,7 @@ export interface NetworkConfiguration {
|
|
|
207
211
|
networkModeConfig?: VpcConfig | undefined;
|
|
208
212
|
}
|
|
209
213
|
export declare const ServerProtocol: {
|
|
214
|
+
readonly A2A: "A2A";
|
|
210
215
|
readonly HTTP: "HTTP";
|
|
211
216
|
readonly MCP: "MCP";
|
|
212
217
|
};
|
|
@@ -235,15 +240,16 @@ export declare namespace RequestHeaderConfiguration {
|
|
|
235
240
|
}
|
|
236
241
|
export interface CreateAgentRuntimeRequest {
|
|
237
242
|
agentRuntimeName: string | undefined;
|
|
238
|
-
description?: string | undefined;
|
|
239
243
|
agentRuntimeArtifact: AgentRuntimeArtifact | undefined;
|
|
240
244
|
roleArn: string | undefined;
|
|
241
245
|
networkConfiguration: NetworkConfiguration | undefined;
|
|
242
|
-
protocolConfiguration?: ProtocolConfiguration | undefined;
|
|
243
246
|
clientToken?: string | undefined;
|
|
244
|
-
|
|
247
|
+
description?: string | undefined;
|
|
245
248
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
246
249
|
requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
|
|
250
|
+
protocolConfiguration?: ProtocolConfiguration | undefined;
|
|
251
|
+
lifecycleConfiguration?: LifecycleConfiguration | undefined;
|
|
252
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
247
253
|
tags?: Record<string, string> | undefined;
|
|
248
254
|
}
|
|
249
255
|
export declare const AgentRuntimeStatus: {
|
|
@@ -279,21 +285,22 @@ export interface GetAgentRuntimeRequest {
|
|
|
279
285
|
}
|
|
280
286
|
export interface GetAgentRuntimeResponse {
|
|
281
287
|
agentRuntimeArn: string | undefined;
|
|
282
|
-
workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
|
|
283
288
|
agentRuntimeName: string | undefined;
|
|
284
|
-
description?: string | undefined;
|
|
285
289
|
agentRuntimeId: string | undefined;
|
|
286
290
|
agentRuntimeVersion: string | undefined;
|
|
287
291
|
createdAt: Date | undefined;
|
|
288
292
|
lastUpdatedAt: Date | undefined;
|
|
289
293
|
roleArn: string | undefined;
|
|
290
|
-
agentRuntimeArtifact?: AgentRuntimeArtifact | undefined;
|
|
291
294
|
networkConfiguration: NetworkConfiguration | undefined;
|
|
295
|
+
status: AgentRuntimeStatus | undefined;
|
|
296
|
+
lifecycleConfiguration: LifecycleConfiguration | undefined;
|
|
297
|
+
description?: string | undefined;
|
|
298
|
+
workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
|
|
299
|
+
agentRuntimeArtifact?: AgentRuntimeArtifact | undefined;
|
|
292
300
|
protocolConfiguration?: ProtocolConfiguration | undefined;
|
|
293
301
|
environmentVariables?: Record<string, string> | undefined;
|
|
294
302
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
295
303
|
requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
|
|
296
|
-
status: AgentRuntimeStatus | undefined;
|
|
297
304
|
}
|
|
298
305
|
export interface ListAgentRuntimesRequest {
|
|
299
306
|
maxResults?: number | undefined;
|
|
@@ -323,15 +330,16 @@ export interface ListAgentRuntimeVersionsResponse {
|
|
|
323
330
|
}
|
|
324
331
|
export interface UpdateAgentRuntimeRequest {
|
|
325
332
|
agentRuntimeId: string | undefined;
|
|
326
|
-
description?: string | undefined;
|
|
327
333
|
agentRuntimeArtifact: AgentRuntimeArtifact | undefined;
|
|
328
334
|
roleArn: string | undefined;
|
|
329
335
|
networkConfiguration: NetworkConfiguration | undefined;
|
|
330
|
-
|
|
331
|
-
clientToken?: string | undefined;
|
|
332
|
-
environmentVariables?: Record<string, string> | undefined;
|
|
336
|
+
description?: string | undefined;
|
|
333
337
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
334
338
|
requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
|
|
339
|
+
protocolConfiguration?: ProtocolConfiguration | undefined;
|
|
340
|
+
lifecycleConfiguration?: LifecycleConfiguration | undefined;
|
|
341
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
342
|
+
clientToken?: string | undefined;
|
|
335
343
|
}
|
|
336
344
|
export interface UpdateAgentRuntimeResponse {
|
|
337
345
|
agentRuntimeArn: string | undefined;
|
|
@@ -585,6 +593,7 @@ export interface ListCodeInterpretersResponse {
|
|
|
585
593
|
nextToken?: string | undefined;
|
|
586
594
|
}
|
|
587
595
|
export declare const AuthorizerType: {
|
|
596
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
588
597
|
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
589
598
|
};
|
|
590
599
|
export type AuthorizerType =
|
|
@@ -637,7 +646,7 @@ export interface CreateGatewayRequest {
|
|
|
637
646
|
protocolType: GatewayProtocolType | undefined;
|
|
638
647
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
639
648
|
authorizerType: AuthorizerType | undefined;
|
|
640
|
-
authorizerConfiguration
|
|
649
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
641
650
|
kmsKeyArn?: string | undefined;
|
|
642
651
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
643
652
|
tags?: Record<string, string> | undefined;
|
|
@@ -726,7 +735,7 @@ export interface UpdateGatewayRequest {
|
|
|
726
735
|
protocolType: GatewayProtocolType | undefined;
|
|
727
736
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
728
737
|
authorizerType: AuthorizerType | undefined;
|
|
729
|
-
authorizerConfiguration
|
|
738
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
730
739
|
kmsKeyArn?: string | undefined;
|
|
731
740
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
732
741
|
}
|
|
@@ -1062,6 +1071,7 @@ export interface CreateMemoryInput {
|
|
|
1062
1071
|
memoryExecutionRoleArn?: string | undefined;
|
|
1063
1072
|
eventExpiryDuration: number | undefined;
|
|
1064
1073
|
memoryStrategies?: MemoryStrategyInput[] | undefined;
|
|
1074
|
+
tags?: Record<string, string> | undefined;
|
|
1065
1075
|
}
|
|
1066
1076
|
export declare const MemoryStatus: {
|
|
1067
1077
|
readonly ACTIVE: "ACTIVE";
|
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.906.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,17 +20,17 @@
|
|
|
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.906.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.906.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.901.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.901.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.901.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.906.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.901.0",
|
|
30
30
|
"@aws-sdk/types": "3.901.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.901.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.901.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.906.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.3.0",
|
|
35
35
|
"@smithy/core": "^3.14.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.0",
|