@aws-sdk/client-bedrock-agentcore-control 3.899.0 → 3.900.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 CHANGED
@@ -1738,7 +1738,8 @@ var se_CreateGatewayCommand = /* @__PURE__ */ __name(async (input, context) => {
1738
1738
  name: [],
1739
1739
  protocolConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "protocolConfiguration"),
1740
1740
  protocolType: [],
1741
- roleArn: []
1741
+ roleArn: [],
1742
+ tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "tags")
1742
1743
  })
1743
1744
  );
1744
1745
  b.m("POST").h(headers).b(body);
@@ -114,6 +114,7 @@ export const se_CreateGatewayCommand = async (input, context) => {
114
114
  protocolConfiguration: (_) => _json(_),
115
115
  protocolType: [],
116
116
  roleArn: [],
117
+ tags: (_) => _json(_),
117
118
  }));
118
119
  b.m("POST").h(headers).b(body);
119
120
  return b.build();
@@ -65,6 +65,9 @@ declare const CreateGatewayCommand_base: {
65
65
  * },
66
66
  * kmsKeyArn: "STRING_VALUE",
67
67
  * exceptionLevel: "DEBUG",
68
+ * tags: { // TagsMap
69
+ * "<keys>": "STRING_VALUE",
70
+ * },
68
71
  * };
69
72
  * const command = new CreateGatewayCommand(input);
70
73
  * const response = await client.send(command);
@@ -27,7 +27,7 @@ declare const ListTagsForResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists the tags associated with the specified resource.</p>
30
+ * <p>Lists the tags associated with the specified resource.</p> <note> <p>This feature is currently available only for AgentCore Runtime, Browser, Code Interpreter tool, and Gateway.</p> </note>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const TagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are also deleted.</p>
30
+ * <p>Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are also deleted.</p> <note> <p>This feature is currently available only for AgentCore Runtime, Browser, Code Interpreter tool, and Gateway.</p> </note>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const UntagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Removes the specified tags from the specified resource.</p>
30
+ * <p>Removes the specified tags from the specified resource.</p> <note> <p>This feature is currently available only for AgentCore Runtime, Browser, Code Interpreter tool, and Gateway.</p> </note>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -2110,6 +2110,11 @@ export interface CreateGatewayRequest {
2110
2110
  * @public
2111
2111
  */
2112
2112
  exceptionLevel?: ExceptionLevel | undefined;
2113
+ /**
2114
+ * <p>A map of key-value pairs to associate with the gateway as metadata tags.</p>
2115
+ * @public
2116
+ */
2117
+ tags?: Record<string, string> | undefined;
2113
2118
  }
2114
2119
  /**
2115
2120
  * @public
@@ -640,6 +640,7 @@ export interface CreateGatewayRequest {
640
640
  authorizerConfiguration: AuthorizerConfiguration | undefined;
641
641
  kmsKeyArn?: string | undefined;
642
642
  exceptionLevel?: ExceptionLevel | undefined;
643
+ tags?: Record<string, string> | undefined;
643
644
  }
644
645
  export declare const GatewayStatus: {
645
646
  readonly CREATING: "CREATING";
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.899.0",
4
+ "version": "3.900.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",