@aws-sdk/client-data-pipeline 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.
- 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
|
@@ -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 { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface RemoveTagsCommandInput extends RemoveTagsInput {}
|
|
12
5
|
export interface RemoveTagsCommandOutput
|
|
13
6
|
extends RemoveTagsOutput,
|
|
@@ -18,22 +11,20 @@ declare const RemoveTagsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
RemoveTagsCommandInput,
|
|
20
13
|
RemoveTagsCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: RemoveTagsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
RemoveTagsCommandInput,
|
|
29
22
|
RemoveTagsCommandOutput,
|
|
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 RemoveTagsCommand extends RemoveTagsCommand_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
|
ReportTaskProgressInput,
|
|
10
4
|
ReportTaskProgressOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ReportTaskProgressCommandInput
|
|
15
8
|
extends ReportTaskProgressInput {}
|
|
16
9
|
export interface ReportTaskProgressCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ReportTaskProgressCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ReportTaskProgressCommandInput,
|
|
24
17
|
ReportTaskProgressCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ReportTaskProgressCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ReportTaskProgressCommandInput,
|
|
33
26
|
ReportTaskProgressCommandOutput,
|
|
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 ReportTaskProgressCommand extends ReportTaskProgressCommand_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
|
ReportTaskRunnerHeartbeatInput,
|
|
10
4
|
ReportTaskRunnerHeartbeatOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ReportTaskRunnerHeartbeatCommandInput
|
|
15
8
|
extends ReportTaskRunnerHeartbeatInput {}
|
|
16
9
|
export interface ReportTaskRunnerHeartbeatCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ReportTaskRunnerHeartbeatCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ReportTaskRunnerHeartbeatCommandInput,
|
|
24
17
|
ReportTaskRunnerHeartbeatCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ReportTaskRunnerHeartbeatCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ReportTaskRunnerHeartbeatCommandInput,
|
|
33
26
|
ReportTaskRunnerHeartbeatCommandOutput,
|
|
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 ReportTaskRunnerHeartbeatCommand extends ReportTaskRunnerHeartbeatCommand_base {
|
|
43
34
|
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 { SetStatusInput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface SetStatusCommandInput extends SetStatusInput {}
|
|
12
5
|
export interface SetStatusCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const SetStatusCommand_base: {
|
|
14
7
|
new (input: SetStatusCommandInput): import("@smithy/core/client").CommandImpl<
|
|
15
8
|
SetStatusCommandInput,
|
|
16
9
|
SetStatusCommandOutput,
|
|
17
|
-
DataPipelineClientResolvedConfig,
|
|
18
|
-
ServiceInputTypes,
|
|
19
|
-
ServiceOutputTypes
|
|
10
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
11
|
+
import("..").ServiceInputTypes,
|
|
12
|
+
import("..").ServiceOutputTypes
|
|
20
13
|
>;
|
|
21
14
|
new (input: SetStatusCommandInput): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
SetStatusCommandInput,
|
|
23
16
|
SetStatusCommandOutput,
|
|
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 SetStatusCommand extends SetStatusCommand_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 { SetTaskStatusInput, SetTaskStatusOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface SetTaskStatusCommandInput extends SetTaskStatusInput {}
|
|
12
5
|
export interface SetTaskStatusCommandOutput
|
|
13
6
|
extends SetTaskStatusOutput,
|
|
@@ -18,22 +11,20 @@ declare const SetTaskStatusCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
SetTaskStatusCommandInput,
|
|
20
13
|
SetTaskStatusCommandOutput,
|
|
21
|
-
DataPipelineClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: SetTaskStatusCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
SetTaskStatusCommandInput,
|
|
29
22
|
SetTaskStatusCommandOutput,
|
|
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 SetTaskStatusCommand extends SetTaskStatusCommand_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
|
ValidatePipelineDefinitionInput,
|
|
10
4
|
ValidatePipelineDefinitionOutput,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ValidatePipelineDefinitionCommandInput
|
|
15
8
|
extends ValidatePipelineDefinitionInput {}
|
|
16
9
|
export interface ValidatePipelineDefinitionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ValidatePipelineDefinitionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ValidatePipelineDefinitionCommandInput,
|
|
24
17
|
ValidatePipelineDefinitionCommandOutput,
|
|
25
|
-
DataPipelineClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").DataPipelineClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ValidatePipelineDefinitionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ValidatePipelineDefinitionCommandInput,
|
|
33
26
|
ValidatePipelineDefinitionCommandOutput,
|
|
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 ValidatePipelineDefinitionCommand extends ValidatePipelineDefinitionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { DataPipelineExtensionConfiguration } 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 "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-data-pipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"module": "./dist-es/index.js",
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
27
|
-
"@smithy/core": "^3.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
29
|
-
"@smithy/node-http-handler": "^4.9.
|
|
30
|
-
"@smithy/types": "^4.15.
|
|
24
|
+
"@aws-sdk/core": "^3.974.27",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
26
|
+
"@aws-sdk/types": "^3.973.15",
|
|
27
|
+
"@smithy/core": "^3.29.0",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
29
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
30
|
+
"@smithy/types": "^4.15.1",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|