@aws-sdk/client-data-pipeline 3.325.0 → 3.327.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 +4 -0
- package/dist-types/commands/AddTagsCommand.d.ts +4 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +6 -0
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +4 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +4 -0
- package/dist-types/commands/DescribeObjectsCommand.d.ts +20 -0
- package/dist-types/commands/DescribePipelinesCommand.d.ts +25 -0
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +6 -0
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +13 -0
- package/dist-types/commands/PollForTaskCommand.d.ts +23 -0
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +22 -0
- package/dist-types/commands/QueryObjectsCommand.d.ts +10 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +6 -0
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +6 -0
- package/dist-types/commands/SetStatusCommand.d.ts +4 -0
- package/dist-types/commands/SetTaskStatusCommand.d.ts +4 -0
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +22 -0
- package/package.json +7 -7
|
@@ -68,6 +68,8 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
68
68
|
* };
|
|
69
69
|
* const command = new ActivatePipelineCommand(input);
|
|
70
70
|
* const response = await client.send(command);
|
|
71
|
+
* // {};
|
|
72
|
+
*
|
|
71
73
|
* ```
|
|
72
74
|
*
|
|
73
75
|
* @param ActivatePipelineCommandInput - {@link ActivatePipelineCommandInput}
|
|
@@ -88,6 +90,8 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
88
90
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
89
91
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
90
92
|
*
|
|
93
|
+
* @throws {@link DataPipelineServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
91
95
|
*
|
|
92
96
|
*/
|
|
93
97
|
export declare class ActivatePipelineCommand extends $Command<ActivatePipelineCommandInput, ActivatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new AddTagsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param AddTagsCommandInput - {@link AddTagsCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
57
59
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
58
60
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link DataPipelineServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -69,6 +69,10 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
69
69
|
* };
|
|
70
70
|
* const command = new CreatePipelineCommand(input);
|
|
71
71
|
* const response = await client.send(command);
|
|
72
|
+
* // { // CreatePipelineOutput
|
|
73
|
+
* // pipelineId: "STRING_VALUE", // required
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
72
76
|
* ```
|
|
73
77
|
*
|
|
74
78
|
* @param CreatePipelineCommandInput - {@link CreatePipelineCommandInput}
|
|
@@ -83,6 +87,8 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
83
87
|
* @throws {@link InvalidRequestException} (client fault)
|
|
84
88
|
* <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
|
|
85
89
|
*
|
|
90
|
+
* @throws {@link DataPipelineServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
86
92
|
*
|
|
87
93
|
*/
|
|
88
94
|
export declare class CreatePipelineCommand extends $Command<CreatePipelineCommandInput, CreatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeactivatePipelineCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeactivatePipelineCommandInput - {@link DeactivatePipelineCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
55
57
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
56
58
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link DataPipelineServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeactivatePipelineCommand extends $Command<DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -62,6 +62,8 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new DeletePipelineCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // {};
|
|
66
|
+
*
|
|
65
67
|
* ```
|
|
66
68
|
*
|
|
67
69
|
* @param DeletePipelineCommandInput - {@link DeletePipelineCommandInput}
|
|
@@ -79,6 +81,8 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
79
81
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
80
82
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
81
83
|
*
|
|
84
|
+
* @throws {@link DataPipelineServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
82
86
|
*
|
|
83
87
|
*/
|
|
84
88
|
export declare class DeletePipelineCommand extends $Command<DeletePipelineCommandInput, DeletePipelineCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -94,6 +94,24 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
94
94
|
* };
|
|
95
95
|
* const command = new DescribeObjectsCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
+
* // { // DescribeObjectsOutput
|
|
98
|
+
* // pipelineObjects: [ // PipelineObjectList // required
|
|
99
|
+
* // { // PipelineObject
|
|
100
|
+
* // id: "STRING_VALUE", // required
|
|
101
|
+
* // name: "STRING_VALUE", // required
|
|
102
|
+
* // fields: [ // fieldList // required
|
|
103
|
+
* // { // Field
|
|
104
|
+
* // key: "STRING_VALUE", // required
|
|
105
|
+
* // stringValue: "STRING_VALUE",
|
|
106
|
+
* // refValue: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // marker: "STRING_VALUE",
|
|
112
|
+
* // hasMoreResults: true || false,
|
|
113
|
+
* // };
|
|
114
|
+
*
|
|
97
115
|
* ```
|
|
98
116
|
*
|
|
99
117
|
* @param DescribeObjectsCommandInput - {@link DescribeObjectsCommandInput}
|
|
@@ -114,6 +132,8 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
114
132
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
115
133
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
116
134
|
*
|
|
135
|
+
* @throws {@link DataPipelineServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
117
137
|
*
|
|
118
138
|
*/
|
|
119
139
|
export declare class DescribeObjectsCommand extends $Command<DescribeObjectsCommandInput, DescribeObjectsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -94,6 +94,29 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
94
94
|
* };
|
|
95
95
|
* const command = new DescribePipelinesCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
+
* // { // DescribePipelinesOutput
|
|
98
|
+
* // pipelineDescriptionList: [ // PipelineDescriptionList // required
|
|
99
|
+
* // { // PipelineDescription
|
|
100
|
+
* // pipelineId: "STRING_VALUE", // required
|
|
101
|
+
* // name: "STRING_VALUE", // required
|
|
102
|
+
* // fields: [ // fieldList // required
|
|
103
|
+
* // { // Field
|
|
104
|
+
* // key: "STRING_VALUE", // required
|
|
105
|
+
* // stringValue: "STRING_VALUE",
|
|
106
|
+
* // refValue: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // description: "STRING_VALUE",
|
|
110
|
+
* // tags: [ // tagList
|
|
111
|
+
* // { // Tag
|
|
112
|
+
* // key: "STRING_VALUE", // required
|
|
113
|
+
* // value: "STRING_VALUE", // required
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // };
|
|
119
|
+
*
|
|
97
120
|
* ```
|
|
98
121
|
*
|
|
99
122
|
* @param DescribePipelinesCommandInput - {@link DescribePipelinesCommandInput}
|
|
@@ -114,6 +137,8 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
114
137
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
115
138
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
116
139
|
*
|
|
140
|
+
* @throws {@link DataPipelineServiceException}
|
|
141
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
117
142
|
*
|
|
118
143
|
*/
|
|
119
144
|
export declare class DescribePipelinesCommand extends $Command<DescribePipelinesCommandInput, DescribePipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -63,6 +63,10 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
63
63
|
* };
|
|
64
64
|
* const command = new EvaluateExpressionCommand(input);
|
|
65
65
|
* const response = await client.send(command);
|
|
66
|
+
* // { // EvaluateExpressionOutput
|
|
67
|
+
* // evaluatedExpression: "STRING_VALUE", // required
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
66
70
|
* ```
|
|
67
71
|
*
|
|
68
72
|
* @param EvaluateExpressionCommandInput - {@link EvaluateExpressionCommandInput}
|
|
@@ -86,6 +90,8 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
86
90
|
* @throws {@link TaskNotFoundException} (client fault)
|
|
87
91
|
* <p>The specified task was not found. </p>
|
|
88
92
|
*
|
|
93
|
+
* @throws {@link DataPipelineServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
89
95
|
*
|
|
90
96
|
*/
|
|
91
97
|
export declare class EvaluateExpressionCommand extends $Command<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -96,6 +96,39 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
96
96
|
* };
|
|
97
97
|
* const command = new GetPipelineDefinitionCommand(input);
|
|
98
98
|
* const response = await client.send(command);
|
|
99
|
+
* // { // GetPipelineDefinitionOutput
|
|
100
|
+
* // pipelineObjects: [ // PipelineObjectList
|
|
101
|
+
* // { // PipelineObject
|
|
102
|
+
* // id: "STRING_VALUE", // required
|
|
103
|
+
* // name: "STRING_VALUE", // required
|
|
104
|
+
* // fields: [ // fieldList // required
|
|
105
|
+
* // { // Field
|
|
106
|
+
* // key: "STRING_VALUE", // required
|
|
107
|
+
* // stringValue: "STRING_VALUE",
|
|
108
|
+
* // refValue: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // parameterObjects: [ // ParameterObjectList
|
|
114
|
+
* // { // ParameterObject
|
|
115
|
+
* // id: "STRING_VALUE", // required
|
|
116
|
+
* // attributes: [ // ParameterAttributeList // required
|
|
117
|
+
* // { // ParameterAttribute
|
|
118
|
+
* // key: "STRING_VALUE", // required
|
|
119
|
+
* // stringValue: "STRING_VALUE", // required
|
|
120
|
+
* // },
|
|
121
|
+
* // ],
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
124
|
+
* // parameterValues: [ // ParameterValueList
|
|
125
|
+
* // { // ParameterValue
|
|
126
|
+
* // id: "STRING_VALUE", // required
|
|
127
|
+
* // stringValue: "STRING_VALUE", // required
|
|
128
|
+
* // },
|
|
129
|
+
* // ],
|
|
130
|
+
* // };
|
|
131
|
+
*
|
|
99
132
|
* ```
|
|
100
133
|
*
|
|
101
134
|
* @param GetPipelineDefinitionCommandInput - {@link GetPipelineDefinitionCommandInput}
|
|
@@ -116,6 +149,8 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
116
149
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
117
150
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
118
151
|
*
|
|
152
|
+
* @throws {@link DataPipelineServiceException}
|
|
153
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
119
154
|
*
|
|
120
155
|
*/
|
|
121
156
|
export declare class GetPipelineDefinitionCommand extends $Command<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -62,6 +62,17 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new ListPipelinesCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // { // ListPipelinesOutput
|
|
66
|
+
* // pipelineIdList: [ // pipelineList // required
|
|
67
|
+
* // { // PipelineIdName
|
|
68
|
+
* // id: "STRING_VALUE",
|
|
69
|
+
* // name: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // marker: "STRING_VALUE",
|
|
73
|
+
* // hasMoreResults: true || false,
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
65
76
|
* ```
|
|
66
77
|
*
|
|
67
78
|
* @param ListPipelinesCommandInput - {@link ListPipelinesCommandInput}
|
|
@@ -76,6 +87,8 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
76
87
|
* @throws {@link InvalidRequestException} (client fault)
|
|
77
88
|
* <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
|
|
78
89
|
*
|
|
90
|
+
* @throws {@link DataPipelineServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
79
92
|
*
|
|
80
93
|
*/
|
|
81
94
|
export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -114,6 +114,27 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
114
114
|
* };
|
|
115
115
|
* const command = new PollForTaskCommand(input);
|
|
116
116
|
* const response = await client.send(command);
|
|
117
|
+
* // { // PollForTaskOutput
|
|
118
|
+
* // taskObject: { // TaskObject
|
|
119
|
+
* // taskId: "STRING_VALUE",
|
|
120
|
+
* // pipelineId: "STRING_VALUE",
|
|
121
|
+
* // attemptId: "STRING_VALUE",
|
|
122
|
+
* // objects: { // PipelineObjectMap
|
|
123
|
+
* // "<keys>": { // PipelineObject
|
|
124
|
+
* // id: "STRING_VALUE", // required
|
|
125
|
+
* // name: "STRING_VALUE", // required
|
|
126
|
+
* // fields: [ // fieldList // required
|
|
127
|
+
* // { // Field
|
|
128
|
+
* // key: "STRING_VALUE", // required
|
|
129
|
+
* // stringValue: "STRING_VALUE",
|
|
130
|
+
* // refValue: "STRING_VALUE",
|
|
131
|
+
* // },
|
|
132
|
+
* // ],
|
|
133
|
+
* // },
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // };
|
|
137
|
+
*
|
|
117
138
|
* ```
|
|
118
139
|
*
|
|
119
140
|
* @param PollForTaskCommandInput - {@link PollForTaskCommandInput}
|
|
@@ -131,6 +152,8 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
131
152
|
* @throws {@link TaskNotFoundException} (client fault)
|
|
132
153
|
* <p>The specified task was not found. </p>
|
|
133
154
|
*
|
|
155
|
+
* @throws {@link DataPipelineServiceException}
|
|
156
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
134
157
|
*
|
|
135
158
|
*/
|
|
136
159
|
export declare class PollForTaskCommand extends $Command<PollForTaskCommandInput, PollForTaskCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -220,6 +220,26 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
220
220
|
* };
|
|
221
221
|
* const command = new PutPipelineDefinitionCommand(input);
|
|
222
222
|
* const response = await client.send(command);
|
|
223
|
+
* // { // PutPipelineDefinitionOutput
|
|
224
|
+
* // validationErrors: [ // ValidationErrors
|
|
225
|
+
* // { // ValidationError
|
|
226
|
+
* // id: "STRING_VALUE",
|
|
227
|
+
* // errors: [ // validationMessages
|
|
228
|
+
* // "STRING_VALUE",
|
|
229
|
+
* // ],
|
|
230
|
+
* // },
|
|
231
|
+
* // ],
|
|
232
|
+
* // validationWarnings: [ // ValidationWarnings
|
|
233
|
+
* // { // ValidationWarning
|
|
234
|
+
* // id: "STRING_VALUE",
|
|
235
|
+
* // warnings: [
|
|
236
|
+
* // "STRING_VALUE",
|
|
237
|
+
* // ],
|
|
238
|
+
* // },
|
|
239
|
+
* // ],
|
|
240
|
+
* // errored: true || false, // required
|
|
241
|
+
* // };
|
|
242
|
+
*
|
|
223
243
|
* ```
|
|
224
244
|
*
|
|
225
245
|
* @param PutPipelineDefinitionCommandInput - {@link PutPipelineDefinitionCommandInput}
|
|
@@ -240,6 +260,8 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
240
260
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
241
261
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
242
262
|
*
|
|
263
|
+
* @throws {@link DataPipelineServiceException}
|
|
264
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
243
265
|
*
|
|
244
266
|
*/
|
|
245
267
|
export declare class PutPipelineDefinitionCommand extends $Command<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -85,6 +85,14 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
85
85
|
* };
|
|
86
86
|
* const command = new QueryObjectsCommand(input);
|
|
87
87
|
* const response = await client.send(command);
|
|
88
|
+
* // { // QueryObjectsOutput
|
|
89
|
+
* // ids: [ // idList
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // marker: "STRING_VALUE",
|
|
93
|
+
* // hasMoreResults: true || false,
|
|
94
|
+
* // };
|
|
95
|
+
*
|
|
88
96
|
* ```
|
|
89
97
|
*
|
|
90
98
|
* @param QueryObjectsCommandInput - {@link QueryObjectsCommandInput}
|
|
@@ -105,6 +113,8 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
105
113
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
106
114
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
107
115
|
*
|
|
116
|
+
* @throws {@link DataPipelineServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
108
118
|
*
|
|
109
119
|
*/
|
|
110
120
|
export declare class QueryObjectsCommand extends $Command<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new RemoveTagsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param RemoveTagsCommandInput - {@link RemoveTagsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
54
56
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
55
57
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link DataPipelineServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -75,6 +75,10 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
75
75
|
* };
|
|
76
76
|
* const command = new ReportTaskProgressCommand(input);
|
|
77
77
|
* const response = await client.send(command);
|
|
78
|
+
* // { // ReportTaskProgressOutput
|
|
79
|
+
* // canceled: true || false, // required
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
78
82
|
* ```
|
|
79
83
|
*
|
|
80
84
|
* @param ReportTaskProgressCommandInput - {@link ReportTaskProgressCommandInput}
|
|
@@ -98,6 +102,8 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
98
102
|
* @throws {@link TaskNotFoundException} (client fault)
|
|
99
103
|
* <p>The specified task was not found. </p>
|
|
100
104
|
*
|
|
105
|
+
* @throws {@link DataPipelineServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
101
107
|
*
|
|
102
108
|
*/
|
|
103
109
|
export declare class ReportTaskProgressCommand extends $Command<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -65,6 +65,10 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new ReportTaskRunnerHeartbeatCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // { // ReportTaskRunnerHeartbeatOutput
|
|
69
|
+
* // terminate: true || false, // required
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
68
72
|
* ```
|
|
69
73
|
*
|
|
70
74
|
* @param ReportTaskRunnerHeartbeatCommandInput - {@link ReportTaskRunnerHeartbeatCommandInput}
|
|
@@ -79,6 +83,8 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
79
83
|
* @throws {@link InvalidRequestException} (client fault)
|
|
80
84
|
* <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
|
|
81
85
|
*
|
|
86
|
+
* @throws {@link DataPipelineServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
82
88
|
*
|
|
83
89
|
*/
|
|
84
90
|
export declare class ReportTaskRunnerHeartbeatCommand extends $Command<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -67,6 +67,8 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new SetStatusCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // {};
|
|
71
|
+
*
|
|
70
72
|
* ```
|
|
71
73
|
*
|
|
72
74
|
* @param SetStatusCommandInput - {@link SetStatusCommandInput}
|
|
@@ -87,6 +89,8 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
87
89
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
88
90
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
89
91
|
*
|
|
92
|
+
* @throws {@link DataPipelineServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
90
94
|
*
|
|
91
95
|
*/
|
|
92
96
|
export declare class SetStatusCommand extends $Command<SetStatusCommandInput, SetStatusCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -65,6 +65,8 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new SetTaskStatusCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // {};
|
|
69
|
+
*
|
|
68
70
|
* ```
|
|
69
71
|
*
|
|
70
72
|
* @param SetTaskStatusCommandInput - {@link SetTaskStatusCommandInput}
|
|
@@ -88,6 +90,8 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
88
90
|
* @throws {@link TaskNotFoundException} (client fault)
|
|
89
91
|
* <p>The specified task was not found. </p>
|
|
90
92
|
*
|
|
93
|
+
* @throws {@link DataPipelineServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
91
95
|
*
|
|
92
96
|
*/
|
|
93
97
|
export declare class SetTaskStatusCommand extends $Command<SetTaskStatusCommandInput, SetTaskStatusCommandOutput, DataPipelineClientResolvedConfig> {
|
|
@@ -212,6 +212,26 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
212
212
|
* };
|
|
213
213
|
* const command = new ValidatePipelineDefinitionCommand(input);
|
|
214
214
|
* const response = await client.send(command);
|
|
215
|
+
* // { // ValidatePipelineDefinitionOutput
|
|
216
|
+
* // validationErrors: [ // ValidationErrors
|
|
217
|
+
* // { // ValidationError
|
|
218
|
+
* // id: "STRING_VALUE",
|
|
219
|
+
* // errors: [ // validationMessages
|
|
220
|
+
* // "STRING_VALUE",
|
|
221
|
+
* // ],
|
|
222
|
+
* // },
|
|
223
|
+
* // ],
|
|
224
|
+
* // validationWarnings: [ // ValidationWarnings
|
|
225
|
+
* // { // ValidationWarning
|
|
226
|
+
* // id: "STRING_VALUE",
|
|
227
|
+
* // warnings: [
|
|
228
|
+
* // "STRING_VALUE",
|
|
229
|
+
* // ],
|
|
230
|
+
* // },
|
|
231
|
+
* // ],
|
|
232
|
+
* // errored: true || false, // required
|
|
233
|
+
* // };
|
|
234
|
+
*
|
|
215
235
|
* ```
|
|
216
236
|
*
|
|
217
237
|
* @param ValidatePipelineDefinitionCommandInput - {@link ValidatePipelineDefinitionCommandInput}
|
|
@@ -232,6 +252,8 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
232
252
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
233
253
|
* <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
|
|
234
254
|
*
|
|
255
|
+
* @throws {@link DataPipelineServiceException}
|
|
256
|
+
* <p>Base exception class for all service exceptions from DataPipeline service.</p>
|
|
235
257
|
*
|
|
236
258
|
*/
|
|
237
259
|
export declare class ValidatePipelineDefinitionCommand extends $Command<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
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.327.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.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|