@aws-sdk/client-data-pipeline 3.296.0 → 3.297.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/DataPipeline.d.ts +284 -264
- package/dist-types/DataPipelineClient.d.ts +24 -4
- package/dist-types/commands/ActivatePipelineCommand.d.ts +18 -2
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +19 -3
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +17 -1
- package/dist-types/commands/DescribeObjectsCommand.d.ts +40 -24
- package/dist-types/commands/DescribePipelinesCommand.d.ts +42 -26
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +19 -3
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +43 -27
- package/dist-types/commands/ListPipelinesCommand.d.ts +23 -7
- package/dist-types/commands/PollForTaskCommand.d.ts +56 -40
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +71 -55
- package/dist-types/commands/QueryObjectsCommand.d.ts +22 -6
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +21 -5
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +19 -3
- package/dist-types/commands/SetStatusCommand.d.ts +18 -2
- package/dist-types/commands/SetTaskStatusCommand.d.ts +19 -3
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +73 -57
- package/dist-types/models/DataPipelineServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +62 -0
- package/dist-types/pagination/DescribeObjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/QueryObjectsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -20,6 +20,7 @@ import { SetTaskStatusCommandInput, SetTaskStatusCommandOutput } from "./command
|
|
|
20
20
|
import { ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput } from "./commands/ValidatePipelineDefinitionCommand";
|
|
21
21
|
import { DataPipelineClient } from "./DataPipelineClient";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* <p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline
|
|
24
25
|
* handles the details of scheduling and ensuring that data dependencies are met so that your application
|
|
25
26
|
* can focus on processing the data.</p>
|
|
@@ -40,6 +41,7 @@ import { DataPipelineClient } from "./DataPipelineClient";
|
|
|
40
41
|
*/
|
|
41
42
|
export declare class DataPipeline extends DataPipelineClient {
|
|
42
43
|
/**
|
|
44
|
+
* @public
|
|
43
45
|
* <p>Validates the specified pipeline and starts processing pipeline tasks. If the pipeline does not pass validation,
|
|
44
46
|
* activation fails.</p>
|
|
45
47
|
* <p>If you need to pause the pipeline to investigate an issue with a component, such as a data source or script,
|
|
@@ -56,7 +58,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
56
58
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
57
59
|
* Authorization: AuthParams
|
|
58
60
|
*
|
|
59
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE"}
|
|
61
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE"\}
|
|
60
62
|
*
|
|
61
63
|
* </request>
|
|
62
64
|
* <response>
|
|
@@ -67,7 +69,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
67
69
|
* Content-Length: 2
|
|
68
70
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
69
71
|
*
|
|
70
|
-
* {}
|
|
72
|
+
* \{\}
|
|
71
73
|
*
|
|
72
74
|
* </response>
|
|
73
75
|
* </examples>
|
|
@@ -76,12 +78,14 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
76
78
|
activatePipeline(args: ActivatePipelineCommandInput, cb: (err: any, data?: ActivatePipelineCommandOutput) => void): void;
|
|
77
79
|
activatePipeline(args: ActivatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivatePipelineCommandOutput) => void): void;
|
|
78
80
|
/**
|
|
81
|
+
* @public
|
|
79
82
|
* <p>Adds or modifies tags for the specified pipeline.</p>
|
|
80
83
|
*/
|
|
81
84
|
addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
|
|
82
85
|
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
83
86
|
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
84
87
|
/**
|
|
88
|
+
* @public
|
|
85
89
|
* <p>Creates a new, empty pipeline. Use <a>PutPipelineDefinition</a> to populate the pipeline.</p>
|
|
86
90
|
*
|
|
87
91
|
* <examples>
|
|
@@ -95,9 +99,9 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
95
99
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
96
100
|
* Authorization: AuthParams
|
|
97
101
|
*
|
|
98
|
-
* {"name": "myPipeline",
|
|
102
|
+
* \{"name": "myPipeline",
|
|
99
103
|
* "uniqueId": "123456789",
|
|
100
|
-
* "description": "This is my first pipeline"}
|
|
104
|
+
* "description": "This is my first pipeline"\}
|
|
101
105
|
*
|
|
102
106
|
* </request>
|
|
103
107
|
*
|
|
@@ -109,7 +113,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
109
113
|
* Content-Length: 40
|
|
110
114
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
111
115
|
*
|
|
112
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE"}
|
|
116
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE"\}
|
|
113
117
|
*
|
|
114
118
|
* </response>
|
|
115
119
|
* </examples>
|
|
@@ -118,6 +122,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
118
122
|
createPipeline(args: CreatePipelineCommandInput, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
119
123
|
createPipeline(args: CreatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
120
124
|
/**
|
|
125
|
+
* @public
|
|
121
126
|
* <p>Deactivates the specified running pipeline. The pipeline is set to the <code>DEACTIVATING</code>
|
|
122
127
|
* state until the deactivation process completes.</p>
|
|
123
128
|
* <p>To resume a deactivated pipeline, use <a>ActivatePipeline</a>. By default, the pipeline resumes from the last completed execution.
|
|
@@ -127,6 +132,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
127
132
|
deactivatePipeline(args: DeactivatePipelineCommandInput, cb: (err: any, data?: DeactivatePipelineCommandOutput) => void): void;
|
|
128
133
|
deactivatePipeline(args: DeactivatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivatePipelineCommandOutput) => void): void;
|
|
129
134
|
/**
|
|
135
|
+
* @public
|
|
130
136
|
* <p>Deletes a pipeline, its pipeline definition, and its run history.
|
|
131
137
|
* AWS Data Pipeline attempts to cancel instances associated with the pipeline that are currently being processed by task runners.</p>
|
|
132
138
|
* <p>Deleting a pipeline cannot be undone. You cannot query or restore a deleted pipeline.
|
|
@@ -144,7 +150,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
144
150
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
145
151
|
* Authorization: AuthParams
|
|
146
152
|
*
|
|
147
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE"}
|
|
153
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE"\}
|
|
148
154
|
*
|
|
149
155
|
* </request>
|
|
150
156
|
*
|
|
@@ -164,6 +170,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
164
170
|
deletePipeline(args: DeletePipelineCommandInput, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
165
171
|
deletePipeline(args: DeletePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
166
172
|
/**
|
|
173
|
+
* @public
|
|
167
174
|
* <p>Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of
|
|
168
175
|
* a set of fields that define the properties of the object.</p>
|
|
169
176
|
*
|
|
@@ -178,10 +185,10 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
178
185
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
179
186
|
* Authorization: AuthParams
|
|
180
187
|
*
|
|
181
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
188
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
182
189
|
* "objectIds":
|
|
183
190
|
* ["Schedule"],
|
|
184
|
-
* "evaluateExpressions": true}
|
|
191
|
+
* "evaluateExpressions": true\}
|
|
185
192
|
*
|
|
186
193
|
* </request>
|
|
187
194
|
*
|
|
@@ -192,34 +199,34 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
192
199
|
* Content-Length: 1488
|
|
193
200
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
194
201
|
*
|
|
195
|
-
* {"hasMoreResults": false,
|
|
202
|
+
* \{"hasMoreResults": false,
|
|
196
203
|
* "pipelineObjects":
|
|
197
204
|
* [
|
|
198
|
-
* {"fields":
|
|
205
|
+
* \{"fields":
|
|
199
206
|
* [
|
|
200
|
-
* {"key": "startDateTime",
|
|
201
|
-
* "stringValue": "2012-12-12T00:00:00"},
|
|
202
|
-
* {"key": "parent",
|
|
203
|
-
* "refValue": "Default"},
|
|
204
|
-
* {"key": "@sphere",
|
|
205
|
-
* "stringValue": "COMPONENT"},
|
|
206
|
-
* {"key": "type",
|
|
207
|
-
* "stringValue": "Schedule"},
|
|
208
|
-
* {"key": "period",
|
|
209
|
-
* "stringValue": "1 hour"},
|
|
210
|
-
* {"key": "endDateTime",
|
|
211
|
-
* "stringValue": "2012-12-21T18:00:00"},
|
|
212
|
-
* {"key": "@version",
|
|
213
|
-
* "stringValue": "1"},
|
|
214
|
-
* {"key": "@status",
|
|
215
|
-
* "stringValue": "PENDING"},
|
|
216
|
-
* {"key": "@pipelineId",
|
|
217
|
-
* "stringValue": "df-06372391ZG65EXAMPLE"}
|
|
207
|
+
* \{"key": "startDateTime",
|
|
208
|
+
* "stringValue": "2012-12-12T00:00:00"\},
|
|
209
|
+
* \{"key": "parent",
|
|
210
|
+
* "refValue": "Default"\},
|
|
211
|
+
* \{"key": "@sphere",
|
|
212
|
+
* "stringValue": "COMPONENT"\},
|
|
213
|
+
* \{"key": "type",
|
|
214
|
+
* "stringValue": "Schedule"\},
|
|
215
|
+
* \{"key": "period",
|
|
216
|
+
* "stringValue": "1 hour"\},
|
|
217
|
+
* \{"key": "endDateTime",
|
|
218
|
+
* "stringValue": "2012-12-21T18:00:00"\},
|
|
219
|
+
* \{"key": "@version",
|
|
220
|
+
* "stringValue": "1"\},
|
|
221
|
+
* \{"key": "@status",
|
|
222
|
+
* "stringValue": "PENDING"\},
|
|
223
|
+
* \{"key": "@pipelineId",
|
|
224
|
+
* "stringValue": "df-06372391ZG65EXAMPLE"\}
|
|
218
225
|
* ],
|
|
219
226
|
* "id": "Schedule",
|
|
220
|
-
* "name": "Schedule"}
|
|
227
|
+
* "name": "Schedule"\}
|
|
221
228
|
* ]
|
|
222
|
-
* }
|
|
229
|
+
* \}
|
|
223
230
|
*
|
|
224
231
|
* </response>
|
|
225
232
|
* </examples>
|
|
@@ -228,6 +235,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
228
235
|
describeObjects(args: DescribeObjectsCommandInput, cb: (err: any, data?: DescribeObjectsCommandOutput) => void): void;
|
|
229
236
|
describeObjects(args: DescribeObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObjectsCommandOutput) => void): void;
|
|
230
237
|
/**
|
|
238
|
+
* @public
|
|
231
239
|
* <p>Retrieves metadata about one or more pipelines. The information retrieved includes the name of the pipeline, the pipeline identifier,
|
|
232
240
|
* its current state, and the user account that owns the pipeline. Using account credentials, you can retrieve metadata about pipelines
|
|
233
241
|
* that you or your IAM users have created. If you are using an IAM user account, you can retrieve metadata about only those pipelines
|
|
@@ -245,9 +253,9 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
245
253
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
246
254
|
* Authorization: AuthParams
|
|
247
255
|
*
|
|
248
|
-
* {"pipelineIds":
|
|
256
|
+
* \{"pipelineIds":
|
|
249
257
|
* ["df-08785951KAKJEXAMPLE"]
|
|
250
|
-
* }
|
|
258
|
+
* \}
|
|
251
259
|
*
|
|
252
260
|
* </request>
|
|
253
261
|
*
|
|
@@ -258,36 +266,36 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
258
266
|
* Content-Length: 767
|
|
259
267
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
260
268
|
*
|
|
261
|
-
* {"pipelineDescriptionList":
|
|
269
|
+
* \{"pipelineDescriptionList":
|
|
262
270
|
* [
|
|
263
|
-
* {"description": "This is my first pipeline",
|
|
271
|
+
* \{"description": "This is my first pipeline",
|
|
264
272
|
* "fields":
|
|
265
273
|
* [
|
|
266
|
-
* {"key": "@pipelineState",
|
|
267
|
-
* "stringValue": "SCHEDULED"},
|
|
268
|
-
* {"key": "description",
|
|
269
|
-
* "stringValue": "This is my first pipeline"},
|
|
270
|
-
* {"key": "name",
|
|
271
|
-
* "stringValue": "myPipeline"},
|
|
272
|
-
* {"key": "@creationTime",
|
|
273
|
-
* "stringValue": "2012-12-13T01:24:06"},
|
|
274
|
-
* {"key": "@id",
|
|
275
|
-
* "stringValue": "df-0937003356ZJEXAMPLE"},
|
|
276
|
-
* {"key": "@sphere",
|
|
277
|
-
* "stringValue": "PIPELINE"},
|
|
278
|
-
* {"key": "@version",
|
|
279
|
-
* "stringValue": "1"},
|
|
280
|
-
* {"key": "@userId",
|
|
281
|
-
* "stringValue": "924374875933"},
|
|
282
|
-
* {"key": "@accountId",
|
|
283
|
-
* "stringValue": "924374875933"},
|
|
284
|
-
* {"key": "uniqueId",
|
|
285
|
-
* "stringValue": "1234567890"}
|
|
274
|
+
* \{"key": "@pipelineState",
|
|
275
|
+
* "stringValue": "SCHEDULED"\},
|
|
276
|
+
* \{"key": "description",
|
|
277
|
+
* "stringValue": "This is my first pipeline"\},
|
|
278
|
+
* \{"key": "name",
|
|
279
|
+
* "stringValue": "myPipeline"\},
|
|
280
|
+
* \{"key": "@creationTime",
|
|
281
|
+
* "stringValue": "2012-12-13T01:24:06"\},
|
|
282
|
+
* \{"key": "@id",
|
|
283
|
+
* "stringValue": "df-0937003356ZJEXAMPLE"\},
|
|
284
|
+
* \{"key": "@sphere",
|
|
285
|
+
* "stringValue": "PIPELINE"\},
|
|
286
|
+
* \{"key": "@version",
|
|
287
|
+
* "stringValue": "1"\},
|
|
288
|
+
* \{"key": "@userId",
|
|
289
|
+
* "stringValue": "924374875933"\},
|
|
290
|
+
* \{"key": "@accountId",
|
|
291
|
+
* "stringValue": "924374875933"\},
|
|
292
|
+
* \{"key": "uniqueId",
|
|
293
|
+
* "stringValue": "1234567890"\}
|
|
286
294
|
* ],
|
|
287
295
|
* "name": "myPipeline",
|
|
288
|
-
* "pipelineId": "df-0937003356ZJEXAMPLE"}
|
|
296
|
+
* "pipelineId": "df-0937003356ZJEXAMPLE"\}
|
|
289
297
|
* ]
|
|
290
|
-
* }
|
|
298
|
+
* \}
|
|
291
299
|
* </response>
|
|
292
300
|
* </examples>
|
|
293
301
|
*/
|
|
@@ -295,6 +303,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
295
303
|
describePipelines(args: DescribePipelinesCommandInput, cb: (err: any, data?: DescribePipelinesCommandOutput) => void): void;
|
|
296
304
|
describePipelines(args: DescribePipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePipelinesCommandOutput) => void): void;
|
|
297
305
|
/**
|
|
306
|
+
* @public
|
|
298
307
|
* <p>Task runners call <code>EvaluateExpression</code> to evaluate a string in the context of the specified object.
|
|
299
308
|
* For example, a task runner can evaluate SQL queries stored in Amazon S3.</p>
|
|
300
309
|
*
|
|
@@ -309,9 +318,9 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
309
318
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
310
319
|
* Authorization: AuthParams
|
|
311
320
|
*
|
|
312
|
-
* {"pipelineId": "df-08785951KAKJEXAMPLE",
|
|
321
|
+
* \{"pipelineId": "df-08785951KAKJEXAMPLE",
|
|
313
322
|
* "objectId": "Schedule",
|
|
314
|
-
* "expression": "Transform started at
|
|
323
|
+
* "expression": "Transform started at #\{startDateTime\} and finished at #\{endDateTime\}"\}
|
|
315
324
|
*
|
|
316
325
|
* </request>
|
|
317
326
|
*
|
|
@@ -323,7 +332,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
323
332
|
* Content-Length: 103
|
|
324
333
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
325
334
|
*
|
|
326
|
-
* {"evaluatedExpression": "Transform started at 2012-12-12T00:00:00 and finished at 2012-12-21T18:00:00"}
|
|
335
|
+
* \{"evaluatedExpression": "Transform started at 2012-12-12T00:00:00 and finished at 2012-12-21T18:00:00"\}
|
|
327
336
|
* </response>
|
|
328
337
|
* </examples>
|
|
329
338
|
*/
|
|
@@ -331,6 +340,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
331
340
|
evaluateExpression(args: EvaluateExpressionCommandInput, cb: (err: any, data?: EvaluateExpressionCommandOutput) => void): void;
|
|
332
341
|
evaluateExpression(args: EvaluateExpressionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EvaluateExpressionCommandOutput) => void): void;
|
|
333
342
|
/**
|
|
343
|
+
* @public
|
|
334
344
|
* <p>Gets the definition of the specified pipeline. You can call <code>GetPipelineDefinition</code> to retrieve
|
|
335
345
|
* the pipeline definition that you provided using <a>PutPipelineDefinition</a>.</p>
|
|
336
346
|
*
|
|
@@ -346,7 +356,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
346
356
|
* Authorization: AuthParams
|
|
347
357
|
*
|
|
348
358
|
*
|
|
349
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE"}
|
|
359
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE"\}
|
|
350
360
|
*
|
|
351
361
|
* </request>
|
|
352
362
|
* <response>
|
|
@@ -356,43 +366,43 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
356
366
|
* Content-Length: 890
|
|
357
367
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
358
368
|
*
|
|
359
|
-
* {"pipelineObjects":
|
|
369
|
+
* \{"pipelineObjects":
|
|
360
370
|
* [
|
|
361
|
-
* {"fields":
|
|
371
|
+
* \{"fields":
|
|
362
372
|
* [
|
|
363
|
-
* {"key": "workerGroup",
|
|
364
|
-
* "stringValue": "workerGroup"}
|
|
373
|
+
* \{"key": "workerGroup",
|
|
374
|
+
* "stringValue": "workerGroup"\}
|
|
365
375
|
* ],
|
|
366
376
|
* "id": "Default",
|
|
367
|
-
* "name": "Default"},
|
|
368
|
-
* {"fields":
|
|
377
|
+
* "name": "Default"\},
|
|
378
|
+
* \{"fields":
|
|
369
379
|
* [
|
|
370
|
-
* {"key": "startDateTime",
|
|
371
|
-
* "stringValue": "2012-09-25T17:00:00"},
|
|
372
|
-
* {"key": "type",
|
|
373
|
-
* "stringValue": "Schedule"},
|
|
374
|
-
* {"key": "period",
|
|
375
|
-
* "stringValue": "1 hour"},
|
|
376
|
-
* {"key": "endDateTime",
|
|
377
|
-
* "stringValue": "2012-09-25T18:00:00"}
|
|
380
|
+
* \{"key": "startDateTime",
|
|
381
|
+
* "stringValue": "2012-09-25T17:00:00"\},
|
|
382
|
+
* \{"key": "type",
|
|
383
|
+
* "stringValue": "Schedule"\},
|
|
384
|
+
* \{"key": "period",
|
|
385
|
+
* "stringValue": "1 hour"\},
|
|
386
|
+
* \{"key": "endDateTime",
|
|
387
|
+
* "stringValue": "2012-09-25T18:00:00"\}
|
|
378
388
|
* ],
|
|
379
389
|
* "id": "Schedule",
|
|
380
|
-
* "name": "Schedule"},
|
|
381
|
-
* {"fields":
|
|
390
|
+
* "name": "Schedule"\},
|
|
391
|
+
* \{"fields":
|
|
382
392
|
* [
|
|
383
|
-
* {"key": "schedule",
|
|
384
|
-
* "refValue": "Schedule"},
|
|
385
|
-
* {"key": "command",
|
|
386
|
-
* "stringValue": "echo hello"},
|
|
387
|
-
* {"key": "parent",
|
|
388
|
-
* "refValue": "Default"},
|
|
389
|
-
* {"key": "type",
|
|
390
|
-
* "stringValue": "ShellCommandActivity"}
|
|
393
|
+
* \{"key": "schedule",
|
|
394
|
+
* "refValue": "Schedule"\},
|
|
395
|
+
* \{"key": "command",
|
|
396
|
+
* "stringValue": "echo hello"\},
|
|
397
|
+
* \{"key": "parent",
|
|
398
|
+
* "refValue": "Default"\},
|
|
399
|
+
* \{"key": "type",
|
|
400
|
+
* "stringValue": "ShellCommandActivity"\}
|
|
391
401
|
* ],
|
|
392
402
|
* "id": "SayHello",
|
|
393
|
-
* "name": "SayHello"}
|
|
403
|
+
* "name": "SayHello"\}
|
|
394
404
|
* ]
|
|
395
|
-
* }
|
|
405
|
+
* \}
|
|
396
406
|
*
|
|
397
407
|
* </response>
|
|
398
408
|
* </examples>
|
|
@@ -401,6 +411,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
401
411
|
getPipelineDefinition(args: GetPipelineDefinitionCommandInput, cb: (err: any, data?: GetPipelineDefinitionCommandOutput) => void): void;
|
|
402
412
|
getPipelineDefinition(args: GetPipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPipelineDefinitionCommandOutput) => void): void;
|
|
403
413
|
/**
|
|
414
|
+
* @public
|
|
404
415
|
* <p>Lists the pipeline identifiers for all active pipelines that you have permission to access.</p>
|
|
405
416
|
*
|
|
406
417
|
* <examples>
|
|
@@ -414,7 +425,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
414
425
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
415
426
|
* Authorization: AuthParams
|
|
416
427
|
*
|
|
417
|
-
* {}</request>
|
|
428
|
+
* \{\}</request>
|
|
418
429
|
*
|
|
419
430
|
* <response>
|
|
420
431
|
*
|
|
@@ -424,20 +435,21 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
424
435
|
* Content-Length: 39
|
|
425
436
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
426
437
|
*
|
|
427
|
-
* {"PipelineIdList":
|
|
438
|
+
* \{"PipelineIdList":
|
|
428
439
|
* [
|
|
429
|
-
* {"id": "df-08785951KAKJEXAMPLE",
|
|
430
|
-
* "name": "MyPipeline"},
|
|
431
|
-
* {"id": "df-08662578ISYEXAMPLE",
|
|
432
|
-
* "name": "MySecondPipeline"}
|
|
440
|
+
* \{"id": "df-08785951KAKJEXAMPLE",
|
|
441
|
+
* "name": "MyPipeline"\},
|
|
442
|
+
* \{"id": "df-08662578ISYEXAMPLE",
|
|
443
|
+
* "name": "MySecondPipeline"\}
|
|
433
444
|
* ]
|
|
434
|
-
* }</response>
|
|
445
|
+
* \}</response>
|
|
435
446
|
* </examples>
|
|
436
447
|
*/
|
|
437
448
|
listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
|
|
438
449
|
listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
439
450
|
listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
440
451
|
/**
|
|
452
|
+
* @public
|
|
441
453
|
* <p>Task runners call <code>PollForTask</code> to receive a task to perform from AWS Data Pipeline. The task runner specifies which tasks it can perform
|
|
442
454
|
* by setting a value for the <code>workerGroup</code> parameter. The task returned can come from any of the pipelines that
|
|
443
455
|
* match the <code>workerGroup</code> value passed in by the task runner and that was launched using the IAM user credentials
|
|
@@ -459,8 +471,8 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
459
471
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
460
472
|
* Authorization: AuthParams
|
|
461
473
|
*
|
|
462
|
-
* {"workerGroup": "MyworkerGroup",
|
|
463
|
-
* "hostname": "example.com"}
|
|
474
|
+
* \{"workerGroup": "MyworkerGroup",
|
|
475
|
+
* "hostname": "example.com"\}
|
|
464
476
|
*
|
|
465
477
|
* </request>
|
|
466
478
|
*
|
|
@@ -471,49 +483,49 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
471
483
|
* Content-Length: 39
|
|
472
484
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
473
485
|
*
|
|
474
|
-
* {"taskObject":
|
|
475
|
-
* {"attemptId": "@SayHello_2012-12-12T00:00:00_Attempt=1",
|
|
486
|
+
* \{"taskObject":
|
|
487
|
+
* \{"attemptId": "@SayHello_2012-12-12T00:00:00_Attempt=1",
|
|
476
488
|
* "objects":
|
|
477
|
-
* {"@SayHello_2012-12-12T00:00:00_Attempt=1":
|
|
478
|
-
* {"fields":
|
|
489
|
+
* \{"@SayHello_2012-12-12T00:00:00_Attempt=1":
|
|
490
|
+
* \{"fields":
|
|
479
491
|
* [
|
|
480
|
-
* {"key": "@componentParent",
|
|
481
|
-
* "refValue": "SayHello"},
|
|
482
|
-
* {"key": "@scheduledStartTime",
|
|
483
|
-
* "stringValue": "2012-12-12T00:00:00"},
|
|
484
|
-
* {"key": "parent",
|
|
485
|
-
* "refValue": "SayHello"},
|
|
486
|
-
* {"key": "@sphere",
|
|
487
|
-
* "stringValue": "ATTEMPT"},
|
|
488
|
-
* {"key": "workerGroup",
|
|
489
|
-
* "stringValue": "workerGroup"},
|
|
490
|
-
* {"key": "@instanceParent",
|
|
491
|
-
* "refValue": "@SayHello_2012-12-12T00:00:00"},
|
|
492
|
-
* {"key": "type",
|
|
493
|
-
* "stringValue": "ShellCommandActivity"},
|
|
494
|
-
* {"key": "@status",
|
|
495
|
-
* "stringValue": "WAITING_FOR_RUNNER"},
|
|
496
|
-
* {"key": "@version",
|
|
497
|
-
* "stringValue": "1"},
|
|
498
|
-
* {"key": "schedule",
|
|
499
|
-
* "refValue": "Schedule"},
|
|
500
|
-
* {"key": "@actualStartTime",
|
|
501
|
-
* "stringValue": "2012-12-13T01:40:50"},
|
|
502
|
-
* {"key": "command",
|
|
503
|
-
* "stringValue": "echo hello"},
|
|
504
|
-
* {"key": "@scheduledEndTime",
|
|
505
|
-
* "stringValue": "2012-12-12T01:00:00"},
|
|
506
|
-
* {"key": "@activeInstances",
|
|
507
|
-
* "refValue": "@SayHello_2012-12-12T00:00:00"},
|
|
508
|
-
* {"key": "@pipelineId",
|
|
509
|
-
* "stringValue": "df-0937003356ZJEXAMPLE"}
|
|
492
|
+
* \{"key": "@componentParent",
|
|
493
|
+
* "refValue": "SayHello"\},
|
|
494
|
+
* \{"key": "@scheduledStartTime",
|
|
495
|
+
* "stringValue": "2012-12-12T00:00:00"\},
|
|
496
|
+
* \{"key": "parent",
|
|
497
|
+
* "refValue": "SayHello"\},
|
|
498
|
+
* \{"key": "@sphere",
|
|
499
|
+
* "stringValue": "ATTEMPT"\},
|
|
500
|
+
* \{"key": "workerGroup",
|
|
501
|
+
* "stringValue": "workerGroup"\},
|
|
502
|
+
* \{"key": "@instanceParent",
|
|
503
|
+
* "refValue": "@SayHello_2012-12-12T00:00:00"\},
|
|
504
|
+
* \{"key": "type",
|
|
505
|
+
* "stringValue": "ShellCommandActivity"\},
|
|
506
|
+
* \{"key": "@status",
|
|
507
|
+
* "stringValue": "WAITING_FOR_RUNNER"\},
|
|
508
|
+
* \{"key": "@version",
|
|
509
|
+
* "stringValue": "1"\},
|
|
510
|
+
* \{"key": "schedule",
|
|
511
|
+
* "refValue": "Schedule"\},
|
|
512
|
+
* \{"key": "@actualStartTime",
|
|
513
|
+
* "stringValue": "2012-12-13T01:40:50"\},
|
|
514
|
+
* \{"key": "command",
|
|
515
|
+
* "stringValue": "echo hello"\},
|
|
516
|
+
* \{"key": "@scheduledEndTime",
|
|
517
|
+
* "stringValue": "2012-12-12T01:00:00"\},
|
|
518
|
+
* \{"key": "@activeInstances",
|
|
519
|
+
* "refValue": "@SayHello_2012-12-12T00:00:00"\},
|
|
520
|
+
* \{"key": "@pipelineId",
|
|
521
|
+
* "stringValue": "df-0937003356ZJEXAMPLE"\}
|
|
510
522
|
* ],
|
|
511
523
|
* "id": "@SayHello_2012-12-12T00:00:00_Attempt=1",
|
|
512
|
-
* "name": "@SayHello_2012-12-12T00:00:00_Attempt=1"}
|
|
513
|
-
* },
|
|
524
|
+
* "name": "@SayHello_2012-12-12T00:00:00_Attempt=1"\}
|
|
525
|
+
* \},
|
|
514
526
|
* "pipelineId": "df-0937003356ZJEXAMPLE",
|
|
515
|
-
* "taskId": "2xaM4wRs5zOsIH+g9U3oVHfAgAlbSqU6XduncB0HhZ3xMnmvfePZPn4dIbYXHyWyRK+cU15MqDHwdrvftx/4wv+sNS4w34vJfv7QA9aOoOazW28l1GYSb2ZRR0N0paiQp+d1MhSKo10hOTWOsVK5S5Lnx9Qm6omFgXHyIvZRIvTlrQMpr1xuUrflyGOfbFOGpOLpvPE172MYdqpZKnbSS4TcuqgQKSWV2833fEubI57DPOP7ghWa2TcYeSIv4pdLYG53fTuwfbnbdc98g2LNUQzSVhSnt7BoqyNwht2aQ6b/UHg9A80+KVpuXuqmz3m1MXwHFgxjdmuesXNOrrlGpeLCcRWD+aGo0RN1NqhQRzNAig8V4GlaPTQzMsRCljKqvrIyAoP3Tt2XEGsHkkQo12rEX8Z90957XX2qKRwhruwYzqGkSLWjINoLdAxUJdpRXRc5DJTrBd3D5mdzn7kY1l7NEh4kFHJDt3Cx4Z3Mk8MYCACyCk/CEyy9DwuPi66cLz0NBcgbCM5LKjTBOwo1m+am+pvM1kSposE9FPP1+RFGb8k6jQBTJx3TRz1yKilnGXQTZ5xvdOFpJrklIT0OXP1MG3+auM9FlJA+1dX90QoNJE5z7axmK//MOGXUdkqFe2kiDkorqjxwDvc0Js9pVKfKvAmW8YqUbmI9l0ERpWCXXnLVHNmPWz3jaPY+OBAmuJWDmxB/Z8p94aEDg4BVXQ7LvsKQ3DLYhaB7yJ390CJT+i0mm+EBqY60V6YikPSWDFrYQ/NPi2b1DgE19mX8zHqw8qprIl4yh1Ckx2Iige4En/N5ktOoIxnASxAw/TzcE2skxdw5KlHDF+UTj71m16CR/dIaKlXijlfNlNzUBo/bNSadCQn3G5NoO501wPKI:XO50TgDNyo8EXAMPLE/g==:1"}
|
|
516
|
-
* }
|
|
527
|
+
* "taskId": "2xaM4wRs5zOsIH+g9U3oVHfAgAlbSqU6XduncB0HhZ3xMnmvfePZPn4dIbYXHyWyRK+cU15MqDHwdrvftx/4wv+sNS4w34vJfv7QA9aOoOazW28l1GYSb2ZRR0N0paiQp+d1MhSKo10hOTWOsVK5S5Lnx9Qm6omFgXHyIvZRIvTlrQMpr1xuUrflyGOfbFOGpOLpvPE172MYdqpZKnbSS4TcuqgQKSWV2833fEubI57DPOP7ghWa2TcYeSIv4pdLYG53fTuwfbnbdc98g2LNUQzSVhSnt7BoqyNwht2aQ6b/UHg9A80+KVpuXuqmz3m1MXwHFgxjdmuesXNOrrlGpeLCcRWD+aGo0RN1NqhQRzNAig8V4GlaPTQzMsRCljKqvrIyAoP3Tt2XEGsHkkQo12rEX8Z90957XX2qKRwhruwYzqGkSLWjINoLdAxUJdpRXRc5DJTrBd3D5mdzn7kY1l7NEh4kFHJDt3Cx4Z3Mk8MYCACyCk/CEyy9DwuPi66cLz0NBcgbCM5LKjTBOwo1m+am+pvM1kSposE9FPP1+RFGb8k6jQBTJx3TRz1yKilnGXQTZ5xvdOFpJrklIT0OXP1MG3+auM9FlJA+1dX90QoNJE5z7axmK//MOGXUdkqFe2kiDkorqjxwDvc0Js9pVKfKvAmW8YqUbmI9l0ERpWCXXnLVHNmPWz3jaPY+OBAmuJWDmxB/Z8p94aEDg4BVXQ7LvsKQ3DLYhaB7yJ390CJT+i0mm+EBqY60V6YikPSWDFrYQ/NPi2b1DgE19mX8zHqw8qprIl4yh1Ckx2Iige4En/N5ktOoIxnASxAw/TzcE2skxdw5KlHDF+UTj71m16CR/dIaKlXijlfNlNzUBo/bNSadCQn3G5NoO501wPKI:XO50TgDNyo8EXAMPLE/g==:1"\}
|
|
528
|
+
* \}
|
|
517
529
|
*
|
|
518
530
|
* </response>
|
|
519
531
|
* </examples>
|
|
@@ -522,6 +534,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
522
534
|
pollForTask(args: PollForTaskCommandInput, cb: (err: any, data?: PollForTaskCommandOutput) => void): void;
|
|
523
535
|
pollForTask(args: PollForTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForTaskCommandOutput) => void): void;
|
|
524
536
|
/**
|
|
537
|
+
* @public
|
|
525
538
|
* <p>Adds tasks, schedules, and preconditions to the specified pipeline. You can use <code>PutPipelineDefinition</code> to populate a new pipeline.</p>
|
|
526
539
|
* <p>
|
|
527
540
|
* <code>PutPipelineDefinition</code> also validates the configuration as it adds it to the pipeline. Changes to the pipeline are saved unless one
|
|
@@ -552,47 +565,47 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
552
565
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
553
566
|
* Authorization: AuthParams
|
|
554
567
|
*
|
|
555
|
-
* {"pipelineId": "df-0937003356ZJEXAMPLE",
|
|
568
|
+
* \{"pipelineId": "df-0937003356ZJEXAMPLE",
|
|
556
569
|
* "pipelineObjects":
|
|
557
570
|
* [
|
|
558
|
-
* {"id": "Default",
|
|
571
|
+
* \{"id": "Default",
|
|
559
572
|
* "name": "Default",
|
|
560
573
|
* "fields":
|
|
561
574
|
* [
|
|
562
|
-
* {"key": "workerGroup",
|
|
563
|
-
* "stringValue": "workerGroup"}
|
|
575
|
+
* \{"key": "workerGroup",
|
|
576
|
+
* "stringValue": "workerGroup"\}
|
|
564
577
|
* ]
|
|
565
|
-
* },
|
|
566
|
-
* {"id": "Schedule",
|
|
578
|
+
* \},
|
|
579
|
+
* \{"id": "Schedule",
|
|
567
580
|
* "name": "Schedule",
|
|
568
581
|
* "fields":
|
|
569
582
|
* [
|
|
570
|
-
* {"key": "startDateTime",
|
|
571
|
-
* "stringValue": "2012-12-12T00:00:00"},
|
|
572
|
-
* {"key": "type",
|
|
573
|
-
* "stringValue": "Schedule"},
|
|
574
|
-
* {"key": "period",
|
|
575
|
-
* "stringValue": "1 hour"},
|
|
576
|
-
* {"key": "endDateTime",
|
|
577
|
-
* "stringValue": "2012-12-21T18:00:00"}
|
|
583
|
+
* \{"key": "startDateTime",
|
|
584
|
+
* "stringValue": "2012-12-12T00:00:00"\},
|
|
585
|
+
* \{"key": "type",
|
|
586
|
+
* "stringValue": "Schedule"\},
|
|
587
|
+
* \{"key": "period",
|
|
588
|
+
* "stringValue": "1 hour"\},
|
|
589
|
+
* \{"key": "endDateTime",
|
|
590
|
+
* "stringValue": "2012-12-21T18:00:00"\}
|
|
578
591
|
* ]
|
|
579
|
-
* },
|
|
580
|
-
* {"id": "SayHello",
|
|
592
|
+
* \},
|
|
593
|
+
* \{"id": "SayHello",
|
|
581
594
|
* "name": "SayHello",
|
|
582
595
|
* "fields":
|
|
583
596
|
* [
|
|
584
|
-
* {"key": "type",
|
|
585
|
-
* "stringValue": "ShellCommandActivity"},
|
|
586
|
-
* {"key": "command",
|
|
587
|
-
* "stringValue": "echo hello"},
|
|
588
|
-
* {"key": "parent",
|
|
589
|
-
* "refValue": "Default"},
|
|
590
|
-
* {"key": "schedule",
|
|
591
|
-
* "refValue": "Schedule"}
|
|
597
|
+
* \{"key": "type",
|
|
598
|
+
* "stringValue": "ShellCommandActivity"\},
|
|
599
|
+
* \{"key": "command",
|
|
600
|
+
* "stringValue": "echo hello"\},
|
|
601
|
+
* \{"key": "parent",
|
|
602
|
+
* "refValue": "Default"\},
|
|
603
|
+
* \{"key": "schedule",
|
|
604
|
+
* "refValue": "Schedule"\}
|
|
592
605
|
* ]
|
|
593
|
-
* }
|
|
606
|
+
* \}
|
|
594
607
|
* ]
|
|
595
|
-
* }
|
|
608
|
+
* \}
|
|
596
609
|
*
|
|
597
610
|
* </request>
|
|
598
611
|
* <response>
|
|
@@ -603,7 +616,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
603
616
|
* Content-Length: 18
|
|
604
617
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
605
618
|
*
|
|
606
|
-
* {"errored": false}
|
|
619
|
+
* \{"errored": false\}
|
|
607
620
|
*
|
|
608
621
|
*
|
|
609
622
|
* </response>
|
|
@@ -623,48 +636,48 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
623
636
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
624
637
|
* Authorization: AuthParams
|
|
625
638
|
*
|
|
626
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
639
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
627
640
|
* "pipelineObjects":
|
|
628
641
|
* [
|
|
629
|
-
* {"id": "Default",
|
|
642
|
+
* \{"id": "Default",
|
|
630
643
|
* "name": "Default",
|
|
631
644
|
* "fields":
|
|
632
645
|
* [
|
|
633
|
-
* {"key": "workerGroup",
|
|
634
|
-
* "stringValue": ""}
|
|
646
|
+
* \{"key": "workerGroup",
|
|
647
|
+
* "stringValue": ""\}
|
|
635
648
|
* ]
|
|
636
|
-
* },
|
|
637
|
-
* {"id": "Schedule",
|
|
649
|
+
* \},
|
|
650
|
+
* \{"id": "Schedule",
|
|
638
651
|
* "name": "Schedule",
|
|
639
652
|
* "fields":
|
|
640
653
|
* [
|
|
641
|
-
* {"key": "startDateTime",
|
|
642
|
-
* "stringValue": "2012-09-25T17:00:00"},
|
|
643
|
-
* {"key": "type",
|
|
644
|
-
* "stringValue": "Schedule"},
|
|
645
|
-
* {"key": "period",
|
|
646
|
-
* "stringValue": "1 hour"},
|
|
647
|
-
* {"key": "endDateTime",
|
|
648
|
-
* "stringValue": "2012-09-25T18:00:00"}
|
|
654
|
+
* \{"key": "startDateTime",
|
|
655
|
+
* "stringValue": "2012-09-25T17:00:00"\},
|
|
656
|
+
* \{"key": "type",
|
|
657
|
+
* "stringValue": "Schedule"\},
|
|
658
|
+
* \{"key": "period",
|
|
659
|
+
* "stringValue": "1 hour"\},
|
|
660
|
+
* \{"key": "endDateTime",
|
|
661
|
+
* "stringValue": "2012-09-25T18:00:00"\}
|
|
649
662
|
* ]
|
|
650
|
-
* },
|
|
651
|
-
* {"id": "SayHello",
|
|
663
|
+
* \},
|
|
664
|
+
* \{"id": "SayHello",
|
|
652
665
|
* "name": "SayHello",
|
|
653
666
|
* "fields":
|
|
654
667
|
* [
|
|
655
|
-
* {"key": "type",
|
|
656
|
-
* "stringValue": "ShellCommandActivity"},
|
|
657
|
-
* {"key": "command",
|
|
658
|
-
* "stringValue": "echo hello"},
|
|
659
|
-
* {"key": "parent",
|
|
660
|
-
* "refValue": "Default"},
|
|
661
|
-
* {"key": "schedule",
|
|
662
|
-
* "refValue": "Schedule"}
|
|
668
|
+
* \{"key": "type",
|
|
669
|
+
* "stringValue": "ShellCommandActivity"\},
|
|
670
|
+
* \{"key": "command",
|
|
671
|
+
* "stringValue": "echo hello"\},
|
|
672
|
+
* \{"key": "parent",
|
|
673
|
+
* "refValue": "Default"\},
|
|
674
|
+
* \{"key": "schedule",
|
|
675
|
+
* "refValue": "Schedule"\}
|
|
663
676
|
*
|
|
664
677
|
* ]
|
|
665
|
-
* }
|
|
678
|
+
* \}
|
|
666
679
|
* ]
|
|
667
|
-
* }
|
|
680
|
+
* \}
|
|
668
681
|
*
|
|
669
682
|
* </request>
|
|
670
683
|
* <response>
|
|
@@ -675,8 +688,8 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
675
688
|
* Content-Length: 18
|
|
676
689
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
677
690
|
*
|
|
678
|
-
* {"__type": "com.amazon.setl.webservice#InvalidRequestException",
|
|
679
|
-
* "message": "Pipeline definition has errors: Could not save the pipeline definition due to FATAL errors: [com.amazon.setl.webservice.ValidationError@108d7ea9] Please call Validate to validate your pipeline"}
|
|
691
|
+
* \{"__type": "com.amazon.setl.webservice#InvalidRequestException",
|
|
692
|
+
* "message": "Pipeline definition has errors: Could not save the pipeline definition due to FATAL errors: [com.amazon.setl.webservice.ValidationError@108d7ea9] Please call Validate to validate your pipeline"\}
|
|
680
693
|
*
|
|
681
694
|
*
|
|
682
695
|
* </response>
|
|
@@ -687,6 +700,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
687
700
|
putPipelineDefinition(args: PutPipelineDefinitionCommandInput, cb: (err: any, data?: PutPipelineDefinitionCommandOutput) => void): void;
|
|
688
701
|
putPipelineDefinition(args: PutPipelineDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPipelineDefinitionCommandOutput) => void): void;
|
|
689
702
|
/**
|
|
703
|
+
* @public
|
|
690
704
|
* <p>Queries the specified pipeline for the names of objects that match the specified set of conditions.</p>
|
|
691
705
|
*
|
|
692
706
|
* <examples>
|
|
@@ -700,15 +714,15 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
700
714
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
701
715
|
* Authorization: AuthParams
|
|
702
716
|
*
|
|
703
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
717
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
704
718
|
* "query":
|
|
705
|
-
* {"selectors":
|
|
719
|
+
* \{"selectors":
|
|
706
720
|
* [
|
|
707
721
|
* ]
|
|
708
|
-
* },
|
|
722
|
+
* \},
|
|
709
723
|
* "sphere": "INSTANCE",
|
|
710
724
|
* "marker": "",
|
|
711
|
-
* "limit": 10}
|
|
725
|
+
* "limit": 10\}
|
|
712
726
|
*
|
|
713
727
|
* </request>
|
|
714
728
|
*
|
|
@@ -720,10 +734,10 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
720
734
|
* Content-Length: 72
|
|
721
735
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
722
736
|
*
|
|
723
|
-
* {"hasMoreResults": false,
|
|
737
|
+
* \{"hasMoreResults": false,
|
|
724
738
|
* "ids":
|
|
725
739
|
* ["@SayHello_1_2012-09-25T17:00:00"]
|
|
726
|
-
* }
|
|
740
|
+
* \}
|
|
727
741
|
* </response>
|
|
728
742
|
* </examples>
|
|
729
743
|
*/
|
|
@@ -731,12 +745,14 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
731
745
|
queryObjects(args: QueryObjectsCommandInput, cb: (err: any, data?: QueryObjectsCommandOutput) => void): void;
|
|
732
746
|
queryObjects(args: QueryObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryObjectsCommandOutput) => void): void;
|
|
733
747
|
/**
|
|
748
|
+
* @public
|
|
734
749
|
* <p>Removes existing tags from the specified pipeline.</p>
|
|
735
750
|
*/
|
|
736
751
|
removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
|
|
737
752
|
removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
738
753
|
removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
739
754
|
/**
|
|
755
|
+
* @public
|
|
740
756
|
* <p>Task runners call <code>ReportTaskProgress</code> when assigned a task to acknowledge that it has the task. If the web service does not
|
|
741
757
|
* receive this acknowledgement within 2 minutes, it assigns the task in a subsequent <a>PollForTask</a> call. After this initial acknowledgement,
|
|
742
758
|
* the task runner only needs to report progress every 15 minutes to maintain its ownership of the task. You can change this reporting time
|
|
@@ -754,13 +770,13 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
754
770
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
755
771
|
* Authorization: AuthParams
|
|
756
772
|
*
|
|
757
|
-
* {"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
|
|
773
|
+
* \{"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
|
|
758
774
|
* "fields":
|
|
759
775
|
* [
|
|
760
|
-
* {"key": "percentComplete",
|
|
761
|
-
* "stringValue": "50"}
|
|
776
|
+
* \{"key": "percentComplete",
|
|
777
|
+
* "stringValue": "50"\}
|
|
762
778
|
* ]
|
|
763
|
-
* }
|
|
779
|
+
* \}
|
|
764
780
|
*
|
|
765
781
|
* </request>
|
|
766
782
|
*
|
|
@@ -771,7 +787,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
771
787
|
* Content-Length: 18
|
|
772
788
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
773
789
|
*
|
|
774
|
-
* {"canceled": false}
|
|
790
|
+
* \{"canceled": false\}
|
|
775
791
|
*
|
|
776
792
|
* </response>
|
|
777
793
|
* </examples>
|
|
@@ -780,6 +796,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
780
796
|
reportTaskProgress(args: ReportTaskProgressCommandInput, cb: (err: any, data?: ReportTaskProgressCommandOutput) => void): void;
|
|
781
797
|
reportTaskProgress(args: ReportTaskProgressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReportTaskProgressCommandOutput) => void): void;
|
|
782
798
|
/**
|
|
799
|
+
* @public
|
|
783
800
|
* <p>Task runners call <code>ReportTaskRunnerHeartbeat</code> every 15 minutes to indicate that they are operational.
|
|
784
801
|
* If the AWS Data Pipeline Task Runner is launched on a resource managed by AWS Data Pipeline, the web service can use
|
|
785
802
|
* this call to detect when the task runner application has failed and restart a new instance.</p>
|
|
@@ -795,9 +812,9 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
795
812
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
796
813
|
* Authorization: AuthParams
|
|
797
814
|
*
|
|
798
|
-
* {"taskrunnerId": "1234567890",
|
|
815
|
+
* \{"taskrunnerId": "1234567890",
|
|
799
816
|
* "workerGroup": "wg-12345",
|
|
800
|
-
* "hostname": "example.com"}
|
|
817
|
+
* "hostname": "example.com"\}
|
|
801
818
|
*
|
|
802
819
|
* </request>
|
|
803
820
|
*
|
|
@@ -809,7 +826,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
809
826
|
* Content-Length: 20
|
|
810
827
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
811
828
|
*
|
|
812
|
-
* {"terminate": false}
|
|
829
|
+
* \{"terminate": false\}
|
|
813
830
|
*
|
|
814
831
|
* </response>
|
|
815
832
|
* </examples>
|
|
@@ -818,6 +835,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
818
835
|
reportTaskRunnerHeartbeat(args: ReportTaskRunnerHeartbeatCommandInput, cb: (err: any, data?: ReportTaskRunnerHeartbeatCommandOutput) => void): void;
|
|
819
836
|
reportTaskRunnerHeartbeat(args: ReportTaskRunnerHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReportTaskRunnerHeartbeatCommandOutput) => void): void;
|
|
820
837
|
/**
|
|
838
|
+
* @public
|
|
821
839
|
* <p>Requests that the status of the specified physical or logical pipeline objects be updated in the specified pipeline.
|
|
822
840
|
* This update might not occur immediately, but is eventually consistent. The status that can be set depends on the type of object (for example, DataNode or Activity).
|
|
823
841
|
* You cannot perform this operation on <code>FINISHED</code> pipelines and attempting to do so returns <code>InvalidRequestException</code>.</p>
|
|
@@ -833,10 +851,10 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
833
851
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
834
852
|
* Authorization: AuthParams
|
|
835
853
|
*
|
|
836
|
-
* {"pipelineId": "df-0634701J7KEXAMPLE",
|
|
854
|
+
* \{"pipelineId": "df-0634701J7KEXAMPLE",
|
|
837
855
|
* "objectIds":
|
|
838
856
|
* ["o-08600941GHJWMBR9E2"],
|
|
839
|
-
* "status": "pause"}
|
|
857
|
+
* "status": "pause"\}
|
|
840
858
|
*
|
|
841
859
|
* </request>
|
|
842
860
|
*
|
|
@@ -856,6 +874,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
856
874
|
setStatus(args: SetStatusCommandInput, cb: (err: any, data?: SetStatusCommandOutput) => void): void;
|
|
857
875
|
setStatus(args: SetStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetStatusCommandOutput) => void): void;
|
|
858
876
|
/**
|
|
877
|
+
* @public
|
|
859
878
|
* <p>Task runners call <code>SetTaskStatus</code> to notify AWS Data Pipeline that a task is completed and provide information about the final status.
|
|
860
879
|
* A task runner makes this call regardless of whether the task was sucessful. A task runner does not need to call <code>SetTaskStatus</code> for
|
|
861
880
|
* tasks that are canceled by the web service during a call to <a>ReportTaskProgress</a>.</p>
|
|
@@ -871,8 +890,8 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
871
890
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
872
891
|
* Authorization: AuthParams
|
|
873
892
|
*
|
|
874
|
-
* {"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
|
|
875
|
-
* "taskStatus": "FINISHED"}
|
|
893
|
+
* \{"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
|
|
894
|
+
* "taskStatus": "FINISHED"\}
|
|
876
895
|
*
|
|
877
896
|
* </request>
|
|
878
897
|
*
|
|
@@ -883,7 +902,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
883
902
|
* Content-Length: 0
|
|
884
903
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
885
904
|
*
|
|
886
|
-
* {}
|
|
905
|
+
* \{\}
|
|
887
906
|
*
|
|
888
907
|
* </response>
|
|
889
908
|
* </examples>
|
|
@@ -892,6 +911,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
892
911
|
setTaskStatus(args: SetTaskStatusCommandInput, cb: (err: any, data?: SetTaskStatusCommandOutput) => void): void;
|
|
893
912
|
setTaskStatus(args: SetTaskStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetTaskStatusCommandOutput) => void): void;
|
|
894
913
|
/**
|
|
914
|
+
* @public
|
|
895
915
|
* <p>Validates the specified pipeline definition to ensure that it is well formed and can be run without error.</p>
|
|
896
916
|
*
|
|
897
917
|
* <examples>
|
|
@@ -910,48 +930,48 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
910
930
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
911
931
|
* Authorization: AuthParams
|
|
912
932
|
*
|
|
913
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
933
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
914
934
|
* "pipelineObjects":
|
|
915
935
|
* [
|
|
916
|
-
* {"id": "Default",
|
|
936
|
+
* \{"id": "Default",
|
|
917
937
|
* "name": "Default",
|
|
918
938
|
* "fields":
|
|
919
939
|
* [
|
|
920
|
-
* {"key": "workerGroup",
|
|
921
|
-
* "stringValue": "MyworkerGroup"}
|
|
940
|
+
* \{"key": "workerGroup",
|
|
941
|
+
* "stringValue": "MyworkerGroup"\}
|
|
922
942
|
* ]
|
|
923
|
-
* },
|
|
924
|
-
* {"id": "Schedule",
|
|
943
|
+
* \},
|
|
944
|
+
* \{"id": "Schedule",
|
|
925
945
|
* "name": "Schedule",
|
|
926
946
|
* "fields":
|
|
927
947
|
* [
|
|
928
|
-
* {"key": "startDateTime",
|
|
929
|
-
* "stringValue": "2012-09-25T17:00:00"},
|
|
930
|
-
* {"key": "type",
|
|
931
|
-
* "stringValue": "Schedule"},
|
|
932
|
-
* {"key": "period",
|
|
933
|
-
* "stringValue": "1 hour"},
|
|
934
|
-
* {"key": "endDateTime",
|
|
935
|
-
* "stringValue": "2012-09-25T18:00:00"}
|
|
948
|
+
* \{"key": "startDateTime",
|
|
949
|
+
* "stringValue": "2012-09-25T17:00:00"\},
|
|
950
|
+
* \{"key": "type",
|
|
951
|
+
* "stringValue": "Schedule"\},
|
|
952
|
+
* \{"key": "period",
|
|
953
|
+
* "stringValue": "1 hour"\},
|
|
954
|
+
* \{"key": "endDateTime",
|
|
955
|
+
* "stringValue": "2012-09-25T18:00:00"\}
|
|
936
956
|
* ]
|
|
937
|
-
* },
|
|
938
|
-
* {"id": "SayHello",
|
|
957
|
+
* \},
|
|
958
|
+
* \{"id": "SayHello",
|
|
939
959
|
* "name": "SayHello",
|
|
940
960
|
* "fields":
|
|
941
961
|
* [
|
|
942
|
-
* {"key": "type",
|
|
943
|
-
* "stringValue": "ShellCommandActivity"},
|
|
944
|
-
* {"key": "command",
|
|
945
|
-
* "stringValue": "echo hello"},
|
|
946
|
-
* {"key": "parent",
|
|
947
|
-
* "refValue": "Default"},
|
|
948
|
-
* {"key": "schedule",
|
|
949
|
-
* "refValue": "Schedule"}
|
|
962
|
+
* \{"key": "type",
|
|
963
|
+
* "stringValue": "ShellCommandActivity"\},
|
|
964
|
+
* \{"key": "command",
|
|
965
|
+
* "stringValue": "echo hello"\},
|
|
966
|
+
* \{"key": "parent",
|
|
967
|
+
* "refValue": "Default"\},
|
|
968
|
+
* \{"key": "schedule",
|
|
969
|
+
* "refValue": "Schedule"\}
|
|
950
970
|
*
|
|
951
971
|
* ]
|
|
952
|
-
* }
|
|
972
|
+
* \}
|
|
953
973
|
* ]
|
|
954
|
-
* }
|
|
974
|
+
* \}
|
|
955
975
|
*
|
|
956
976
|
* </request>
|
|
957
977
|
* <response>
|
|
@@ -961,7 +981,7 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
961
981
|
* Content-Length: 18
|
|
962
982
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
963
983
|
*
|
|
964
|
-
* {"errored": false}
|
|
984
|
+
* \{"errored": false\}
|
|
965
985
|
*
|
|
966
986
|
* </response>
|
|
967
987
|
* </example>
|
|
@@ -981,48 +1001,48 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
981
1001
|
* X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
|
|
982
1002
|
* Authorization: AuthParams
|
|
983
1003
|
*
|
|
984
|
-
* {"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
1004
|
+
* \{"pipelineId": "df-06372391ZG65EXAMPLE",
|
|
985
1005
|
* "pipelineObjects":
|
|
986
1006
|
* [
|
|
987
|
-
* {"id": "Default",
|
|
1007
|
+
* \{"id": "Default",
|
|
988
1008
|
* "name": "Default",
|
|
989
1009
|
* "fields":
|
|
990
1010
|
* [
|
|
991
|
-
* {"key": "workerGroup",
|
|
992
|
-
* "stringValue": "MyworkerGroup"}
|
|
1011
|
+
* \{"key": "workerGroup",
|
|
1012
|
+
* "stringValue": "MyworkerGroup"\}
|
|
993
1013
|
* ]
|
|
994
|
-
* },
|
|
995
|
-
* {"id": "Schedule",
|
|
1014
|
+
* \},
|
|
1015
|
+
* \{"id": "Schedule",
|
|
996
1016
|
* "name": "Schedule",
|
|
997
1017
|
* "fields":
|
|
998
1018
|
* [
|
|
999
|
-
* {"key": "startDateTime",
|
|
1000
|
-
* "stringValue": "bad-time"},
|
|
1001
|
-
* {"key": "type",
|
|
1002
|
-
* "stringValue": "Schedule"},
|
|
1003
|
-
* {"key": "period",
|
|
1004
|
-
* "stringValue": "1 hour"},
|
|
1005
|
-
* {"key": "endDateTime",
|
|
1006
|
-
* "stringValue": "2012-09-25T18:00:00"}
|
|
1019
|
+
* \{"key": "startDateTime",
|
|
1020
|
+
* "stringValue": "bad-time"\},
|
|
1021
|
+
* \{"key": "type",
|
|
1022
|
+
* "stringValue": "Schedule"\},
|
|
1023
|
+
* \{"key": "period",
|
|
1024
|
+
* "stringValue": "1 hour"\},
|
|
1025
|
+
* \{"key": "endDateTime",
|
|
1026
|
+
* "stringValue": "2012-09-25T18:00:00"\}
|
|
1007
1027
|
* ]
|
|
1008
|
-
* },
|
|
1009
|
-
* {"id": "SayHello",
|
|
1028
|
+
* \},
|
|
1029
|
+
* \{"id": "SayHello",
|
|
1010
1030
|
* "name": "SayHello",
|
|
1011
1031
|
* "fields":
|
|
1012
1032
|
* [
|
|
1013
|
-
* {"key": "type",
|
|
1014
|
-
* "stringValue": "ShellCommandActivity"},
|
|
1015
|
-
* {"key": "command",
|
|
1016
|
-
* "stringValue": "echo hello"},
|
|
1017
|
-
* {"key": "parent",
|
|
1018
|
-
* "refValue": "Default"},
|
|
1019
|
-
* {"key": "schedule",
|
|
1020
|
-
* "refValue": "Schedule"}
|
|
1033
|
+
* \{"key": "type",
|
|
1034
|
+
* "stringValue": "ShellCommandActivity"\},
|
|
1035
|
+
* \{"key": "command",
|
|
1036
|
+
* "stringValue": "echo hello"\},
|
|
1037
|
+
* \{"key": "parent",
|
|
1038
|
+
* "refValue": "Default"\},
|
|
1039
|
+
* \{"key": "schedule",
|
|
1040
|
+
* "refValue": "Schedule"\}
|
|
1021
1041
|
*
|
|
1022
1042
|
* ]
|
|
1023
|
-
* }
|
|
1043
|
+
* \}
|
|
1024
1044
|
* ]
|
|
1025
|
-
* }
|
|
1045
|
+
* \}
|
|
1026
1046
|
*
|
|
1027
1047
|
* </request>
|
|
1028
1048
|
* <response>
|
|
@@ -1032,14 +1052,14 @@ export declare class DataPipeline extends DataPipelineClient {
|
|
|
1032
1052
|
* Content-Length: 278
|
|
1033
1053
|
* Date: Mon, 12 Nov 2012 17:50:53 GMT
|
|
1034
1054
|
*
|
|
1035
|
-
* {"errored": true,
|
|
1055
|
+
* \{"errored": true,
|
|
1036
1056
|
* "validationErrors":
|
|
1037
1057
|
* [
|
|
1038
|
-
* {"errors":
|
|
1058
|
+
* \{"errors":
|
|
1039
1059
|
* ["INVALID_FIELD_VALUE: 'startDateTime' value must be a literal datetime value."],
|
|
1040
|
-
* "id": "Schedule"}
|
|
1060
|
+
* "id": "Schedule"\}
|
|
1041
1061
|
* ]
|
|
1042
|
-
* }
|
|
1062
|
+
* \}
|
|
1043
1063
|
*
|
|
1044
1064
|
* </response>
|
|
1045
1065
|
* </example>
|