@aws-sdk/client-bedrock-agentcore-control 3.904.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.
@@ -222,6 +222,7 @@ export const CodeInterpreterStatus = {
222
222
  READY: "READY",
223
223
  };
224
224
  export const AuthorizerType = {
225
+ AWS_IAM: "AWS_IAM",
225
226
  CUSTOM_JWT: "CUSTOM_JWT",
226
227
  };
227
228
  export const ExceptionLevel = {
@@ -51,7 +51,7 @@ declare const CreateGatewayCommand_base: {
51
51
  * searchType: "SEMANTIC",
52
52
  * },
53
53
  * },
54
- * authorizerType: "CUSTOM_JWT", // required
54
+ * authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
55
55
  * authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
56
56
  * customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
57
57
  * discoveryUrl: "STRING_VALUE", // required
@@ -94,7 +94,7 @@ declare const CreateGatewayCommand_base: {
94
94
  * // searchType: "SEMANTIC",
95
95
  * // },
96
96
  * // },
97
- * // authorizerType: "CUSTOM_JWT", // required
97
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
98
98
  * // authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
99
99
  * // customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
100
100
  * // discoveryUrl: "STRING_VALUE", // required
@@ -64,7 +64,7 @@ declare const GetGatewayCommand_base: {
64
64
  * // searchType: "SEMANTIC",
65
65
  * // },
66
66
  * // },
67
- * // authorizerType: "CUSTOM_JWT", // required
67
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
68
68
  * // authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
69
69
  * // customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
70
70
  * // discoveryUrl: "STRING_VALUE", // required
@@ -51,7 +51,7 @@ declare const ListGatewaysCommand_base: {
51
51
  * // description: "STRING_VALUE",
52
52
  * // createdAt: new Date("TIMESTAMP"), // required
53
53
  * // updatedAt: new Date("TIMESTAMP"), // required
54
- * // authorizerType: "CUSTOM_JWT", // required
54
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
55
55
  * // protocolType: "MCP", // required
56
56
  * // },
57
57
  * // ],
@@ -51,7 +51,7 @@ declare const UpdateGatewayCommand_base: {
51
51
  * searchType: "SEMANTIC",
52
52
  * },
53
53
  * },
54
- * authorizerType: "CUSTOM_JWT", // required
54
+ * authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
55
55
  * authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
56
56
  * customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
57
57
  * discoveryUrl: "STRING_VALUE", // required
@@ -91,7 +91,7 @@ declare const UpdateGatewayCommand_base: {
91
91
  * // searchType: "SEMANTIC",
92
92
  * // },
93
93
  * // },
94
- * // authorizerType: "CUSTOM_JWT", // required
94
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
95
95
  * // authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
96
96
  * // customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
97
97
  * // discoveryUrl: "STRING_VALUE", // required
@@ -1998,6 +1998,7 @@ export interface ListCodeInterpretersResponse {
1998
1998
  * @enum
1999
1999
  */
2000
2000
  export declare const AuthorizerType: {
2001
+ readonly AWS_IAM: "AWS_IAM";
2001
2002
  readonly CUSTOM_JWT: "CUSTOM_JWT";
2002
2003
  };
2003
2004
  /**
@@ -2131,7 +2132,7 @@ export interface CreateGatewayRequest {
2131
2132
  * <p>The authorizer configuration for the gateway.</p>
2132
2133
  * @public
2133
2134
  */
2134
- authorizerConfiguration: AuthorizerConfiguration | undefined;
2135
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
2135
2136
  /**
2136
2137
  * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt data associated with the gateway.</p>
2137
2138
  * @public
@@ -2503,7 +2504,7 @@ export interface UpdateGatewayRequest {
2503
2504
  * <p>The updated authorizer configuration for the gateway.</p>
2504
2505
  * @public
2505
2506
  */
2506
- authorizerConfiguration: AuthorizerConfiguration | undefined;
2507
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
2507
2508
  /**
2508
2509
  * <p>The updated ARN of the KMS key used to encrypt the gateway.</p>
2509
2510
  * @public
@@ -593,6 +593,7 @@ export interface ListCodeInterpretersResponse {
593
593
  nextToken?: string | undefined;
594
594
  }
595
595
  export declare const AuthorizerType: {
596
+ readonly AWS_IAM: "AWS_IAM";
596
597
  readonly CUSTOM_JWT: "CUSTOM_JWT";
597
598
  };
598
599
  export type AuthorizerType =
@@ -645,7 +646,7 @@ export interface CreateGatewayRequest {
645
646
  protocolType: GatewayProtocolType | undefined;
646
647
  protocolConfiguration?: GatewayProtocolConfiguration | undefined;
647
648
  authorizerType: AuthorizerType | undefined;
648
- authorizerConfiguration: AuthorizerConfiguration | undefined;
649
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
649
650
  kmsKeyArn?: string | undefined;
650
651
  exceptionLevel?: ExceptionLevel | undefined;
651
652
  tags?: Record<string, string> | undefined;
@@ -734,7 +735,7 @@ export interface UpdateGatewayRequest {
734
735
  protocolType: GatewayProtocolType | undefined;
735
736
  protocolConfiguration?: GatewayProtocolConfiguration | undefined;
736
737
  authorizerType: AuthorizerType | undefined;
737
- authorizerConfiguration: AuthorizerConfiguration | undefined;
738
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
738
739
  kmsKeyArn?: string | undefined;
739
740
  exceptionLevel?: ExceptionLevel | undefined;
740
741
  }
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.904.0",
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.901.0",
24
- "@aws-sdk/credential-provider-node": "3.901.0",
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.901.0",
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.901.0",
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",