@aws-sdk/client-bedrock-data-automation-runtime 3.1077.0 → 3.1079.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 (26) hide show
  1. package/dist-cjs/index.js +14 -63
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/GetDataAutomationStatusCommand.js +2 -14
  4. package/dist-es/commands/InvokeDataAutomationAsyncCommand.js +2 -14
  5. package/dist-es/commands/InvokeDataAutomationCommand.js +2 -14
  6. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  7. package/dist-es/commands/TagResourceCommand.js +2 -14
  8. package/dist-es/commands/UntagResourceCommand.js +2 -14
  9. package/dist-es/index.js +1 -0
  10. package/dist-types/commandBuilder.d.ts +18 -0
  11. package/dist-types/commands/GetDataAutomationStatusCommand.d.ts +3 -8
  12. package/dist-types/commands/InvokeDataAutomationAsyncCommand.d.ts +3 -8
  13. package/dist-types/commands/InvokeDataAutomationCommand.d.ts +3 -8
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  15. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  16. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  17. package/dist-types/index.d.ts +1 -0
  18. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  19. package/dist-types/ts3.4/commands/GetDataAutomationStatusCommand.d.ts +7 -16
  20. package/dist-types/ts3.4/commands/InvokeDataAutomationAsyncCommand.d.ts +7 -16
  21. package/dist-types/ts3.4/commands/InvokeDataAutomationCommand.d.ts +7 -16
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -667,76 +668,26 @@ class BedrockDataAutomationRuntimeClient extends Client {
667
668
  }
668
669
  }
669
670
 
670
- class GetDataAutomationStatusCommand extends Command
671
- .classBuilder()
672
- .ep(commonParams)
673
- .m(function (Command, cs, config, o) {
674
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
675
- })
676
- .s("AmazonBedrockKeystoneRuntimeService", "GetDataAutomationStatus", {})
677
- .n("BedrockDataAutomationRuntimeClient", "GetDataAutomationStatusCommand")
678
- .sc(GetDataAutomationStatus$)
679
- .build() {
671
+ const command = makeBuilder(commonParams, "AmazonBedrockKeystoneRuntimeService", "BedrockDataAutomationRuntimeClient", getEndpointPlugin);
672
+ const _ep0 = {};
673
+ const _mw0 = (Command, cs, config, o) => [];
674
+
675
+ class GetDataAutomationStatusCommand extends command(_ep0, _mw0, "GetDataAutomationStatus", GetDataAutomationStatus$) {
680
676
  }
681
677
 
682
- class InvokeDataAutomationAsyncCommand extends Command
683
- .classBuilder()
684
- .ep(commonParams)
685
- .m(function (Command, cs, config, o) {
686
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
687
- })
688
- .s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomationAsync", {})
689
- .n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationAsyncCommand")
690
- .sc(InvokeDataAutomationAsync$)
691
- .build() {
678
+ class InvokeDataAutomationAsyncCommand extends command(_ep0, _mw0, "InvokeDataAutomationAsync", InvokeDataAutomationAsync$) {
692
679
  }
693
680
 
694
- class InvokeDataAutomationCommand extends Command
695
- .classBuilder()
696
- .ep(commonParams)
697
- .m(function (Command, cs, config, o) {
698
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
699
- })
700
- .s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomation", {})
701
- .n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationCommand")
702
- .sc(InvokeDataAutomation$)
703
- .build() {
681
+ class InvokeDataAutomationCommand extends command(_ep0, _mw0, "InvokeDataAutomation", InvokeDataAutomation$) {
704
682
  }
705
683
 
706
- class ListTagsForResourceCommand extends Command
707
- .classBuilder()
708
- .ep(commonParams)
709
- .m(function (Command, cs, config, o) {
710
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
711
- })
712
- .s("AmazonBedrockKeystoneRuntimeService", "ListTagsForResource", {})
713
- .n("BedrockDataAutomationRuntimeClient", "ListTagsForResourceCommand")
714
- .sc(ListTagsForResource$)
715
- .build() {
684
+ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
716
685
  }
717
686
 
718
- class TagResourceCommand extends Command
719
- .classBuilder()
720
- .ep(commonParams)
721
- .m(function (Command, cs, config, o) {
722
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
723
- })
724
- .s("AmazonBedrockKeystoneRuntimeService", "TagResource", {})
725
- .n("BedrockDataAutomationRuntimeClient", "TagResourceCommand")
726
- .sc(TagResource$)
727
- .build() {
687
+ class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
728
688
  }
729
689
 
730
- class UntagResourceCommand extends Command
731
- .classBuilder()
732
- .ep(commonParams)
733
- .m(function (Command, cs, config, o) {
734
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
735
- })
736
- .s("AmazonBedrockKeystoneRuntimeService", "UntagResource", {})
737
- .n("BedrockDataAutomationRuntimeClient", "UntagResourceCommand")
738
- .sc(UntagResource$)
739
- .build() {
690
+ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
740
691
  }
741
692
 
742
693
  const commands = {
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AmazonBedrockKeystoneRuntimeService", "BedrockDataAutomationRuntimeClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDataAutomationStatus$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDataAutomationStatusCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "GetDataAutomationStatus", {})
13
- .n("BedrockDataAutomationRuntimeClient", "GetDataAutomationStatusCommand")
14
- .sc(GetDataAutomationStatus$)
15
- .build() {
3
+ export class GetDataAutomationStatusCommand extends command(_ep0, _mw0, "GetDataAutomationStatus", GetDataAutomationStatus$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { InvokeDataAutomationAsync$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class InvokeDataAutomationAsyncCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomationAsync", {})
13
- .n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationAsyncCommand")
14
- .sc(InvokeDataAutomationAsync$)
15
- .build() {
3
+ export class InvokeDataAutomationAsyncCommand extends command(_ep0, _mw0, "InvokeDataAutomationAsync", InvokeDataAutomationAsync$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { InvokeDataAutomation$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class InvokeDataAutomationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomation", {})
13
- .n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationCommand")
14
- .sc(InvokeDataAutomation$)
15
- .build() {
3
+ export class InvokeDataAutomationCommand extends command(_ep0, _mw0, "InvokeDataAutomation", InvokeDataAutomation$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTagsForResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "ListTagsForResource", {})
13
- .n("BedrockDataAutomationRuntimeClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource$)
15
- .build() {
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { TagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class TagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "TagResource", {})
13
- .n("BedrockDataAutomationRuntimeClient", "TagResourceCommand")
14
- .sc(TagResource$)
15
- .build() {
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonBedrockKeystoneRuntimeService", "UntagResource", {})
13
- .n("BedrockDataAutomationRuntimeClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./BedrockDataAutomationRuntimeClient";
2
2
  export * from "./BedrockDataAutomationRuntime";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./BedrockDataAutomationRuntimeClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { GetDataAutomationStatusRequest, GetDataAutomationStatusResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetDataAutomationStatusCommandInput extends GetDataAutomationSt
22
19
  export interface GetDataAutomationStatusCommandOutput extends GetDataAutomationStatusResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetDataAutomationStatusCommand_base: {
25
- new (input: GetDataAutomationStatusCommandInput): import("@smithy/core/client").CommandImpl<GetDataAutomationStatusCommandInput, GetDataAutomationStatusCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetDataAutomationStatusCommandInput): import("@smithy/core/client").CommandImpl<GetDataAutomationStatusCommandInput, GetDataAutomationStatusCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetDataAutomationStatusCommandInput): import("@smithy/core/client").CommandImpl<GetDataAutomationStatusCommandInput, GetDataAutomationStatusCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetDataAutomationStatusCommandInput): import("@smithy/core/client").CommandImpl<GetDataAutomationStatusCommandInput, GetDataAutomationStatusCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * API used to get data automation status.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { InvokeDataAutomationAsyncRequest, InvokeDataAutomationAsyncResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface InvokeDataAutomationAsyncCommandInput extends InvokeDataAutomat
22
19
  export interface InvokeDataAutomationAsyncCommandOutput extends InvokeDataAutomationAsyncResponse, __MetadataBearer {
23
20
  }
24
21
  declare const InvokeDataAutomationAsyncCommand_base: {
25
- new (input: InvokeDataAutomationAsyncCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationAsyncCommandInput, InvokeDataAutomationAsyncCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: InvokeDataAutomationAsyncCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationAsyncCommandInput, InvokeDataAutomationAsyncCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: InvokeDataAutomationAsyncCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationAsyncCommandInput, InvokeDataAutomationAsyncCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: InvokeDataAutomationAsyncCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationAsyncCommandInput, InvokeDataAutomationAsyncCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Async API: Invoke data automation.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { InvokeDataAutomationRequest, InvokeDataAutomationResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface InvokeDataAutomationCommandInput extends InvokeDataAutomationRe
22
19
  export interface InvokeDataAutomationCommandOutput extends InvokeDataAutomationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const InvokeDataAutomationCommand_base: {
25
- new (input: InvokeDataAutomationCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationCommandInput, InvokeDataAutomationCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: InvokeDataAutomationCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationCommandInput, InvokeDataAutomationCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: InvokeDataAutomationCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationCommandInput, InvokeDataAutomationCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: InvokeDataAutomationCommandInput): import("@smithy/core/client").CommandImpl<InvokeDataAutomationCommandInput, InvokeDataAutomationCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Sync API: Invoke data automation.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * List tags for an Amazon Bedrock Data Automation resource
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Tag an Amazon Bedrock Data Automation resource
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationRuntimeClient";
4
2
  import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").BedrockDataAutomationRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Untag an Amazon Bedrock Data Automation resource
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./models/enums";
14
15
  export * from "./models/errors";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ BedrockDataAutomationRuntimeClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./BedrockDataAutomationRuntimeClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ BedrockDataAutomationRuntimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ BedrockDataAutomationRuntimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import {
9
3
  GetDataAutomationStatusRequest,
10
4
  GetDataAutomationStatusResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetDataAutomationStatusCommandInput
15
8
  extends GetDataAutomationStatusRequest {}
16
9
  export interface GetDataAutomationStatusCommandOutput
@@ -22,22 +15,20 @@ declare const GetDataAutomationStatusCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetDataAutomationStatusCommandInput,
24
17
  GetDataAutomationStatusCommandOutput,
25
- BedrockDataAutomationRuntimeClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetDataAutomationStatusCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetDataAutomationStatusCommandInput,
33
26
  GetDataAutomationStatusCommandOutput,
34
- BedrockDataAutomationRuntimeClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetDataAutomationStatusCommand extends GetDataAutomationStatusCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import {
9
3
  InvokeDataAutomationAsyncRequest,
10
4
  InvokeDataAutomationAsyncResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface InvokeDataAutomationAsyncCommandInput
15
8
  extends InvokeDataAutomationAsyncRequest {}
16
9
  export interface InvokeDataAutomationAsyncCommandOutput
@@ -22,22 +15,20 @@ declare const InvokeDataAutomationAsyncCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  InvokeDataAutomationAsyncCommandInput,
24
17
  InvokeDataAutomationAsyncCommandOutput,
25
- BedrockDataAutomationRuntimeClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: InvokeDataAutomationAsyncCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  InvokeDataAutomationAsyncCommandInput,
33
26
  InvokeDataAutomationAsyncCommandOutput,
34
- BedrockDataAutomationRuntimeClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class InvokeDataAutomationAsyncCommand extends InvokeDataAutomationAsyncCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import {
9
3
  InvokeDataAutomationRequest,
10
4
  InvokeDataAutomationResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface InvokeDataAutomationCommandInput
15
8
  extends InvokeDataAutomationRequest {}
16
9
  export interface InvokeDataAutomationCommandOutput
@@ -22,22 +15,20 @@ declare const InvokeDataAutomationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  InvokeDataAutomationCommandInput,
24
17
  InvokeDataAutomationCommandOutput,
25
- BedrockDataAutomationRuntimeClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: InvokeDataAutomationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  InvokeDataAutomationCommandInput,
33
26
  InvokeDataAutomationCommandOutput,
34
- BedrockDataAutomationRuntimeClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class InvokeDataAutomationCommand extends InvokeDataAutomationCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import {
9
3
  ListTagsForResourceRequest,
10
4
  ListTagsForResourceResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- BedrockDataAutomationRuntimeClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- BedrockDataAutomationRuntimeClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
12
5
  export interface TagResourceCommandOutput
13
6
  extends TagResourceResponse,
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  TagResourceCommandInput,
20
13
  TagResourceCommandOutput,
21
- BedrockDataAutomationRuntimeClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: TagResourceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  TagResourceCommandInput,
29
22
  TagResourceCommandOutput,
30
- BedrockDataAutomationRuntimeClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class TagResourceCommand extends TagResourceCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BedrockDataAutomationRuntimeClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BedrockDataAutomationRuntimeClient";
8
2
  import {
9
3
  UntagResourceRequest,
10
4
  UntagResourceResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
8
  export interface UntagResourceCommandOutput
16
9
  extends UntagResourceResponse,
@@ -21,22 +14,20 @@ declare const UntagResourceCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  UntagResourceCommandInput,
23
16
  UntagResourceCommandOutput,
24
- BedrockDataAutomationRuntimeClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: UntagResourceCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  UntagResourceCommandInput,
32
25
  UntagResourceCommandOutput,
33
- BedrockDataAutomationRuntimeClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").BedrockDataAutomationRuntimeClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
42
33
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-data-automation-runtime",
3
3
  "description": "AWS SDK for JavaScript Bedrock Data Automation Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1079.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.27",
23
+ "@aws-sdk/credential-provider-node": "^3.972.62",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {