@aws-sdk/client-data-pipeline 3.300.0 → 3.301.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-types/commands/ActivatePipelineCommand.d.ts +3 -3
- package/dist-types/commands/AddTagsCommand.d.ts +3 -3
- package/dist-types/commands/CreatePipelineCommand.d.ts +3 -3
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeletePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DescribeObjectsCommand.d.ts +2 -2
- package/dist-types/commands/DescribePipelinesCommand.d.ts +2 -2
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +1 -1
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/PollForTaskCommand.d.ts +2 -2
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +11 -11
- package/dist-types/commands/QueryObjectsCommand.d.ts +6 -6
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -2
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +3 -3
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +1 -1
- package/dist-types/commands/SetStatusCommand.d.ts +2 -2
- package/dist-types/commands/SetTaskStatusCommand.d.ts +1 -1
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +11 -11
- package/package.json +3 -3
|
@@ -56,10 +56,10 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
56
56
|
* import { DataPipelineClient, ActivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, ActivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // ActivatePipelineInput
|
|
60
60
|
* pipelineId: "STRING_VALUE", // required
|
|
61
|
-
* parameterValues: [
|
|
62
|
-
* {
|
|
61
|
+
* parameterValues: [ // ParameterValueList
|
|
62
|
+
* { // ParameterValue
|
|
63
63
|
* id: "STRING_VALUE", // required
|
|
64
64
|
* stringValue: "STRING_VALUE", // required
|
|
65
65
|
* },
|
|
@@ -26,10 +26,10 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
26
26
|
* import { DataPipelineClient, AddTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, AddTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AddTagsInput
|
|
30
30
|
* pipelineId: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // tagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -56,12 +56,12 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
56
56
|
* import { DataPipelineClient, CreatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, CreatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // CreatePipelineInput
|
|
60
60
|
* name: "STRING_VALUE", // required
|
|
61
61
|
* uniqueId: "STRING_VALUE", // required
|
|
62
62
|
* description: "STRING_VALUE",
|
|
63
|
-
* tags: [
|
|
64
|
-
* {
|
|
63
|
+
* tags: [ // tagList
|
|
64
|
+
* { // Tag
|
|
65
65
|
* key: "STRING_VALUE", // required
|
|
66
66
|
* value: "STRING_VALUE", // required
|
|
67
67
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
29
29
|
* import { DataPipelineClient, DeactivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
30
30
|
* // const { DataPipelineClient, DeactivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
31
31
|
* const client = new DataPipelineClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeactivatePipelineInput
|
|
33
33
|
* pipelineId: "STRING_VALUE", // required
|
|
34
34
|
* cancelActive: true || false,
|
|
35
35
|
* };
|
|
@@ -57,7 +57,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
57
57
|
* import { DataPipelineClient, DeletePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // DeletePipelineInput
|
|
61
61
|
* pipelineId: "STRING_VALUE", // required
|
|
62
62
|
* };
|
|
63
63
|
* const command = new DeletePipelineCommand(input);
|
|
@@ -84,9 +84,9 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
84
84
|
* import { DataPipelineClient, DescribeObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
85
85
|
* // const { DataPipelineClient, DescribeObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
86
86
|
* const client = new DataPipelineClient(config);
|
|
87
|
-
* const input = {
|
|
87
|
+
* const input = { // DescribeObjectsInput
|
|
88
88
|
* pipelineId: "STRING_VALUE", // required
|
|
89
|
-
* objectIds: [ // required
|
|
89
|
+
* objectIds: [ // idList // required
|
|
90
90
|
* "STRING_VALUE",
|
|
91
91
|
* ],
|
|
92
92
|
* evaluateExpressions: true || false,
|
|
@@ -87,8 +87,8 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
87
87
|
* import { DataPipelineClient, DescribePipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
88
88
|
* // const { DataPipelineClient, DescribePipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
89
89
|
* const client = new DataPipelineClient(config);
|
|
90
|
-
* const input = {
|
|
91
|
-
* pipelineIds: [ // required
|
|
90
|
+
* const input = { // DescribePipelinesInput
|
|
91
|
+
* pipelineIds: [ // idList // required
|
|
92
92
|
* "STRING_VALUE",
|
|
93
93
|
* ],
|
|
94
94
|
* };
|
|
@@ -56,7 +56,7 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
56
56
|
* import { DataPipelineClient, EvaluateExpressionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, EvaluateExpressionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // EvaluateExpressionInput
|
|
60
60
|
* pipelineId: "STRING_VALUE", // required
|
|
61
61
|
* objectId: "STRING_VALUE", // required
|
|
62
62
|
* expression: "STRING_VALUE", // required
|
|
@@ -90,7 +90,7 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
90
90
|
* import { DataPipelineClient, GetPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
91
91
|
* // const { DataPipelineClient, GetPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
92
92
|
* const client = new DataPipelineClient(config);
|
|
93
|
-
* const input = {
|
|
93
|
+
* const input = { // GetPipelineDefinitionInput
|
|
94
94
|
* pipelineId: "STRING_VALUE", // required
|
|
95
95
|
* version: "STRING_VALUE",
|
|
96
96
|
* };
|
|
@@ -57,7 +57,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
57
57
|
* import { DataPipelineClient, ListPipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // ListPipelinesInput
|
|
61
61
|
* marker: "STRING_VALUE",
|
|
62
62
|
* };
|
|
63
63
|
* const command = new ListPipelinesCommand(input);
|
|
@@ -104,10 +104,10 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
104
104
|
* import { DataPipelineClient, PollForTaskCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
105
105
|
* // const { DataPipelineClient, PollForTaskCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
106
106
|
* const client = new DataPipelineClient(config);
|
|
107
|
-
* const input = {
|
|
107
|
+
* const input = { // PollForTaskInput
|
|
108
108
|
* workerGroup: "STRING_VALUE", // required
|
|
109
109
|
* hostname: "STRING_VALUE",
|
|
110
|
-
* instanceIdentity: {
|
|
110
|
+
* instanceIdentity: { // InstanceIdentity
|
|
111
111
|
* document: "STRING_VALUE",
|
|
112
112
|
* signature: "STRING_VALUE",
|
|
113
113
|
* },
|
|
@@ -185,14 +185,14 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
185
185
|
* import { DataPipelineClient, PutPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
186
186
|
* // const { DataPipelineClient, PutPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
187
187
|
* const client = new DataPipelineClient(config);
|
|
188
|
-
* const input = {
|
|
188
|
+
* const input = { // PutPipelineDefinitionInput
|
|
189
189
|
* pipelineId: "STRING_VALUE", // required
|
|
190
|
-
* pipelineObjects: [ // required
|
|
191
|
-
* {
|
|
190
|
+
* pipelineObjects: [ // PipelineObjectList // required
|
|
191
|
+
* { // PipelineObject
|
|
192
192
|
* id: "STRING_VALUE", // required
|
|
193
193
|
* name: "STRING_VALUE", // required
|
|
194
|
-
* fields: [ // required
|
|
195
|
-
* {
|
|
194
|
+
* fields: [ // fieldList // required
|
|
195
|
+
* { // Field
|
|
196
196
|
* key: "STRING_VALUE", // required
|
|
197
197
|
* stringValue: "STRING_VALUE",
|
|
198
198
|
* refValue: "STRING_VALUE",
|
|
@@ -200,19 +200,19 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
200
200
|
* ],
|
|
201
201
|
* },
|
|
202
202
|
* ],
|
|
203
|
-
* parameterObjects: [
|
|
204
|
-
* {
|
|
203
|
+
* parameterObjects: [ // ParameterObjectList
|
|
204
|
+
* { // ParameterObject
|
|
205
205
|
* id: "STRING_VALUE", // required
|
|
206
|
-
* attributes: [ // required
|
|
207
|
-
* {
|
|
206
|
+
* attributes: [ // ParameterAttributeList // required
|
|
207
|
+
* { // ParameterAttribute
|
|
208
208
|
* key: "STRING_VALUE", // required
|
|
209
209
|
* stringValue: "STRING_VALUE", // required
|
|
210
210
|
* },
|
|
211
211
|
* ],
|
|
212
212
|
* },
|
|
213
213
|
* ],
|
|
214
|
-
* parameterValues: [
|
|
215
|
-
* {
|
|
214
|
+
* parameterValues: [ // ParameterValueList
|
|
215
|
+
* { // ParameterValue
|
|
216
216
|
* id: "STRING_VALUE", // required
|
|
217
217
|
* stringValue: "STRING_VALUE", // required
|
|
218
218
|
* },
|
|
@@ -64,15 +64,15 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
64
64
|
* import { DataPipelineClient, QueryObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
65
65
|
* // const { DataPipelineClient, QueryObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
66
66
|
* const client = new DataPipelineClient(config);
|
|
67
|
-
* const input = {
|
|
67
|
+
* const input = { // QueryObjectsInput
|
|
68
68
|
* pipelineId: "STRING_VALUE", // required
|
|
69
|
-
* query: {
|
|
70
|
-
* selectors: [
|
|
71
|
-
* {
|
|
69
|
+
* query: { // Query
|
|
70
|
+
* selectors: [ // SelectorList
|
|
71
|
+
* { // Selector
|
|
72
72
|
* fieldName: "STRING_VALUE",
|
|
73
|
-
* operator: {
|
|
73
|
+
* operator: { // Operator
|
|
74
74
|
* type: "STRING_VALUE",
|
|
75
|
-
* values: [
|
|
75
|
+
* values: [ // stringList
|
|
76
76
|
* "STRING_VALUE",
|
|
77
77
|
* ],
|
|
78
78
|
* },
|
|
@@ -26,9 +26,9 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
26
26
|
* import { DataPipelineClient, RemoveTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, RemoveTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RemoveTagsInput
|
|
30
30
|
* pipelineId: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // stringList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -63,10 +63,10 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
63
63
|
* import { DataPipelineClient, ReportTaskProgressCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
64
64
|
* // const { DataPipelineClient, ReportTaskProgressCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
65
65
|
* const client = new DataPipelineClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // ReportTaskProgressInput
|
|
67
67
|
* taskId: "STRING_VALUE", // required
|
|
68
|
-
* fields: [
|
|
69
|
-
* {
|
|
68
|
+
* fields: [ // fieldList
|
|
69
|
+
* { // Field
|
|
70
70
|
* key: "STRING_VALUE", // required
|
|
71
71
|
* stringValue: "STRING_VALUE",
|
|
72
72
|
* refValue: "STRING_VALUE",
|
|
@@ -58,7 +58,7 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
58
58
|
* import { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
-
* const input = {
|
|
61
|
+
* const input = { // ReportTaskRunnerHeartbeatInput
|
|
62
62
|
* taskrunnerId: "STRING_VALUE", // required
|
|
63
63
|
* workerGroup: "STRING_VALUE",
|
|
64
64
|
* hostname: "STRING_VALUE",
|
|
@@ -58,9 +58,9 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
58
58
|
* import { DataPipelineClient, SetStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, SetStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
-
* const input = {
|
|
61
|
+
* const input = { // SetStatusInput
|
|
62
62
|
* pipelineId: "STRING_VALUE", // required
|
|
63
|
-
* objectIds: [ // required
|
|
63
|
+
* objectIds: [ // idList // required
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
66
|
* status: "STRING_VALUE", // required
|
|
@@ -56,7 +56,7 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
56
56
|
* import { DataPipelineClient, SetTaskStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, SetTaskStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // SetTaskStatusInput
|
|
60
60
|
* taskId: "STRING_VALUE", // required
|
|
61
61
|
* taskStatus: "STRING_VALUE", // required
|
|
62
62
|
* errorId: "STRING_VALUE",
|
|
@@ -177,14 +177,14 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
177
177
|
* import { DataPipelineClient, ValidatePipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
178
178
|
* // const { DataPipelineClient, ValidatePipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
179
179
|
* const client = new DataPipelineClient(config);
|
|
180
|
-
* const input = {
|
|
180
|
+
* const input = { // ValidatePipelineDefinitionInput
|
|
181
181
|
* pipelineId: "STRING_VALUE", // required
|
|
182
|
-
* pipelineObjects: [ // required
|
|
183
|
-
* {
|
|
182
|
+
* pipelineObjects: [ // PipelineObjectList // required
|
|
183
|
+
* { // PipelineObject
|
|
184
184
|
* id: "STRING_VALUE", // required
|
|
185
185
|
* name: "STRING_VALUE", // required
|
|
186
|
-
* fields: [ // required
|
|
187
|
-
* {
|
|
186
|
+
* fields: [ // fieldList // required
|
|
187
|
+
* { // Field
|
|
188
188
|
* key: "STRING_VALUE", // required
|
|
189
189
|
* stringValue: "STRING_VALUE",
|
|
190
190
|
* refValue: "STRING_VALUE",
|
|
@@ -192,19 +192,19 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
192
192
|
* ],
|
|
193
193
|
* },
|
|
194
194
|
* ],
|
|
195
|
-
* parameterObjects: [
|
|
196
|
-
* {
|
|
195
|
+
* parameterObjects: [ // ParameterObjectList
|
|
196
|
+
* { // ParameterObject
|
|
197
197
|
* id: "STRING_VALUE", // required
|
|
198
|
-
* attributes: [ // required
|
|
199
|
-
* {
|
|
198
|
+
* attributes: [ // ParameterAttributeList // required
|
|
199
|
+
* { // ParameterAttribute
|
|
200
200
|
* key: "STRING_VALUE", // required
|
|
201
201
|
* stringValue: "STRING_VALUE", // required
|
|
202
202
|
* },
|
|
203
203
|
* ],
|
|
204
204
|
* },
|
|
205
205
|
* ],
|
|
206
|
-
* parameterValues: [
|
|
207
|
-
* {
|
|
206
|
+
* parameterValues: [ // ParameterValueList
|
|
207
|
+
* { // ParameterValue
|
|
208
208
|
* id: "STRING_VALUE", // required
|
|
209
209
|
* stringValue: "STRING_VALUE", // required
|
|
210
210
|
* },
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|