@aws-sdk/client-bedrock-agentcore 3.952.0 → 3.954.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.
Files changed (55) hide show
  1. package/dist-cjs/index.js +555 -386
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchCreateMemoryRecordsCommand.js +2 -2
  4. package/dist-es/commands/BatchDeleteMemoryRecordsCommand.js +2 -2
  5. package/dist-es/commands/BatchUpdateMemoryRecordsCommand.js +2 -2
  6. package/dist-es/commands/CompleteResourceTokenAuthCommand.js +2 -2
  7. package/dist-es/commands/CreateEventCommand.js +2 -2
  8. package/dist-es/commands/DeleteEventCommand.js +2 -2
  9. package/dist-es/commands/DeleteMemoryRecordCommand.js +2 -2
  10. package/dist-es/commands/EvaluateCommand.js +2 -2
  11. package/dist-es/commands/GetAgentCardCommand.js +2 -2
  12. package/dist-es/commands/GetBrowserSessionCommand.js +2 -2
  13. package/dist-es/commands/GetCodeInterpreterSessionCommand.js +2 -2
  14. package/dist-es/commands/GetEventCommand.js +2 -2
  15. package/dist-es/commands/GetMemoryRecordCommand.js +2 -2
  16. package/dist-es/commands/GetResourceApiKeyCommand.js +2 -2
  17. package/dist-es/commands/GetResourceOauth2TokenCommand.js +2 -2
  18. package/dist-es/commands/GetWorkloadAccessTokenCommand.js +2 -2
  19. package/dist-es/commands/GetWorkloadAccessTokenForJWTCommand.js +2 -2
  20. package/dist-es/commands/GetWorkloadAccessTokenForUserIdCommand.js +2 -2
  21. package/dist-es/commands/InvokeAgentRuntimeCommand.js +2 -2
  22. package/dist-es/commands/InvokeCodeInterpreterCommand.js +2 -2
  23. package/dist-es/commands/ListActorsCommand.js +2 -2
  24. package/dist-es/commands/ListBrowserSessionsCommand.js +2 -2
  25. package/dist-es/commands/ListCodeInterpreterSessionsCommand.js +2 -2
  26. package/dist-es/commands/ListEventsCommand.js +2 -2
  27. package/dist-es/commands/ListMemoryExtractionJobsCommand.js +2 -2
  28. package/dist-es/commands/ListMemoryRecordsCommand.js +2 -2
  29. package/dist-es/commands/ListSessionsCommand.js +2 -2
  30. package/dist-es/commands/RetrieveMemoryRecordsCommand.js +2 -2
  31. package/dist-es/commands/StartBrowserSessionCommand.js +2 -2
  32. package/dist-es/commands/StartCodeInterpreterSessionCommand.js +2 -2
  33. package/dist-es/commands/StartMemoryExtractionJobCommand.js +2 -2
  34. package/dist-es/commands/StopBrowserSessionCommand.js +2 -2
  35. package/dist-es/commands/StopCodeInterpreterSessionCommand.js +2 -2
  36. package/dist-es/commands/StopRuntimeSessionCommand.js +2 -2
  37. package/dist-es/commands/UpdateBrowserStreamCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +330 -330
  41. package/dist-types/BedrockAgentCoreClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +170 -209
  48. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +169 -211
  55. package/package.json +38 -38
@@ -27,7 +27,12 @@ const getRuntimeConfig = (config) => {
27
27
  },
28
28
  ],
29
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
30
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.bedrockagentcore" }),
30
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
31
+ protocolSettings: config?.protocolSettings ?? {
32
+ defaultNamespace: "com.amazonaws.bedrockagentcore",
33
+ version: "2024-02-28",
34
+ serviceTarget: "AmazonBedrockAgentCore",
35
+ },
31
36
  sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
32
37
  serviceId: config?.serviceId ?? "Bedrock AgentCore",
33
38
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchCreateMemoryRecords } from "../schemas/schemas_0";
4
+ import { BatchCreateMemoryRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchCreateMemoryRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchCreateMemoryRecordsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "BatchCreateMemoryRecords", {})
13
13
  .n("BedrockAgentCoreClient", "BatchCreateMemoryRecordsCommand")
14
- .sc(BatchCreateMemoryRecords)
14
+ .sc(BatchCreateMemoryRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchDeleteMemoryRecords } from "../schemas/schemas_0";
4
+ import { BatchDeleteMemoryRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchDeleteMemoryRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchDeleteMemoryRecordsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "BatchDeleteMemoryRecords", {})
13
13
  .n("BedrockAgentCoreClient", "BatchDeleteMemoryRecordsCommand")
14
- .sc(BatchDeleteMemoryRecords)
14
+ .sc(BatchDeleteMemoryRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchUpdateMemoryRecords } from "../schemas/schemas_0";
4
+ import { BatchUpdateMemoryRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchUpdateMemoryRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchUpdateMemoryRecordsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "BatchUpdateMemoryRecords", {})
13
13
  .n("BedrockAgentCoreClient", "BatchUpdateMemoryRecordsCommand")
14
- .sc(BatchUpdateMemoryRecords)
14
+ .sc(BatchUpdateMemoryRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CompleteResourceTokenAuth } from "../schemas/schemas_0";
4
+ import { CompleteResourceTokenAuth$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CompleteResourceTokenAuthCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CompleteResourceTokenAuthCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "CompleteResourceTokenAuth", {})
13
13
  .n("BedrockAgentCoreClient", "CompleteResourceTokenAuthCommand")
14
- .sc(CompleteResourceTokenAuth)
14
+ .sc(CompleteResourceTokenAuth$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateEvent } from "../schemas/schemas_0";
4
+ import { CreateEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateEventCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "CreateEvent", {})
13
13
  .n("BedrockAgentCoreClient", "CreateEventCommand")
14
- .sc(CreateEvent)
14
+ .sc(CreateEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteEvent } from "../schemas/schemas_0";
4
+ import { DeleteEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteEventCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "DeleteEvent", {})
13
13
  .n("BedrockAgentCoreClient", "DeleteEventCommand")
14
- .sc(DeleteEvent)
14
+ .sc(DeleteEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMemoryRecord } from "../schemas/schemas_0";
4
+ import { DeleteMemoryRecord$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMemoryRecordCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMemoryRecordCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "DeleteMemoryRecord", {})
13
13
  .n("BedrockAgentCoreClient", "DeleteMemoryRecordCommand")
14
- .sc(DeleteMemoryRecord)
14
+ .sc(DeleteMemoryRecord$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { Evaluate } from "../schemas/schemas_0";
4
+ import { Evaluate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EvaluateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class EvaluateCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "Evaluate", {})
13
13
  .n("BedrockAgentCoreClient", "EvaluateCommand")
14
- .sc(Evaluate)
14
+ .sc(Evaluate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAgentCard } from "../schemas/schemas_0";
4
+ import { GetAgentCard$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAgentCardCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAgentCardCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetAgentCard", {})
13
13
  .n("BedrockAgentCoreClient", "GetAgentCardCommand")
14
- .sc(GetAgentCard)
14
+ .sc(GetAgentCard$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetBrowserSession } from "../schemas/schemas_0";
4
+ import { GetBrowserSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetBrowserSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetBrowserSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetBrowserSession", {})
13
13
  .n("BedrockAgentCoreClient", "GetBrowserSessionCommand")
14
- .sc(GetBrowserSession)
14
+ .sc(GetBrowserSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetCodeInterpreterSession } from "../schemas/schemas_0";
4
+ import { GetCodeInterpreterSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCodeInterpreterSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCodeInterpreterSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetCodeInterpreterSession", {})
13
13
  .n("BedrockAgentCoreClient", "GetCodeInterpreterSessionCommand")
14
- .sc(GetCodeInterpreterSession)
14
+ .sc(GetCodeInterpreterSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetEvent } from "../schemas/schemas_0";
4
+ import { GetEvent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetEventCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetEventCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetEvent", {})
13
13
  .n("BedrockAgentCoreClient", "GetEventCommand")
14
- .sc(GetEvent)
14
+ .sc(GetEvent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMemoryRecord } from "../schemas/schemas_0";
4
+ import { GetMemoryRecord$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMemoryRecordCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMemoryRecordCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetMemoryRecord", {})
13
13
  .n("BedrockAgentCoreClient", "GetMemoryRecordCommand")
14
- .sc(GetMemoryRecord)
14
+ .sc(GetMemoryRecord$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetResourceApiKey } from "../schemas/schemas_0";
4
+ import { GetResourceApiKey$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetResourceApiKeyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetResourceApiKeyCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetResourceApiKey", {})
13
13
  .n("BedrockAgentCoreClient", "GetResourceApiKeyCommand")
14
- .sc(GetResourceApiKey)
14
+ .sc(GetResourceApiKey$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetResourceOauth2Token } from "../schemas/schemas_0";
4
+ import { GetResourceOauth2Token$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetResourceOauth2TokenCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetResourceOauth2TokenCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetResourceOauth2Token", {})
13
13
  .n("BedrockAgentCoreClient", "GetResourceOauth2TokenCommand")
14
- .sc(GetResourceOauth2Token)
14
+ .sc(GetResourceOauth2Token$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetWorkloadAccessToken } from "../schemas/schemas_0";
4
+ import { GetWorkloadAccessToken$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetWorkloadAccessTokenCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetWorkloadAccessTokenCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessToken", {})
13
13
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenCommand")
14
- .sc(GetWorkloadAccessToken)
14
+ .sc(GetWorkloadAccessToken$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetWorkloadAccessTokenForJWT } from "../schemas/schemas_0";
4
+ import { GetWorkloadAccessTokenForJWT$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetWorkloadAccessTokenForJWTCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetWorkloadAccessTokenForJWTCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForJWT", {})
13
13
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForJWTCommand")
14
- .sc(GetWorkloadAccessTokenForJWT)
14
+ .sc(GetWorkloadAccessTokenForJWT$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetWorkloadAccessTokenForUserId } from "../schemas/schemas_0";
4
+ import { GetWorkloadAccessTokenForUserId$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetWorkloadAccessTokenForUserIdCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetWorkloadAccessTokenForUserIdCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForUserId", {})
13
13
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForUserIdCommand")
14
- .sc(GetWorkloadAccessTokenForUserId)
14
+ .sc(GetWorkloadAccessTokenForUserId$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { InvokeAgentRuntime } from "../schemas/schemas_0";
4
+ import { InvokeAgentRuntime$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class InvokeAgentRuntimeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class InvokeAgentRuntimeCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "InvokeAgentRuntime", {})
13
13
  .n("BedrockAgentCoreClient", "InvokeAgentRuntimeCommand")
14
- .sc(InvokeAgentRuntime)
14
+ .sc(InvokeAgentRuntime$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { InvokeCodeInterpreter } from "../schemas/schemas_0";
4
+ import { InvokeCodeInterpreter$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class InvokeCodeInterpreterCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class InvokeCodeInterpreterCommand extends $Command
15
15
  },
16
16
  })
17
17
  .n("BedrockAgentCoreClient", "InvokeCodeInterpreterCommand")
18
- .sc(InvokeCodeInterpreter)
18
+ .sc(InvokeCodeInterpreter$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListActors } from "../schemas/schemas_0";
4
+ import { ListActors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListActorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListActorsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListActors", {})
13
13
  .n("BedrockAgentCoreClient", "ListActorsCommand")
14
- .sc(ListActors)
14
+ .sc(ListActors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListBrowserSessions } from "../schemas/schemas_0";
4
+ import { ListBrowserSessions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListBrowserSessionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListBrowserSessionsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListBrowserSessions", {})
13
13
  .n("BedrockAgentCoreClient", "ListBrowserSessionsCommand")
14
- .sc(ListBrowserSessions)
14
+ .sc(ListBrowserSessions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListCodeInterpreterSessions } from "../schemas/schemas_0";
4
+ import { ListCodeInterpreterSessions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCodeInterpreterSessionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCodeInterpreterSessionsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListCodeInterpreterSessions", {})
13
13
  .n("BedrockAgentCoreClient", "ListCodeInterpreterSessionsCommand")
14
- .sc(ListCodeInterpreterSessions)
14
+ .sc(ListCodeInterpreterSessions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListEvents } from "../schemas/schemas_0";
4
+ import { ListEvents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListEventsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListEventsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListEvents", {})
13
13
  .n("BedrockAgentCoreClient", "ListEventsCommand")
14
- .sc(ListEvents)
14
+ .sc(ListEvents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMemoryExtractionJobs } from "../schemas/schemas_0";
4
+ import { ListMemoryExtractionJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMemoryExtractionJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMemoryExtractionJobsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListMemoryExtractionJobs", {})
13
13
  .n("BedrockAgentCoreClient", "ListMemoryExtractionJobsCommand")
14
- .sc(ListMemoryExtractionJobs)
14
+ .sc(ListMemoryExtractionJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMemoryRecords } from "../schemas/schemas_0";
4
+ import { ListMemoryRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMemoryRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMemoryRecordsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListMemoryRecords", {})
13
13
  .n("BedrockAgentCoreClient", "ListMemoryRecordsCommand")
14
- .sc(ListMemoryRecords)
14
+ .sc(ListMemoryRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSessions } from "../schemas/schemas_0";
4
+ import { ListSessions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSessionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSessionsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "ListSessions", {})
13
13
  .n("BedrockAgentCoreClient", "ListSessionsCommand")
14
- .sc(ListSessions)
14
+ .sc(ListSessions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RetrieveMemoryRecords } from "../schemas/schemas_0";
4
+ import { RetrieveMemoryRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RetrieveMemoryRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RetrieveMemoryRecordsCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "RetrieveMemoryRecords", {})
13
13
  .n("BedrockAgentCoreClient", "RetrieveMemoryRecordsCommand")
14
- .sc(RetrieveMemoryRecords)
14
+ .sc(RetrieveMemoryRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartBrowserSession } from "../schemas/schemas_0";
4
+ import { StartBrowserSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartBrowserSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartBrowserSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StartBrowserSession", {})
13
13
  .n("BedrockAgentCoreClient", "StartBrowserSessionCommand")
14
- .sc(StartBrowserSession)
14
+ .sc(StartBrowserSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartCodeInterpreterSession } from "../schemas/schemas_0";
4
+ import { StartCodeInterpreterSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartCodeInterpreterSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartCodeInterpreterSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StartCodeInterpreterSession", {})
13
13
  .n("BedrockAgentCoreClient", "StartCodeInterpreterSessionCommand")
14
- .sc(StartCodeInterpreterSession)
14
+ .sc(StartCodeInterpreterSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartMemoryExtractionJob } from "../schemas/schemas_0";
4
+ import { StartMemoryExtractionJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartMemoryExtractionJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartMemoryExtractionJobCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StartMemoryExtractionJob", {})
13
13
  .n("BedrockAgentCoreClient", "StartMemoryExtractionJobCommand")
14
- .sc(StartMemoryExtractionJob)
14
+ .sc(StartMemoryExtractionJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopBrowserSession } from "../schemas/schemas_0";
4
+ import { StopBrowserSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopBrowserSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopBrowserSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StopBrowserSession", {})
13
13
  .n("BedrockAgentCoreClient", "StopBrowserSessionCommand")
14
- .sc(StopBrowserSession)
14
+ .sc(StopBrowserSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopCodeInterpreterSession } from "../schemas/schemas_0";
4
+ import { StopCodeInterpreterSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopCodeInterpreterSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopCodeInterpreterSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StopCodeInterpreterSession", {})
13
13
  .n("BedrockAgentCoreClient", "StopCodeInterpreterSessionCommand")
14
- .sc(StopCodeInterpreterSession)
14
+ .sc(StopCodeInterpreterSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopRuntimeSession } from "../schemas/schemas_0";
4
+ import { StopRuntimeSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopRuntimeSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopRuntimeSessionCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "StopRuntimeSession", {})
13
13
  .n("BedrockAgentCoreClient", "StopRuntimeSessionCommand")
14
- .sc(StopRuntimeSession)
14
+ .sc(StopRuntimeSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateBrowserStream } from "../schemas/schemas_0";
4
+ import { UpdateBrowserStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateBrowserStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateBrowserStreamCommand extends $Command
11
11
  })
12
12
  .s("AmazonBedrockAgentCore", "UpdateBrowserStream", {})
13
13
  .n("BedrockAgentCoreClient", "UpdateBrowserStreamCommand")
14
- .sc(UpdateBrowserStream)
14
+ .sc(UpdateBrowserStream$)
15
15
  .build() {
16
16
  }