@aws-sdk/client-bedrock-agentcore 3.891.0 → 3.894.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 +2696 -10
- package/package.json +20 -20
- package/dist-cjs/BedrockAgentCore.js +0 -63
- package/dist-cjs/BedrockAgentCoreClient.js +0 -54
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +0 -43
- package/dist-cjs/commands/CreateEventCommand.js +0 -27
- package/dist-cjs/commands/DeleteEventCommand.js +0 -26
- package/dist-cjs/commands/DeleteMemoryRecordCommand.js +0 -26
- package/dist-cjs/commands/GetBrowserSessionCommand.js +0 -26
- package/dist-cjs/commands/GetCodeInterpreterSessionCommand.js +0 -26
- package/dist-cjs/commands/GetEventCommand.js +0 -27
- package/dist-cjs/commands/GetMemoryRecordCommand.js +0 -27
- package/dist-cjs/commands/GetResourceApiKeyCommand.js +0 -27
- package/dist-cjs/commands/GetResourceOauth2TokenCommand.js +0 -27
- package/dist-cjs/commands/GetWorkloadAccessTokenCommand.js +0 -27
- package/dist-cjs/commands/GetWorkloadAccessTokenForJWTCommand.js +0 -27
- package/dist-cjs/commands/GetWorkloadAccessTokenForUserIdCommand.js +0 -27
- package/dist-cjs/commands/InvokeAgentRuntimeCommand.js +0 -27
- package/dist-cjs/commands/InvokeCodeInterpreterCommand.js +0 -31
- package/dist-cjs/commands/ListActorsCommand.js +0 -26
- package/dist-cjs/commands/ListBrowserSessionsCommand.js +0 -26
- package/dist-cjs/commands/ListCodeInterpreterSessionsCommand.js +0 -26
- package/dist-cjs/commands/ListEventsCommand.js +0 -27
- package/dist-cjs/commands/ListMemoryRecordsCommand.js +0 -27
- package/dist-cjs/commands/ListSessionsCommand.js +0 -26
- package/dist-cjs/commands/RetrieveMemoryRecordsCommand.js +0 -27
- package/dist-cjs/commands/StartBrowserSessionCommand.js +0 -26
- package/dist-cjs/commands/StartCodeInterpreterSessionCommand.js +0 -26
- package/dist-cjs/commands/StopBrowserSessionCommand.js +0 -26
- package/dist-cjs/commands/StopCodeInterpreterSessionCommand.js +0 -26
- package/dist-cjs/commands/UpdateBrowserStreamCommand.js +0 -26
- package/dist-cjs/commands/index.js +0 -29
- package/dist-cjs/endpoint/EndpointParameters.js +0 -17
- package/dist-cjs/extensionConfiguration.js +0 -2
- package/dist-cjs/models/BedrockAgentCoreServiceException.js +0 -12
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/models/models_0.js +0 -468
- package/dist-cjs/pagination/Interfaces.js +0 -2
- package/dist-cjs/pagination/ListActorsPaginator.js +0 -7
- package/dist-cjs/pagination/ListEventsPaginator.js +0 -7
- package/dist-cjs/pagination/ListMemoryRecordsPaginator.js +0 -7
- package/dist-cjs/pagination/ListSessionsPaginator.js +0 -7
- package/dist-cjs/pagination/RetrieveMemoryRecordsPaginator.js +0 -7
- package/dist-cjs/pagination/index.js +0 -9
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1422
- package/dist-cjs/runtimeExtensions.js +0 -13
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolveRuntimeExtensions = void 0;
|
|
4
|
-
const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
|
|
5
|
-
const protocol_http_1 = require("@smithy/protocol-http");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
const httpAuthExtensionConfiguration_1 = require("./auth/httpAuthExtensionConfiguration");
|
|
8
|
-
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
9
|
-
const extensionConfiguration = Object.assign((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig), (0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig), (0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig), (0, httpAuthExtensionConfiguration_1.getHttpAuthExtensionConfiguration)(runtimeConfig));
|
|
10
|
-
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
11
|
-
return Object.assign(runtimeConfig, (0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration), (0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), (0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), (0, httpAuthExtensionConfiguration_1.resolveHttpAuthRuntimeConfig)(extensionConfiguration));
|
|
12
|
-
};
|
|
13
|
-
exports.resolveRuntimeExtensions = resolveRuntimeExtensions;
|