@aws-sdk/client-bedrock-data-automation 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/BedrockDataAutomation.d.ts +87 -114
- package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CopyBlueprintStageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDataAutomationLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDataAutomationLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetBlueprintOptimizationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryEntityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryIngestionJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/InvokeBlueprintOptimizationAsyncCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/InvokeDataAutomationLibraryIngestionJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDataAutomationLibrariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListDataAutomationLibraryEntitiesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDataAutomationLibraryIngestionJobsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDataAutomationLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +39 -39
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./BedrockDataAutomationClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
BedrockDataAutomationClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CopyBlueprintStageRequest,
|
|
4
|
-
CopyBlueprintStageResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CopyBlueprintStageRequest, CopyBlueprintStageResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CopyBlueprintStageCommandInput
|
|
8
|
-
extends CopyBlueprintStageRequest {}
|
|
4
|
+
export interface CopyBlueprintStageCommandInput extends CopyBlueprintStageRequest {}
|
|
9
5
|
export interface CopyBlueprintStageCommandOutput
|
|
10
|
-
extends CopyBlueprintStageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CopyBlueprintStageResponse, __MetadataBearer {}
|
|
12
7
|
declare const CopyBlueprintStageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CopyBlueprintStageCommandInput
|
|
9
|
+
input: CopyBlueprintStageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CopyBlueprintStageCommandInput,
|
|
17
12
|
CopyBlueprintStageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CopyBlueprintStageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CopyBlueprintStageCommandInput
|
|
18
|
+
input: CopyBlueprintStageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CopyBlueprintStageCommandInput,
|
|
26
21
|
CopyBlueprintStageCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBlueprintRequest,
|
|
4
|
-
CreateBlueprintResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBlueprintRequest, CreateBlueprintResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateBlueprintCommandInput extends CreateBlueprintRequest {}
|
|
8
|
-
export interface CreateBlueprintCommandOutput
|
|
9
|
-
extends CreateBlueprintResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateBlueprintCommandOutput extends CreateBlueprintResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateBlueprintCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateBlueprintCommandInput
|
|
8
|
+
input: CreateBlueprintCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateBlueprintCommandInput,
|
|
16
11
|
CreateBlueprintCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateBlueprintCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateBlueprintCommandInput
|
|
17
|
+
input: CreateBlueprintCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateBlueprintCommandInput,
|
|
25
20
|
CreateBlueprintCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBlueprintVersionRequest,
|
|
4
|
-
CreateBlueprintVersionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBlueprintVersionRequest, CreateBlueprintVersionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateBlueprintVersionCommandInput
|
|
8
|
-
extends CreateBlueprintVersionRequest {}
|
|
4
|
+
export interface CreateBlueprintVersionCommandInput extends CreateBlueprintVersionRequest {}
|
|
9
5
|
export interface CreateBlueprintVersionCommandOutput
|
|
10
|
-
extends CreateBlueprintVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateBlueprintVersionResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateBlueprintVersionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateBlueprintVersionCommandInput
|
|
9
|
+
input: CreateBlueprintVersionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateBlueprintVersionCommandInput,
|
|
17
12
|
CreateBlueprintVersionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateBlueprintVersionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateBlueprintVersionCommandInput
|
|
18
|
+
input: CreateBlueprintVersionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateBlueprintVersionCommandInput,
|
|
26
21
|
CreateBlueprintVersionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateDataAutomationLibraryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateDataAutomationLibraryCommandInput
|
|
8
|
-
extends CreateDataAutomationLibraryRequest {}
|
|
7
|
+
export interface CreateDataAutomationLibraryCommandInput extends CreateDataAutomationLibraryRequest {}
|
|
9
8
|
export interface CreateDataAutomationLibraryCommandOutput
|
|
10
|
-
extends CreateDataAutomationLibraryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateDataAutomationLibraryResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateDataAutomationLibraryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateDataAutomationLibraryCommandInput
|
|
12
|
+
input: CreateDataAutomationLibraryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateDataAutomationLibraryCommandInput,
|
|
17
15
|
CreateDataAutomationLibraryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateDataAutomationLibraryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateDataAutomationLibraryCommandInput
|
|
21
|
+
input: CreateDataAutomationLibraryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateDataAutomationLibraryCommandInput,
|
|
26
24
|
CreateDataAutomationLibraryCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateDataAutomationProjectResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateDataAutomationProjectCommandInput
|
|
8
|
-
extends CreateDataAutomationProjectRequest {}
|
|
7
|
+
export interface CreateDataAutomationProjectCommandInput extends CreateDataAutomationProjectRequest {}
|
|
9
8
|
export interface CreateDataAutomationProjectCommandOutput
|
|
10
|
-
extends CreateDataAutomationProjectResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateDataAutomationProjectResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateDataAutomationProjectCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateDataAutomationProjectCommandInput
|
|
12
|
+
input: CreateDataAutomationProjectCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateDataAutomationProjectCommandInput,
|
|
17
15
|
CreateDataAutomationProjectCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateDataAutomationProjectCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateDataAutomationProjectCommandInput
|
|
21
|
+
input: CreateDataAutomationProjectCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateDataAutomationProjectCommandInput,
|
|
26
24
|
CreateDataAutomationProjectCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteBlueprintRequest,
|
|
4
|
-
DeleteBlueprintResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteBlueprintCommandInput extends DeleteBlueprintRequest {}
|
|
8
|
-
export interface DeleteBlueprintCommandOutput
|
|
9
|
-
extends DeleteBlueprintResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteBlueprintCommandOutput extends DeleteBlueprintResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteBlueprintCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteBlueprintCommandInput
|
|
8
|
+
input: DeleteBlueprintCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteBlueprintCommandInput,
|
|
16
11
|
DeleteBlueprintCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteBlueprintCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteBlueprintCommandInput
|
|
17
|
+
input: DeleteBlueprintCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteBlueprintCommandInput,
|
|
25
20
|
DeleteBlueprintCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteDataAutomationLibraryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteDataAutomationLibraryCommandInput
|
|
8
|
-
extends DeleteDataAutomationLibraryRequest {}
|
|
7
|
+
export interface DeleteDataAutomationLibraryCommandInput extends DeleteDataAutomationLibraryRequest {}
|
|
9
8
|
export interface DeleteDataAutomationLibraryCommandOutput
|
|
10
|
-
extends DeleteDataAutomationLibraryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteDataAutomationLibraryResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteDataAutomationLibraryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteDataAutomationLibraryCommandInput
|
|
12
|
+
input: DeleteDataAutomationLibraryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteDataAutomationLibraryCommandInput,
|
|
17
15
|
DeleteDataAutomationLibraryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteDataAutomationLibraryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteDataAutomationLibraryCommandInput
|
|
21
|
+
input: DeleteDataAutomationLibraryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteDataAutomationLibraryCommandInput,
|
|
26
24
|
DeleteDataAutomationLibraryCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteDataAutomationProjectResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteDataAutomationProjectCommandInput
|
|
8
|
-
extends DeleteDataAutomationProjectRequest {}
|
|
7
|
+
export interface DeleteDataAutomationProjectCommandInput extends DeleteDataAutomationProjectRequest {}
|
|
9
8
|
export interface DeleteDataAutomationProjectCommandOutput
|
|
10
|
-
extends DeleteDataAutomationProjectResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteDataAutomationProjectResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteDataAutomationProjectCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteDataAutomationProjectCommandInput
|
|
12
|
+
input: DeleteDataAutomationProjectCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteDataAutomationProjectCommandInput,
|
|
17
15
|
DeleteDataAutomationProjectCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteDataAutomationProjectCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteDataAutomationProjectCommandInput
|
|
21
|
+
input: DeleteDataAutomationProjectCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteDataAutomationProjectCommandInput,
|
|
26
24
|
DeleteDataAutomationProjectCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetBlueprintCommandInput extends GetBlueprintRequest {}
|
|
5
|
-
export interface GetBlueprintCommandOutput
|
|
6
|
-
extends GetBlueprintResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetBlueprintCommandOutput extends GetBlueprintResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetBlueprintCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetBlueprintCommandInput
|
|
8
|
+
input: GetBlueprintCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetBlueprintCommandInput,
|
|
13
11
|
GetBlueprintCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetBlueprintCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetBlueprintCommandInput
|
|
17
|
+
input: GetBlueprintCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetBlueprintCommandInput,
|
|
22
20
|
GetBlueprintCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetBlueprintOptimizationStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetBlueprintOptimizationStatusCommandInput
|
|
8
|
-
extends GetBlueprintOptimizationStatusRequest {}
|
|
7
|
+
export interface GetBlueprintOptimizationStatusCommandInput extends GetBlueprintOptimizationStatusRequest {}
|
|
9
8
|
export interface GetBlueprintOptimizationStatusCommandOutput
|
|
10
|
-
extends GetBlueprintOptimizationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetBlueprintOptimizationStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetBlueprintOptimizationStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetBlueprintOptimizationStatusCommandInput
|
|
12
|
+
input: GetBlueprintOptimizationStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetBlueprintOptimizationStatusCommandInput,
|
|
17
15
|
GetBlueprintOptimizationStatusCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetBlueprintOptimizationStatusCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetBlueprintOptimizationStatusCommandInput
|
|
21
|
+
input: GetBlueprintOptimizationStatusCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetBlueprintOptimizationStatusCommandInput,
|
|
26
24
|
GetBlueprintOptimizationStatusCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDataAutomationLibraryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataAutomationLibraryCommandInput
|
|
8
|
-
extends GetDataAutomationLibraryRequest {}
|
|
7
|
+
export interface GetDataAutomationLibraryCommandInput extends GetDataAutomationLibraryRequest {}
|
|
9
8
|
export interface GetDataAutomationLibraryCommandOutput
|
|
10
|
-
extends GetDataAutomationLibraryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDataAutomationLibraryResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetDataAutomationLibraryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDataAutomationLibraryCommandInput
|
|
12
|
+
input: GetDataAutomationLibraryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDataAutomationLibraryCommandInput,
|
|
17
15
|
GetDataAutomationLibraryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetDataAutomationLibraryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetDataAutomationLibraryCommandInput
|
|
21
|
+
input: GetDataAutomationLibraryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetDataAutomationLibraryCommandInput,
|
|
26
24
|
GetDataAutomationLibraryCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDataAutomationLibraryEntityResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataAutomationLibraryEntityCommandInput
|
|
8
|
-
extends GetDataAutomationLibraryEntityRequest {}
|
|
7
|
+
export interface GetDataAutomationLibraryEntityCommandInput extends GetDataAutomationLibraryEntityRequest {}
|
|
9
8
|
export interface GetDataAutomationLibraryEntityCommandOutput
|
|
10
|
-
extends GetDataAutomationLibraryEntityResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDataAutomationLibraryEntityResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetDataAutomationLibraryEntityCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDataAutomationLibraryEntityCommandInput
|
|
12
|
+
input: GetDataAutomationLibraryEntityCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDataAutomationLibraryEntityCommandInput,
|
|
17
15
|
GetDataAutomationLibraryEntityCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetDataAutomationLibraryEntityCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetDataAutomationLibraryEntityCommandInput
|
|
21
|
+
input: GetDataAutomationLibraryEntityCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetDataAutomationLibraryEntityCommandInput,
|
|
26
24
|
GetDataAutomationLibraryEntityCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDataAutomationLibraryIngestionJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataAutomationLibraryIngestionJobCommandInput
|
|
8
|
-
extends GetDataAutomationLibraryIngestionJobRequest {}
|
|
7
|
+
export interface GetDataAutomationLibraryIngestionJobCommandInput extends GetDataAutomationLibraryIngestionJobRequest {}
|
|
9
8
|
export interface GetDataAutomationLibraryIngestionJobCommandOutput
|
|
10
|
-
extends GetDataAutomationLibraryIngestionJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDataAutomationLibraryIngestionJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetDataAutomationLibraryIngestionJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDataAutomationLibraryIngestionJobCommandInput
|
|
12
|
+
input: GetDataAutomationLibraryIngestionJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
17
15
|
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetDataAutomationLibraryIngestionJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetDataAutomationLibraryIngestionJobCommandInput
|
|
21
|
+
input: GetDataAutomationLibraryIngestionJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
26
24
|
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDataAutomationProjectResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataAutomationProjectCommandInput
|
|
8
|
-
extends GetDataAutomationProjectRequest {}
|
|
7
|
+
export interface GetDataAutomationProjectCommandInput extends GetDataAutomationProjectRequest {}
|
|
9
8
|
export interface GetDataAutomationProjectCommandOutput
|
|
10
|
-
extends GetDataAutomationProjectResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDataAutomationProjectResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetDataAutomationProjectCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDataAutomationProjectCommandInput
|
|
12
|
+
input: GetDataAutomationProjectCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDataAutomationProjectCommandInput,
|
|
17
15
|
GetDataAutomationProjectCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetDataAutomationProjectCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetDataAutomationProjectCommandInput
|
|
21
|
+
input: GetDataAutomationProjectCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetDataAutomationProjectCommandInput,
|
|
26
24
|
GetDataAutomationProjectCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
InvokeBlueprintOptimizationAsyncResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface InvokeBlueprintOptimizationAsyncCommandInput
|
|
8
|
-
extends InvokeBlueprintOptimizationAsyncRequest {}
|
|
7
|
+
export interface InvokeBlueprintOptimizationAsyncCommandInput extends InvokeBlueprintOptimizationAsyncRequest {}
|
|
9
8
|
export interface InvokeBlueprintOptimizationAsyncCommandOutput
|
|
10
|
-
extends InvokeBlueprintOptimizationAsyncResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends InvokeBlueprintOptimizationAsyncResponse, __MetadataBearer {}
|
|
12
10
|
declare const InvokeBlueprintOptimizationAsyncCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: InvokeBlueprintOptimizationAsyncCommandInput
|
|
12
|
+
input: InvokeBlueprintOptimizationAsyncCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
InvokeBlueprintOptimizationAsyncCommandInput,
|
|
17
15
|
InvokeBlueprintOptimizationAsyncCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const InvokeBlueprintOptimizationAsyncCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: InvokeBlueprintOptimizationAsyncCommandInput
|
|
21
|
+
input: InvokeBlueprintOptimizationAsyncCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
InvokeBlueprintOptimizationAsyncCommandInput,
|
|
26
24
|
InvokeBlueprintOptimizationAsyncCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
InvokeDataAutomationLibraryIngestionJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
8
|
-
extends InvokeDataAutomationLibraryIngestionJobRequest {}
|
|
7
|
+
export interface InvokeDataAutomationLibraryIngestionJobCommandInput extends InvokeDataAutomationLibraryIngestionJobRequest {}
|
|
9
8
|
export interface InvokeDataAutomationLibraryIngestionJobCommandOutput
|
|
10
|
-
extends InvokeDataAutomationLibraryIngestionJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends InvokeDataAutomationLibraryIngestionJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const InvokeDataAutomationLibraryIngestionJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
12
|
+
input: InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
17
15
|
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const InvokeDataAutomationLibraryIngestionJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
21
|
+
input: InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
26
24
|
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListBlueprintsRequest,
|
|
4
|
-
ListBlueprintsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListBlueprintsCommandInput extends ListBlueprintsRequest {}
|
|
8
|
-
export interface ListBlueprintsCommandOutput
|
|
9
|
-
extends ListBlueprintsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListBlueprintsCommandOutput extends ListBlueprintsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListBlueprintsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListBlueprintsCommandInput
|
|
8
|
+
input: ListBlueprintsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListBlueprintsCommandInput,
|
|
16
11
|
ListBlueprintsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDataAutomationLibrariesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataAutomationLibrariesCommandInput
|
|
8
|
-
extends ListDataAutomationLibrariesRequest {}
|
|
7
|
+
export interface ListDataAutomationLibrariesCommandInput extends ListDataAutomationLibrariesRequest {}
|
|
9
8
|
export interface ListDataAutomationLibrariesCommandOutput
|
|
10
|
-
extends ListDataAutomationLibrariesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDataAutomationLibrariesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDataAutomationLibrariesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDataAutomationLibrariesCommandInput
|
|
12
|
+
input: ListDataAutomationLibrariesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDataAutomationLibrariesCommandInput,
|
|
17
15
|
ListDataAutomationLibrariesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDataAutomationLibraryEntitiesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataAutomationLibraryEntitiesCommandInput
|
|
8
|
-
extends ListDataAutomationLibraryEntitiesRequest {}
|
|
7
|
+
export interface ListDataAutomationLibraryEntitiesCommandInput extends ListDataAutomationLibraryEntitiesRequest {}
|
|
9
8
|
export interface ListDataAutomationLibraryEntitiesCommandOutput
|
|
10
|
-
extends ListDataAutomationLibraryEntitiesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDataAutomationLibraryEntitiesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDataAutomationLibraryEntitiesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDataAutomationLibraryEntitiesCommandInput
|
|
12
|
+
input: ListDataAutomationLibraryEntitiesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDataAutomationLibraryEntitiesCommandInput,
|
|
17
15
|
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDataAutomationLibraryEntitiesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDataAutomationLibraryEntitiesCommandInput
|
|
21
|
+
input: ListDataAutomationLibraryEntitiesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDataAutomationLibraryEntitiesCommandInput,
|
|
26
24
|
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDataAutomationLibraryIngestionJobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataAutomationLibraryIngestionJobsCommandInput
|
|
8
|
-
extends ListDataAutomationLibraryIngestionJobsRequest {}
|
|
7
|
+
export interface ListDataAutomationLibraryIngestionJobsCommandInput extends ListDataAutomationLibraryIngestionJobsRequest {}
|
|
9
8
|
export interface ListDataAutomationLibraryIngestionJobsCommandOutput
|
|
10
|
-
extends ListDataAutomationLibraryIngestionJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDataAutomationLibraryIngestionJobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDataAutomationLibraryIngestionJobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDataAutomationLibraryIngestionJobsCommandInput
|
|
12
|
+
input: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
17
15
|
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDataAutomationLibraryIngestionJobsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDataAutomationLibraryIngestionJobsCommandInput
|
|
21
|
+
input: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
26
24
|
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDataAutomationProjectsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataAutomationProjectsCommandInput
|
|
8
|
-
extends ListDataAutomationProjectsRequest {}
|
|
7
|
+
export interface ListDataAutomationProjectsCommandInput extends ListDataAutomationProjectsRequest {}
|
|
9
8
|
export interface ListDataAutomationProjectsCommandOutput
|
|
10
|
-
extends ListDataAutomationProjectsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDataAutomationProjectsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDataAutomationProjectsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDataAutomationProjectsCommandInput
|
|
12
|
+
input: ListDataAutomationProjectsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDataAutomationProjectsCommandInput,
|
|
17
15
|
ListDataAutomationProjectsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|