@aws-sdk/client-bedrock-data-automation 3.706.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 (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/BedrockDataAutomation.js +33 -0
  4. package/dist-cjs/BedrockDataAutomationClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateBlueprintCommand.js +27 -0
  8. package/dist-cjs/commands/CreateBlueprintVersionCommand.js +27 -0
  9. package/dist-cjs/commands/CreateDataAutomationProjectCommand.js +27 -0
  10. package/dist-cjs/commands/DeleteBlueprintCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteDataAutomationProjectCommand.js +26 -0
  12. package/dist-cjs/commands/GetBlueprintCommand.js +27 -0
  13. package/dist-cjs/commands/GetDataAutomationProjectCommand.js +27 -0
  14. package/dist-cjs/commands/ListBlueprintsCommand.js +27 -0
  15. package/dist-cjs/commands/ListDataAutomationProjectsCommand.js +27 -0
  16. package/dist-cjs/commands/UpdateBlueprintCommand.js +27 -0
  17. package/dist-cjs/commands/UpdateDataAutomationProjectCommand.js +27 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +11 -0
  24. package/dist-cjs/models/BedrockDataAutomationServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +252 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListBlueprintsPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDataAutomationProjectsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +560 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +50 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/BedrockDataAutomation.js +29 -0
  38. package/dist-es/BedrockDataAutomationClient.js +46 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateBlueprintCommand.js +23 -0
  42. package/dist-es/commands/CreateBlueprintVersionCommand.js +23 -0
  43. package/dist-es/commands/CreateDataAutomationProjectCommand.js +23 -0
  44. package/dist-es/commands/DeleteBlueprintCommand.js +22 -0
  45. package/dist-es/commands/DeleteDataAutomationProjectCommand.js +22 -0
  46. package/dist-es/commands/GetBlueprintCommand.js +23 -0
  47. package/dist-es/commands/GetDataAutomationProjectCommand.js +23 -0
  48. package/dist-es/commands/ListBlueprintsCommand.js +23 -0
  49. package/dist-es/commands/ListDataAutomationProjectsCommand.js +23 -0
  50. package/dist-es/commands/UpdateBlueprintCommand.js +23 -0
  51. package/dist-es/commands/UpdateDataAutomationProjectCommand.js +23 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +14 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +6 -0
  58. package/dist-es/models/BedrockDataAutomationServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +227 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListBlueprintsPaginator.js +4 -0
  63. package/dist-es/pagination/ListDataAutomationProjectsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_restJson1.js +535 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +45 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/BedrockDataAutomation.d.ts +89 -0
  72. package/dist-types/BedrockDataAutomationClient.d.ts +180 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateBlueprintCommand.d.ts +112 -0
  76. package/dist-types/commands/CreateBlueprintVersionCommand.d.ts +103 -0
  77. package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +197 -0
  78. package/dist-types/commands/DeleteBlueprintCommand.d.ts +85 -0
  79. package/dist-types/commands/DeleteDataAutomationProjectCommand.d.ts +87 -0
  80. package/dist-types/commands/GetBlueprintCommand.d.ts +101 -0
  81. package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +196 -0
  82. package/dist-types/commands/ListBlueprintsCommand.d.ts +104 -0
  83. package/dist-types/commands/ListDataAutomationProjectsCommand.d.ts +102 -0
  84. package/dist-types/commands/UpdateBlueprintCommand.d.ts +104 -0
  85. package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +190 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +14 -0
  92. package/dist-types/models/BedrockDataAutomationServiceException.d.ts +14 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1453 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListBlueprintsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDataAutomationProjectsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  101. package/dist-types/runtimeConfig.d.ts +48 -0
  102. package/dist-types/runtimeConfig.native.d.ts +47 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/BedrockDataAutomation.d.ts +196 -0
  106. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +187 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +50 -0
  113. package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +50 -0
  117. package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +50 -0
  119. package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +9 -0
  126. package/dist-types/ts3.4/models/BedrockDataAutomationServiceException.d.ts +9 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +463 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListBlueprintsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDataAutomationProjectsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +103 -0
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import {
9
+ ListDataAutomationProjectsRequest,
10
+ ListDataAutomationProjectsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDataAutomationProjectsCommandInput
15
+ extends ListDataAutomationProjectsRequest {}
16
+ export interface ListDataAutomationProjectsCommandOutput
17
+ extends ListDataAutomationProjectsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDataAutomationProjectsCommand_base: {
20
+ new (
21
+ input: ListDataAutomationProjectsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDataAutomationProjectsCommandInput,
24
+ ListDataAutomationProjectsCommandOutput,
25
+ BedrockDataAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListDataAutomationProjectsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDataAutomationProjectsCommandInput,
33
+ ListDataAutomationProjectsCommandOutput,
34
+ BedrockDataAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDataAutomationProjectsCommand extends ListDataAutomationProjectsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDataAutomationProjectsRequest;
44
+ output: ListDataAutomationProjectsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDataAutomationProjectsCommandInput;
48
+ output: ListDataAutomationProjectsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import {
9
+ UpdateBlueprintRequest,
10
+ UpdateBlueprintResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateBlueprintCommandInput extends UpdateBlueprintRequest {}
15
+ export interface UpdateBlueprintCommandOutput
16
+ extends UpdateBlueprintResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateBlueprintCommand_base: {
19
+ new (
20
+ input: UpdateBlueprintCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateBlueprintCommandInput,
23
+ UpdateBlueprintCommandOutput,
24
+ BedrockDataAutomationClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateBlueprintCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateBlueprintCommandInput,
32
+ UpdateBlueprintCommandOutput,
33
+ BedrockDataAutomationClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateBlueprintCommand extends UpdateBlueprintCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateBlueprintRequest;
43
+ output: UpdateBlueprintResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateBlueprintCommandInput;
47
+ output: UpdateBlueprintCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockDataAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockDataAutomationClient";
8
+ import {
9
+ UpdateDataAutomationProjectRequest,
10
+ UpdateDataAutomationProjectResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDataAutomationProjectCommandInput
15
+ extends UpdateDataAutomationProjectRequest {}
16
+ export interface UpdateDataAutomationProjectCommandOutput
17
+ extends UpdateDataAutomationProjectResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateDataAutomationProjectCommand_base: {
20
+ new (
21
+ input: UpdateDataAutomationProjectCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateDataAutomationProjectCommandInput,
24
+ UpdateDataAutomationProjectCommandOutput,
25
+ BedrockDataAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateDataAutomationProjectCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateDataAutomationProjectCommandInput,
33
+ UpdateDataAutomationProjectCommandOutput,
34
+ BedrockDataAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateDataAutomationProjectCommand extends UpdateDataAutomationProjectCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateDataAutomationProjectRequest;
44
+ output: UpdateDataAutomationProjectResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateDataAutomationProjectCommandInput;
48
+ output: UpdateDataAutomationProjectCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,11 @@
1
+ export * from "./CreateBlueprintCommand";
2
+ export * from "./CreateBlueprintVersionCommand";
3
+ export * from "./CreateDataAutomationProjectCommand";
4
+ export * from "./DeleteBlueprintCommand";
5
+ export * from "./DeleteDataAutomationProjectCommand";
6
+ export * from "./GetBlueprintCommand";
7
+ export * from "./GetDataAutomationProjectCommand";
8
+ export * from "./ListBlueprintsCommand";
9
+ export * from "./ListDataAutomationProjectsCommand";
10
+ export * from "./UpdateBlueprintCommand";
11
+ export * from "./UpdateDataAutomationProjectCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string;
48
+ UseDualStack?: boolean;
49
+ UseFIPS?: boolean;
50
+ Endpoint?: string;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface BedrockDataAutomationExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,9 @@
1
+ export * from "./BedrockDataAutomationClient";
2
+ export * from "./BedrockDataAutomation";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ export { BedrockDataAutomationServiceException } from "./models/BedrockDataAutomationServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class BedrockDataAutomationServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";