@aws-sdk/client-data-pipeline 3.1077.0 → 3.1078.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 +27 -193
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/ActivatePipelineCommand.js +2 -14
- package/dist-es/commands/AddTagsCommand.js +2 -14
- package/dist-es/commands/CreatePipelineCommand.js +2 -14
- package/dist-es/commands/DeactivatePipelineCommand.js +2 -14
- package/dist-es/commands/DeletePipelineCommand.js +2 -14
- package/dist-es/commands/DescribeObjectsCommand.js +2 -14
- package/dist-es/commands/DescribePipelinesCommand.js +2 -14
- package/dist-es/commands/EvaluateExpressionCommand.js +2 -14
- package/dist-es/commands/GetPipelineDefinitionCommand.js +2 -14
- package/dist-es/commands/ListPipelinesCommand.js +2 -14
- package/dist-es/commands/PollForTaskCommand.js +2 -14
- package/dist-es/commands/PutPipelineDefinitionCommand.js +2 -14
- package/dist-es/commands/QueryObjectsCommand.js +2 -14
- package/dist-es/commands/RemoveTagsCommand.js +2 -14
- package/dist-es/commands/ReportTaskProgressCommand.js +2 -14
- package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +2 -14
- package/dist-es/commands/SetStatusCommand.js +2 -14
- package/dist-es/commands/SetTaskStatusCommand.js +2 -14
- package/dist-es/commands/ValidatePipelineDefinitionCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/ActivatePipelineCommand.d.ts +3 -8
- package/dist-types/commands/AddTagsCommand.d.ts +3 -8
- package/dist-types/commands/CreatePipelineCommand.d.ts +3 -8
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +3 -8
- package/dist-types/commands/DeletePipelineCommand.d.ts +3 -8
- package/dist-types/commands/DescribeObjectsCommand.d.ts +3 -8
- package/dist-types/commands/DescribePipelinesCommand.d.ts +3 -8
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +3 -8
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +3 -8
- package/dist-types/commands/ListPipelinesCommand.d.ts +3 -8
- package/dist-types/commands/PollForTaskCommand.d.ts +3 -8
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +3 -8
- package/dist-types/commands/QueryObjectsCommand.d.ts +3 -8
- package/dist-types/commands/RemoveTagsCommand.d.ts +3 -8
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +3 -8
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +3 -8
- package/dist-types/commands/SetStatusCommand.d.ts +3 -8
- package/dist-types/commands/SetTaskStatusCommand.d.ts +3 -8
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DataPipelineClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./DataPipelineClient";
|
|
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
|
+
DataPipelineClientResolvedConfig,
|
|
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
|
+
DataPipelineClientResolvedConfig,
|
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
ActivatePipelineInput,
|
|
10
4
|
ActivatePipelineOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ActivatePipelineCommandInput extends ActivatePipelineInput {}
|
|
15
8
|
export interface ActivatePipelineCommandOutput
|
|
16
9
|
extends ActivatePipelineOutput,
|
|
@@ -21,22 +14,20 @@ declare const ActivatePipelineCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ActivatePipelineCommandInput,
|
|
23
16
|
ActivatePipelineCommandOutput,
|
|
24
|
-
DataPipelineClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ActivatePipelineCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ActivatePipelineCommandInput,
|
|
32
25
|
ActivatePipelineCommandOutput,
|
|
33
|
-
DataPipelineClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 ActivatePipelineCommand extends ActivatePipelineCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,33 +1,24 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { AddTagsInput, AddTagsOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface AddTagsCommandInput extends AddTagsInput {}
|
|
12
5
|
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {}
|
|
13
6
|
declare const AddTagsCommand_base: {
|
|
14
7
|
new (input: AddTagsCommandInput): import("@smithy/core/client").CommandImpl<
|
|
15
8
|
AddTagsCommandInput,
|
|
16
9
|
AddTagsCommandOutput,
|
|
17
|
-
DataPipelineClientResolvedConfig,
|
|
18
|
-
ServiceInputTypes,
|
|
19
|
-
ServiceOutputTypes
|
|
10
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
11
|
+
import("..").ServiceInputTypes,
|
|
12
|
+
import("..").ServiceOutputTypes
|
|
20
13
|
>;
|
|
21
14
|
new (input: AddTagsCommandInput): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
AddTagsCommandInput,
|
|
23
16
|
AddTagsCommandOutput,
|
|
24
|
-
DataPipelineClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
|
-
getEndpointParameterInstructions():
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
21
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
31
22
|
};
|
|
32
23
|
export declare class AddTagsCommand extends AddTagsCommand_base {
|
|
33
24
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CreatePipelineCommandInput extends CreatePipelineInput {}
|
|
12
5
|
export interface CreatePipelineCommandOutput
|
|
13
6
|
extends CreatePipelineOutput,
|
|
@@ -18,22 +11,20 @@ declare const CreatePipelineCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CreatePipelineCommandInput,
|
|
20
13
|
CreatePipelineCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CreatePipelineCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CreatePipelineCommandInput,
|
|
29
22
|
CreatePipelineCommandOutput,
|
|
30
|
-
DataPipelineClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 CreatePipelineCommand extends CreatePipelineCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
DeactivatePipelineInput,
|
|
10
4
|
DeactivatePipelineOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeactivatePipelineCommandInput
|
|
15
8
|
extends DeactivatePipelineInput {}
|
|
16
9
|
export interface DeactivatePipelineCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeactivatePipelineCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeactivatePipelineCommandInput,
|
|
24
17
|
DeactivatePipelineCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeactivatePipelineCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeactivatePipelineCommandInput,
|
|
33
26
|
DeactivatePipelineCommandOutput,
|
|
34
|
-
DataPipelineClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 DeactivatePipelineCommand extends DeactivatePipelineCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { DeletePipelineInput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeletePipelineCommandInput extends DeletePipelineInput {}
|
|
12
5
|
export interface DeletePipelineCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeletePipelineCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeletePipelineCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeletePipelineCommandInput,
|
|
18
11
|
DeletePipelineCommandOutput,
|
|
19
|
-
DataPipelineClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeletePipelineCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeletePipelineCommandInput,
|
|
27
20
|
DeletePipelineCommandOutput,
|
|
28
|
-
DataPipelineClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeletePipelineCommand extends DeletePipelineCommand_base {
|
|
37
28
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
DescribeObjectsInput,
|
|
10
4
|
DescribeObjectsOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeObjectsCommandInput extends DescribeObjectsInput {}
|
|
15
8
|
export interface DescribeObjectsCommandOutput
|
|
16
9
|
extends DescribeObjectsOutput,
|
|
@@ -21,22 +14,20 @@ declare const DescribeObjectsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DescribeObjectsCommandInput,
|
|
23
16
|
DescribeObjectsCommandOutput,
|
|
24
|
-
DataPipelineClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DescribeObjectsCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DescribeObjectsCommandInput,
|
|
32
25
|
DescribeObjectsCommandOutput,
|
|
33
|
-
DataPipelineClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 DescribeObjectsCommand extends DescribeObjectsCommand_base {
|
|
42
33
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
DescribePipelinesInput,
|
|
10
4
|
DescribePipelinesOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribePipelinesCommandInput extends DescribePipelinesInput {}
|
|
15
8
|
export interface DescribePipelinesCommandOutput
|
|
16
9
|
extends DescribePipelinesOutput,
|
|
@@ -21,22 +14,20 @@ declare const DescribePipelinesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DescribePipelinesCommandInput,
|
|
23
16
|
DescribePipelinesCommandOutput,
|
|
24
|
-
DataPipelineClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DescribePipelinesCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DescribePipelinesCommandInput,
|
|
32
25
|
DescribePipelinesCommandOutput,
|
|
33
|
-
DataPipelineClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 DescribePipelinesCommand extends DescribePipelinesCommand_base {
|
|
42
33
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
EvaluateExpressionInput,
|
|
10
4
|
EvaluateExpressionOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface EvaluateExpressionCommandInput
|
|
15
8
|
extends EvaluateExpressionInput {}
|
|
16
9
|
export interface EvaluateExpressionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const EvaluateExpressionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
EvaluateExpressionCommandInput,
|
|
24
17
|
EvaluateExpressionCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: EvaluateExpressionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
EvaluateExpressionCommandInput,
|
|
33
26
|
EvaluateExpressionCommandOutput,
|
|
34
|
-
DataPipelineClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 EvaluateExpressionCommand extends EvaluateExpressionCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
GetPipelineDefinitionInput,
|
|
10
4
|
GetPipelineDefinitionOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetPipelineDefinitionCommandInput
|
|
15
8
|
extends GetPipelineDefinitionInput {}
|
|
16
9
|
export interface GetPipelineDefinitionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetPipelineDefinitionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetPipelineDefinitionCommandInput,
|
|
24
17
|
GetPipelineDefinitionCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetPipelineDefinitionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetPipelineDefinitionCommandInput,
|
|
33
26
|
GetPipelineDefinitionCommandOutput,
|
|
34
|
-
DataPipelineClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 GetPipelineDefinitionCommand extends GetPipelineDefinitionCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListPipelinesCommandInput extends ListPipelinesInput {}
|
|
12
5
|
export interface ListPipelinesCommandOutput
|
|
13
6
|
extends ListPipelinesOutput,
|
|
@@ -18,22 +11,20 @@ declare const ListPipelinesCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListPipelinesCommandInput,
|
|
20
13
|
ListPipelinesCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListPipelinesCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListPipelinesCommandInput,
|
|
29
22
|
ListPipelinesCommandOutput,
|
|
30
|
-
DataPipelineClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 ListPipelinesCommand extends ListPipelinesCommand_base {
|
|
39
30
|
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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { PollForTaskInput, PollForTaskOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface PollForTaskCommandInput extends PollForTaskInput {}
|
|
12
5
|
export interface PollForTaskCommandOutput
|
|
13
6
|
extends PollForTaskOutput,
|
|
@@ -18,22 +11,20 @@ declare const PollForTaskCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
PollForTaskCommandInput,
|
|
20
13
|
PollForTaskCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: PollForTaskCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
PollForTaskCommandInput,
|
|
29
22
|
PollForTaskCommandOutput,
|
|
30
|
-
DataPipelineClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 PollForTaskCommand extends PollForTaskCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import {
|
|
9
3
|
PutPipelineDefinitionInput,
|
|
10
4
|
PutPipelineDefinitionOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface PutPipelineDefinitionCommandInput
|
|
15
8
|
extends PutPipelineDefinitionInput {}
|
|
16
9
|
export interface PutPipelineDefinitionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const PutPipelineDefinitionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
PutPipelineDefinitionCommandInput,
|
|
24
17
|
PutPipelineDefinitionCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: PutPipelineDefinitionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
PutPipelineDefinitionCommandInput,
|
|
33
26
|
PutPipelineDefinitionCommandOutput,
|
|
34
|
-
DataPipelineClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 PutPipelineDefinitionCommand extends PutPipelineDefinitionCommand_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
|
-
DataPipelineClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../DataPipelineClient";
|
|
8
2
|
import { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface QueryObjectsCommandInput extends QueryObjectsInput {}
|
|
12
5
|
export interface QueryObjectsCommandOutput
|
|
13
6
|
extends QueryObjectsOutput,
|
|
@@ -18,22 +11,20 @@ declare const QueryObjectsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
QueryObjectsCommandInput,
|
|
20
13
|
QueryObjectsCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: QueryObjectsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
QueryObjectsCommandInput,
|
|
29
22
|
QueryObjectsCommandOutput,
|
|
30
|
-
DataPipelineClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
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 QueryObjectsCommand extends QueryObjectsCommand_base {
|
|
39
30
|
protected static __types: {
|