@aws-sdk/client-bedrock-agent-runtime 3.490.0 → 3.495.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.
@@ -1,17 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BedrockAgentRuntime = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const BedrockAgentRuntimeClient_1 = require("./BedrockAgentRuntimeClient");
6
- const InvokeAgentCommand_1 = require("./commands/InvokeAgentCommand");
7
- const RetrieveAndGenerateCommand_1 = require("./commands/RetrieveAndGenerateCommand");
8
- const RetrieveCommand_1 = require("./commands/RetrieveCommand");
9
- const commands = {
10
- InvokeAgentCommand: InvokeAgentCommand_1.InvokeAgentCommand,
11
- RetrieveCommand: RetrieveCommand_1.RetrieveCommand,
12
- RetrieveAndGenerateCommand: RetrieveAndGenerateCommand_1.RetrieveAndGenerateCommand,
13
- };
14
- class BedrockAgentRuntime extends BedrockAgentRuntimeClient_1.BedrockAgentRuntimeClient {
15
- }
16
- exports.BedrockAgentRuntime = BedrockAgentRuntime;
17
- (0, smithy_client_1.createAggregatedClient)(commands, BedrockAgentRuntime);
1
+ module.exports = require("./index.js");
@@ -1,45 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BedrockAgentRuntimeClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const eventstream_serde_config_resolver_1 = require("@smithy/eventstream-serde-config-resolver");
11
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
12
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
13
- const middleware_retry_1 = require("@smithy/middleware-retry");
14
- const smithy_client_1 = require("@smithy/smithy-client");
15
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
16
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
17
- const runtimeConfig_1 = require("./runtimeConfig");
18
- const runtimeExtensions_1 = require("./runtimeExtensions");
19
- class BedrockAgentRuntimeClient extends smithy_client_1.Client {
20
- constructor(...[configuration]) {
21
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
22
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
23
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
24
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
25
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
26
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
27
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
28
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
29
- const _config_8 = (0, eventstream_serde_config_resolver_1.resolveEventStreamSerdeConfig)(_config_7);
30
- const _config_9 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_8, configuration?.extensions || []);
31
- super(_config_9);
32
- this.config = _config_9;
33
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
38
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
39
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
40
- }
41
- destroy() {
42
- super.destroy();
43
- }
44
- }
45
- exports.BedrockAgentRuntimeClient = BedrockAgentRuntimeClient;
1
+ module.exports = require("./index.js");
@@ -1,33 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.InvokeAgentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class InvokeAgentCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AmazonBedrockAgentRunTimeService", "InvokeAgent", {
23
- eventStream: {
24
- output: true,
25
- },
26
- })
27
- .n("BedrockAgentRuntimeClient", "InvokeAgentCommand")
28
- .f(models_0_1.InvokeAgentRequestFilterSensitiveLog, models_0_1.InvokeAgentResponseFilterSensitiveLog)
29
- .ser(Aws_restJson1_1.se_InvokeAgentCommand)
30
- .de(Aws_restJson1_1.de_InvokeAgentCommand)
31
- .build() {
32
- }
33
- exports.InvokeAgentCommand = InvokeAgentCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RetrieveAndGenerateCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class RetrieveAndGenerateCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AmazonBedrockAgentRunTimeService", "RetrieveAndGenerate", {})
23
- .n("BedrockAgentRuntimeClient", "RetrieveAndGenerateCommand")
24
- .f(models_0_1.RetrieveAndGenerateRequestFilterSensitiveLog, models_0_1.RetrieveAndGenerateResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_RetrieveAndGenerateCommand)
26
- .de(Aws_restJson1_1.de_RetrieveAndGenerateCommand)
27
- .build() {
28
- }
29
- exports.RetrieveAndGenerateCommand = RetrieveAndGenerateCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RetrieveCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class RetrieveCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AmazonBedrockAgentRunTimeService", "Retrieve", {})
23
- .n("BedrockAgentRuntimeClient", "RetrieveCommand")
24
- .f(models_0_1.RetrieveRequestFilterSensitiveLog, models_0_1.RetrieveResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_RetrieveCommand)
26
- .de(Aws_restJson1_1.de_RetrieveCommand)
27
- .build() {
28
- }
29
- exports.RetrieveCommand = RetrieveCommand;
1
+ module.exports = require("../index.js");
@@ -1,6 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./InvokeAgentCommand"), exports);
5
- tslib_1.__exportStar(require("./RetrieveAndGenerateCommand"), exports);
6
- tslib_1.__exportStar(require("./RetrieveCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "bedrock",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");