@aws-sdk/client-data-pipeline 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/ActivatePipelineCommand.js +2 -2
- package/dist-cjs/commands/AddTagsCommand.js +2 -2
- package/dist-cjs/commands/CreatePipelineCommand.js +2 -2
- package/dist-cjs/commands/DeactivatePipelineCommand.js +2 -2
- package/dist-cjs/commands/DeletePipelineCommand.js +1 -1
- package/dist-cjs/commands/DescribeObjectsCommand.js +2 -2
- package/dist-cjs/commands/DescribePipelinesCommand.js +2 -2
- package/dist-cjs/commands/EvaluateExpressionCommand.js +2 -2
- package/dist-cjs/commands/GetPipelineDefinitionCommand.js +2 -2
- package/dist-cjs/commands/ListPipelinesCommand.js +2 -2
- package/dist-cjs/commands/PollForTaskCommand.js +2 -2
- package/dist-cjs/commands/PutPipelineDefinitionCommand.js +2 -2
- package/dist-cjs/commands/QueryObjectsCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsCommand.js +2 -2
- package/dist-cjs/commands/ReportTaskProgressCommand.js +2 -2
- package/dist-cjs/commands/ReportTaskRunnerHeartbeatCommand.js +2 -2
- package/dist-cjs/commands/SetStatusCommand.js +1 -1
- package/dist-cjs/commands/SetTaskStatusCommand.js +2 -2
- package/dist-cjs/commands/ValidatePipelineDefinitionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +206 -308
- package/dist-cjs/protocols/Aws_json1_1.js +95 -179
- package/dist-es/commands/ActivatePipelineCommand.js +3 -3
- package/dist-es/commands/AddTagsCommand.js +3 -3
- package/dist-es/commands/CreatePipelineCommand.js +3 -3
- package/dist-es/commands/DeactivatePipelineCommand.js +3 -3
- package/dist-es/commands/DeletePipelineCommand.js +2 -2
- package/dist-es/commands/DescribeObjectsCommand.js +3 -3
- package/dist-es/commands/DescribePipelinesCommand.js +3 -3
- package/dist-es/commands/EvaluateExpressionCommand.js +3 -3
- package/dist-es/commands/GetPipelineDefinitionCommand.js +3 -3
- package/dist-es/commands/ListPipelinesCommand.js +3 -3
- package/dist-es/commands/PollForTaskCommand.js +3 -3
- package/dist-es/commands/PutPipelineDefinitionCommand.js +3 -3
- package/dist-es/commands/QueryObjectsCommand.js +3 -3
- package/dist-es/commands/RemoveTagsCommand.js +3 -3
- package/dist-es/commands/ReportTaskProgressCommand.js +3 -3
- package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +3 -3
- package/dist-es/commands/SetStatusCommand.js +2 -2
- package/dist-es/commands/SetTaskStatusCommand.js +3 -3
- package/dist-es/commands/ValidatePipelineDefinitionCommand.js +3 -3
- package/dist-es/models/models_0.js +51 -204
- package/dist-es/protocols/Aws_json1_1.js +153 -180
- package/dist-types/models/models_0.d.ts +204 -306
- package/dist-types/ts3.4/models/models_0.d.ts +102 -204
- package/package.json +6 -6
|
@@ -7,10 +7,6 @@ export interface ParameterValue {
|
|
|
7
7
|
|
|
8
8
|
stringValue: string | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace ParameterValue {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: ParameterValue) => any;
|
|
13
|
-
}
|
|
14
10
|
|
|
15
11
|
export interface ActivatePipelineInput {
|
|
16
12
|
|
|
@@ -20,17 +16,9 @@ export interface ActivatePipelineInput {
|
|
|
20
16
|
|
|
21
17
|
startTimestamp?: Date;
|
|
22
18
|
}
|
|
23
|
-
export declare namespace ActivatePipelineInput {
|
|
24
|
-
|
|
25
|
-
const filterSensitiveLog: (obj: ActivatePipelineInput) => any;
|
|
26
|
-
}
|
|
27
19
|
|
|
28
20
|
export interface ActivatePipelineOutput {
|
|
29
21
|
}
|
|
30
|
-
export declare namespace ActivatePipelineOutput {
|
|
31
|
-
|
|
32
|
-
const filterSensitiveLog: (obj: ActivatePipelineOutput) => any;
|
|
33
|
-
}
|
|
34
22
|
|
|
35
23
|
export declare class InternalServiceError extends __BaseException {
|
|
36
24
|
readonly name: "InternalServiceError";
|
|
@@ -66,10 +54,6 @@ export interface Tag {
|
|
|
66
54
|
|
|
67
55
|
value: string | undefined;
|
|
68
56
|
}
|
|
69
|
-
export declare namespace Tag {
|
|
70
|
-
|
|
71
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
72
|
-
}
|
|
73
57
|
|
|
74
58
|
export interface AddTagsInput {
|
|
75
59
|
|
|
@@ -77,17 +61,9 @@ export interface AddTagsInput {
|
|
|
77
61
|
|
|
78
62
|
tags: Tag[] | undefined;
|
|
79
63
|
}
|
|
80
|
-
export declare namespace AddTagsInput {
|
|
81
|
-
|
|
82
|
-
const filterSensitiveLog: (obj: AddTagsInput) => any;
|
|
83
|
-
}
|
|
84
64
|
|
|
85
65
|
export interface AddTagsOutput {
|
|
86
66
|
}
|
|
87
|
-
export declare namespace AddTagsOutput {
|
|
88
|
-
|
|
89
|
-
const filterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
90
|
-
}
|
|
91
67
|
|
|
92
68
|
export interface CreatePipelineInput {
|
|
93
69
|
|
|
@@ -99,19 +75,11 @@ export interface CreatePipelineInput {
|
|
|
99
75
|
|
|
100
76
|
tags?: Tag[];
|
|
101
77
|
}
|
|
102
|
-
export declare namespace CreatePipelineInput {
|
|
103
|
-
|
|
104
|
-
const filterSensitiveLog: (obj: CreatePipelineInput) => any;
|
|
105
|
-
}
|
|
106
78
|
|
|
107
79
|
export interface CreatePipelineOutput {
|
|
108
80
|
|
|
109
81
|
pipelineId: string | undefined;
|
|
110
82
|
}
|
|
111
|
-
export declare namespace CreatePipelineOutput {
|
|
112
|
-
|
|
113
|
-
const filterSensitiveLog: (obj: CreatePipelineOutput) => any;
|
|
114
|
-
}
|
|
115
83
|
|
|
116
84
|
export interface DeactivatePipelineInput {
|
|
117
85
|
|
|
@@ -119,26 +87,14 @@ export interface DeactivatePipelineInput {
|
|
|
119
87
|
|
|
120
88
|
cancelActive?: boolean;
|
|
121
89
|
}
|
|
122
|
-
export declare namespace DeactivatePipelineInput {
|
|
123
|
-
|
|
124
|
-
const filterSensitiveLog: (obj: DeactivatePipelineInput) => any;
|
|
125
|
-
}
|
|
126
90
|
|
|
127
91
|
export interface DeactivatePipelineOutput {
|
|
128
92
|
}
|
|
129
|
-
export declare namespace DeactivatePipelineOutput {
|
|
130
|
-
|
|
131
|
-
const filterSensitiveLog: (obj: DeactivatePipelineOutput) => any;
|
|
132
|
-
}
|
|
133
93
|
|
|
134
94
|
export interface DeletePipelineInput {
|
|
135
95
|
|
|
136
96
|
pipelineId: string | undefined;
|
|
137
97
|
}
|
|
138
|
-
export declare namespace DeletePipelineInput {
|
|
139
|
-
|
|
140
|
-
const filterSensitiveLog: (obj: DeletePipelineInput) => any;
|
|
141
|
-
}
|
|
142
98
|
|
|
143
99
|
export interface DescribeObjectsInput {
|
|
144
100
|
|
|
@@ -150,10 +106,6 @@ export interface DescribeObjectsInput {
|
|
|
150
106
|
|
|
151
107
|
marker?: string;
|
|
152
108
|
}
|
|
153
|
-
export declare namespace DescribeObjectsInput {
|
|
154
|
-
|
|
155
|
-
const filterSensitiveLog: (obj: DescribeObjectsInput) => any;
|
|
156
|
-
}
|
|
157
109
|
|
|
158
110
|
export interface Field {
|
|
159
111
|
|
|
@@ -163,10 +115,6 @@ export interface Field {
|
|
|
163
115
|
|
|
164
116
|
refValue?: string;
|
|
165
117
|
}
|
|
166
|
-
export declare namespace Field {
|
|
167
|
-
|
|
168
|
-
const filterSensitiveLog: (obj: Field) => any;
|
|
169
|
-
}
|
|
170
118
|
|
|
171
119
|
export interface PipelineObject {
|
|
172
120
|
|
|
@@ -176,10 +124,6 @@ export interface PipelineObject {
|
|
|
176
124
|
|
|
177
125
|
fields: Field[] | undefined;
|
|
178
126
|
}
|
|
179
|
-
export declare namespace PipelineObject {
|
|
180
|
-
|
|
181
|
-
const filterSensitiveLog: (obj: PipelineObject) => any;
|
|
182
|
-
}
|
|
183
127
|
|
|
184
128
|
export interface DescribeObjectsOutput {
|
|
185
129
|
|
|
@@ -189,19 +133,11 @@ export interface DescribeObjectsOutput {
|
|
|
189
133
|
|
|
190
134
|
hasMoreResults?: boolean;
|
|
191
135
|
}
|
|
192
|
-
export declare namespace DescribeObjectsOutput {
|
|
193
|
-
|
|
194
|
-
const filterSensitiveLog: (obj: DescribeObjectsOutput) => any;
|
|
195
|
-
}
|
|
196
136
|
|
|
197
137
|
export interface DescribePipelinesInput {
|
|
198
138
|
|
|
199
139
|
pipelineIds: string[] | undefined;
|
|
200
140
|
}
|
|
201
|
-
export declare namespace DescribePipelinesInput {
|
|
202
|
-
|
|
203
|
-
const filterSensitiveLog: (obj: DescribePipelinesInput) => any;
|
|
204
|
-
}
|
|
205
141
|
|
|
206
142
|
export interface PipelineDescription {
|
|
207
143
|
|
|
@@ -215,19 +151,11 @@ export interface PipelineDescription {
|
|
|
215
151
|
|
|
216
152
|
tags?: Tag[];
|
|
217
153
|
}
|
|
218
|
-
export declare namespace PipelineDescription {
|
|
219
|
-
|
|
220
|
-
const filterSensitiveLog: (obj: PipelineDescription) => any;
|
|
221
|
-
}
|
|
222
154
|
|
|
223
155
|
export interface DescribePipelinesOutput {
|
|
224
156
|
|
|
225
157
|
pipelineDescriptionList: PipelineDescription[] | undefined;
|
|
226
158
|
}
|
|
227
|
-
export declare namespace DescribePipelinesOutput {
|
|
228
|
-
|
|
229
|
-
const filterSensitiveLog: (obj: DescribePipelinesOutput) => any;
|
|
230
|
-
}
|
|
231
159
|
|
|
232
160
|
export interface EvaluateExpressionInput {
|
|
233
161
|
|
|
@@ -237,19 +165,11 @@ export interface EvaluateExpressionInput {
|
|
|
237
165
|
|
|
238
166
|
expression: string | undefined;
|
|
239
167
|
}
|
|
240
|
-
export declare namespace EvaluateExpressionInput {
|
|
241
|
-
|
|
242
|
-
const filterSensitiveLog: (obj: EvaluateExpressionInput) => any;
|
|
243
|
-
}
|
|
244
168
|
|
|
245
169
|
export interface EvaluateExpressionOutput {
|
|
246
170
|
|
|
247
171
|
evaluatedExpression: string | undefined;
|
|
248
172
|
}
|
|
249
|
-
export declare namespace EvaluateExpressionOutput {
|
|
250
|
-
|
|
251
|
-
const filterSensitiveLog: (obj: EvaluateExpressionOutput) => any;
|
|
252
|
-
}
|
|
253
173
|
|
|
254
174
|
export declare class TaskNotFoundException extends __BaseException {
|
|
255
175
|
readonly name: "TaskNotFoundException";
|
|
@@ -264,10 +184,6 @@ export interface GetPipelineDefinitionInput {
|
|
|
264
184
|
|
|
265
185
|
version?: string;
|
|
266
186
|
}
|
|
267
|
-
export declare namespace GetPipelineDefinitionInput {
|
|
268
|
-
|
|
269
|
-
const filterSensitiveLog: (obj: GetPipelineDefinitionInput) => any;
|
|
270
|
-
}
|
|
271
187
|
|
|
272
188
|
export interface ParameterAttribute {
|
|
273
189
|
|
|
@@ -275,10 +191,6 @@ export interface ParameterAttribute {
|
|
|
275
191
|
|
|
276
192
|
stringValue: string | undefined;
|
|
277
193
|
}
|
|
278
|
-
export declare namespace ParameterAttribute {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: ParameterAttribute) => any;
|
|
281
|
-
}
|
|
282
194
|
|
|
283
195
|
export interface ParameterObject {
|
|
284
196
|
|
|
@@ -286,10 +198,6 @@ export interface ParameterObject {
|
|
|
286
198
|
|
|
287
199
|
attributes: ParameterAttribute[] | undefined;
|
|
288
200
|
}
|
|
289
|
-
export declare namespace ParameterObject {
|
|
290
|
-
|
|
291
|
-
const filterSensitiveLog: (obj: ParameterObject) => any;
|
|
292
|
-
}
|
|
293
201
|
|
|
294
202
|
export interface GetPipelineDefinitionOutput {
|
|
295
203
|
|
|
@@ -299,19 +207,11 @@ export interface GetPipelineDefinitionOutput {
|
|
|
299
207
|
|
|
300
208
|
parameterValues?: ParameterValue[];
|
|
301
209
|
}
|
|
302
|
-
export declare namespace GetPipelineDefinitionOutput {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: GetPipelineDefinitionOutput) => any;
|
|
305
|
-
}
|
|
306
210
|
|
|
307
211
|
export interface ListPipelinesInput {
|
|
308
212
|
|
|
309
213
|
marker?: string;
|
|
310
214
|
}
|
|
311
|
-
export declare namespace ListPipelinesInput {
|
|
312
|
-
|
|
313
|
-
const filterSensitiveLog: (obj: ListPipelinesInput) => any;
|
|
314
|
-
}
|
|
315
215
|
|
|
316
216
|
export interface PipelineIdName {
|
|
317
217
|
|
|
@@ -319,10 +219,6 @@ export interface PipelineIdName {
|
|
|
319
219
|
|
|
320
220
|
name?: string;
|
|
321
221
|
}
|
|
322
|
-
export declare namespace PipelineIdName {
|
|
323
|
-
|
|
324
|
-
const filterSensitiveLog: (obj: PipelineIdName) => any;
|
|
325
|
-
}
|
|
326
222
|
|
|
327
223
|
export interface ListPipelinesOutput {
|
|
328
224
|
|
|
@@ -332,10 +228,6 @@ export interface ListPipelinesOutput {
|
|
|
332
228
|
|
|
333
229
|
hasMoreResults?: boolean;
|
|
334
230
|
}
|
|
335
|
-
export declare namespace ListPipelinesOutput {
|
|
336
|
-
|
|
337
|
-
const filterSensitiveLog: (obj: ListPipelinesOutput) => any;
|
|
338
|
-
}
|
|
339
231
|
|
|
340
232
|
export interface InstanceIdentity {
|
|
341
233
|
|
|
@@ -343,10 +235,6 @@ export interface InstanceIdentity {
|
|
|
343
235
|
|
|
344
236
|
signature?: string;
|
|
345
237
|
}
|
|
346
|
-
export declare namespace InstanceIdentity {
|
|
347
|
-
|
|
348
|
-
const filterSensitiveLog: (obj: InstanceIdentity) => any;
|
|
349
|
-
}
|
|
350
238
|
|
|
351
239
|
export interface PollForTaskInput {
|
|
352
240
|
|
|
@@ -356,10 +244,6 @@ export interface PollForTaskInput {
|
|
|
356
244
|
|
|
357
245
|
instanceIdentity?: InstanceIdentity;
|
|
358
246
|
}
|
|
359
|
-
export declare namespace PollForTaskInput {
|
|
360
|
-
|
|
361
|
-
const filterSensitiveLog: (obj: PollForTaskInput) => any;
|
|
362
|
-
}
|
|
363
247
|
|
|
364
248
|
export interface TaskObject {
|
|
365
249
|
|
|
@@ -371,19 +255,11 @@ export interface TaskObject {
|
|
|
371
255
|
|
|
372
256
|
objects?: Record<string, PipelineObject>;
|
|
373
257
|
}
|
|
374
|
-
export declare namespace TaskObject {
|
|
375
|
-
|
|
376
|
-
const filterSensitiveLog: (obj: TaskObject) => any;
|
|
377
|
-
}
|
|
378
258
|
|
|
379
259
|
export interface PollForTaskOutput {
|
|
380
260
|
|
|
381
261
|
taskObject?: TaskObject;
|
|
382
262
|
}
|
|
383
|
-
export declare namespace PollForTaskOutput {
|
|
384
|
-
|
|
385
|
-
const filterSensitiveLog: (obj: PollForTaskOutput) => any;
|
|
386
|
-
}
|
|
387
263
|
|
|
388
264
|
export interface PutPipelineDefinitionInput {
|
|
389
265
|
|
|
@@ -395,10 +271,6 @@ export interface PutPipelineDefinitionInput {
|
|
|
395
271
|
|
|
396
272
|
parameterValues?: ParameterValue[];
|
|
397
273
|
}
|
|
398
|
-
export declare namespace PutPipelineDefinitionInput {
|
|
399
|
-
|
|
400
|
-
const filterSensitiveLog: (obj: PutPipelineDefinitionInput) => any;
|
|
401
|
-
}
|
|
402
274
|
|
|
403
275
|
export interface ValidationError {
|
|
404
276
|
|
|
@@ -406,10 +278,6 @@ export interface ValidationError {
|
|
|
406
278
|
|
|
407
279
|
errors?: string[];
|
|
408
280
|
}
|
|
409
|
-
export declare namespace ValidationError {
|
|
410
|
-
|
|
411
|
-
const filterSensitiveLog: (obj: ValidationError) => any;
|
|
412
|
-
}
|
|
413
281
|
|
|
414
282
|
export interface ValidationWarning {
|
|
415
283
|
|
|
@@ -417,10 +285,6 @@ export interface ValidationWarning {
|
|
|
417
285
|
|
|
418
286
|
warnings?: string[];
|
|
419
287
|
}
|
|
420
|
-
export declare namespace ValidationWarning {
|
|
421
|
-
|
|
422
|
-
const filterSensitiveLog: (obj: ValidationWarning) => any;
|
|
423
|
-
}
|
|
424
288
|
|
|
425
289
|
export interface PutPipelineDefinitionOutput {
|
|
426
290
|
|
|
@@ -430,10 +294,6 @@ export interface PutPipelineDefinitionOutput {
|
|
|
430
294
|
|
|
431
295
|
errored: boolean | undefined;
|
|
432
296
|
}
|
|
433
|
-
export declare namespace PutPipelineDefinitionOutput {
|
|
434
|
-
|
|
435
|
-
const filterSensitiveLog: (obj: PutPipelineDefinitionOutput) => any;
|
|
436
|
-
}
|
|
437
297
|
export declare enum OperatorType {
|
|
438
298
|
Between = "BETWEEN",
|
|
439
299
|
Equal = "EQ",
|
|
@@ -448,10 +308,6 @@ export interface Operator {
|
|
|
448
308
|
|
|
449
309
|
values?: string[];
|
|
450
310
|
}
|
|
451
|
-
export declare namespace Operator {
|
|
452
|
-
|
|
453
|
-
const filterSensitiveLog: (obj: Operator) => any;
|
|
454
|
-
}
|
|
455
311
|
|
|
456
312
|
export interface Selector {
|
|
457
313
|
|
|
@@ -459,19 +315,11 @@ export interface Selector {
|
|
|
459
315
|
|
|
460
316
|
operator?: Operator;
|
|
461
317
|
}
|
|
462
|
-
export declare namespace Selector {
|
|
463
|
-
|
|
464
|
-
const filterSensitiveLog: (obj: Selector) => any;
|
|
465
|
-
}
|
|
466
318
|
|
|
467
319
|
export interface Query {
|
|
468
320
|
|
|
469
321
|
selectors?: Selector[];
|
|
470
322
|
}
|
|
471
|
-
export declare namespace Query {
|
|
472
|
-
|
|
473
|
-
const filterSensitiveLog: (obj: Query) => any;
|
|
474
|
-
}
|
|
475
323
|
|
|
476
324
|
export interface QueryObjectsInput {
|
|
477
325
|
|
|
@@ -485,10 +333,6 @@ export interface QueryObjectsInput {
|
|
|
485
333
|
|
|
486
334
|
limit?: number;
|
|
487
335
|
}
|
|
488
|
-
export declare namespace QueryObjectsInput {
|
|
489
|
-
|
|
490
|
-
const filterSensitiveLog: (obj: QueryObjectsInput) => any;
|
|
491
|
-
}
|
|
492
336
|
|
|
493
337
|
export interface QueryObjectsOutput {
|
|
494
338
|
|
|
@@ -498,10 +342,6 @@ export interface QueryObjectsOutput {
|
|
|
498
342
|
|
|
499
343
|
hasMoreResults?: boolean;
|
|
500
344
|
}
|
|
501
|
-
export declare namespace QueryObjectsOutput {
|
|
502
|
-
|
|
503
|
-
const filterSensitiveLog: (obj: QueryObjectsOutput) => any;
|
|
504
|
-
}
|
|
505
345
|
|
|
506
346
|
export interface RemoveTagsInput {
|
|
507
347
|
|
|
@@ -509,17 +349,9 @@ export interface RemoveTagsInput {
|
|
|
509
349
|
|
|
510
350
|
tagKeys: string[] | undefined;
|
|
511
351
|
}
|
|
512
|
-
export declare namespace RemoveTagsInput {
|
|
513
|
-
|
|
514
|
-
const filterSensitiveLog: (obj: RemoveTagsInput) => any;
|
|
515
|
-
}
|
|
516
352
|
|
|
517
353
|
export interface RemoveTagsOutput {
|
|
518
354
|
}
|
|
519
|
-
export declare namespace RemoveTagsOutput {
|
|
520
|
-
|
|
521
|
-
const filterSensitiveLog: (obj: RemoveTagsOutput) => any;
|
|
522
|
-
}
|
|
523
355
|
|
|
524
356
|
export interface ReportTaskProgressInput {
|
|
525
357
|
|
|
@@ -527,19 +359,11 @@ export interface ReportTaskProgressInput {
|
|
|
527
359
|
|
|
528
360
|
fields?: Field[];
|
|
529
361
|
}
|
|
530
|
-
export declare namespace ReportTaskProgressInput {
|
|
531
|
-
|
|
532
|
-
const filterSensitiveLog: (obj: ReportTaskProgressInput) => any;
|
|
533
|
-
}
|
|
534
362
|
|
|
535
363
|
export interface ReportTaskProgressOutput {
|
|
536
364
|
|
|
537
365
|
canceled: boolean | undefined;
|
|
538
366
|
}
|
|
539
|
-
export declare namespace ReportTaskProgressOutput {
|
|
540
|
-
|
|
541
|
-
const filterSensitiveLog: (obj: ReportTaskProgressOutput) => any;
|
|
542
|
-
}
|
|
543
367
|
|
|
544
368
|
export interface ReportTaskRunnerHeartbeatInput {
|
|
545
369
|
|
|
@@ -549,19 +373,11 @@ export interface ReportTaskRunnerHeartbeatInput {
|
|
|
549
373
|
|
|
550
374
|
hostname?: string;
|
|
551
375
|
}
|
|
552
|
-
export declare namespace ReportTaskRunnerHeartbeatInput {
|
|
553
|
-
|
|
554
|
-
const filterSensitiveLog: (obj: ReportTaskRunnerHeartbeatInput) => any;
|
|
555
|
-
}
|
|
556
376
|
|
|
557
377
|
export interface ReportTaskRunnerHeartbeatOutput {
|
|
558
378
|
|
|
559
379
|
terminate: boolean | undefined;
|
|
560
380
|
}
|
|
561
|
-
export declare namespace ReportTaskRunnerHeartbeatOutput {
|
|
562
|
-
|
|
563
|
-
const filterSensitiveLog: (obj: ReportTaskRunnerHeartbeatOutput) => any;
|
|
564
|
-
}
|
|
565
381
|
|
|
566
382
|
export interface SetStatusInput {
|
|
567
383
|
|
|
@@ -571,10 +387,6 @@ export interface SetStatusInput {
|
|
|
571
387
|
|
|
572
388
|
status: string | undefined;
|
|
573
389
|
}
|
|
574
|
-
export declare namespace SetStatusInput {
|
|
575
|
-
|
|
576
|
-
const filterSensitiveLog: (obj: SetStatusInput) => any;
|
|
577
|
-
}
|
|
578
390
|
export declare enum TaskStatus {
|
|
579
391
|
FAILED = "FAILED",
|
|
580
392
|
FALSE = "FALSE",
|
|
@@ -593,17 +405,9 @@ export interface SetTaskStatusInput {
|
|
|
593
405
|
|
|
594
406
|
errorStackTrace?: string;
|
|
595
407
|
}
|
|
596
|
-
export declare namespace SetTaskStatusInput {
|
|
597
|
-
|
|
598
|
-
const filterSensitiveLog: (obj: SetTaskStatusInput) => any;
|
|
599
|
-
}
|
|
600
408
|
|
|
601
409
|
export interface SetTaskStatusOutput {
|
|
602
410
|
}
|
|
603
|
-
export declare namespace SetTaskStatusOutput {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: SetTaskStatusOutput) => any;
|
|
606
|
-
}
|
|
607
411
|
|
|
608
412
|
export interface ValidatePipelineDefinitionInput {
|
|
609
413
|
|
|
@@ -615,10 +419,6 @@ export interface ValidatePipelineDefinitionInput {
|
|
|
615
419
|
|
|
616
420
|
parameterValues?: ParameterValue[];
|
|
617
421
|
}
|
|
618
|
-
export declare namespace ValidatePipelineDefinitionInput {
|
|
619
|
-
|
|
620
|
-
const filterSensitiveLog: (obj: ValidatePipelineDefinitionInput) => any;
|
|
621
|
-
}
|
|
622
422
|
|
|
623
423
|
export interface ValidatePipelineDefinitionOutput {
|
|
624
424
|
|
|
@@ -628,7 +428,105 @@ export interface ValidatePipelineDefinitionOutput {
|
|
|
628
428
|
|
|
629
429
|
errored: boolean | undefined;
|
|
630
430
|
}
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
431
|
+
|
|
432
|
+
export declare const ParameterValueFilterSensitiveLog: (obj: ParameterValue) => any;
|
|
433
|
+
|
|
434
|
+
export declare const ActivatePipelineInputFilterSensitiveLog: (obj: ActivatePipelineInput) => any;
|
|
435
|
+
|
|
436
|
+
export declare const ActivatePipelineOutputFilterSensitiveLog: (obj: ActivatePipelineOutput) => any;
|
|
437
|
+
|
|
438
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
439
|
+
|
|
440
|
+
export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
|
|
441
|
+
|
|
442
|
+
export declare const AddTagsOutputFilterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
443
|
+
|
|
444
|
+
export declare const CreatePipelineInputFilterSensitiveLog: (obj: CreatePipelineInput) => any;
|
|
445
|
+
|
|
446
|
+
export declare const CreatePipelineOutputFilterSensitiveLog: (obj: CreatePipelineOutput) => any;
|
|
447
|
+
|
|
448
|
+
export declare const DeactivatePipelineInputFilterSensitiveLog: (obj: DeactivatePipelineInput) => any;
|
|
449
|
+
|
|
450
|
+
export declare const DeactivatePipelineOutputFilterSensitiveLog: (obj: DeactivatePipelineOutput) => any;
|
|
451
|
+
|
|
452
|
+
export declare const DeletePipelineInputFilterSensitiveLog: (obj: DeletePipelineInput) => any;
|
|
453
|
+
|
|
454
|
+
export declare const DescribeObjectsInputFilterSensitiveLog: (obj: DescribeObjectsInput) => any;
|
|
455
|
+
|
|
456
|
+
export declare const FieldFilterSensitiveLog: (obj: Field) => any;
|
|
457
|
+
|
|
458
|
+
export declare const PipelineObjectFilterSensitiveLog: (obj: PipelineObject) => any;
|
|
459
|
+
|
|
460
|
+
export declare const DescribeObjectsOutputFilterSensitiveLog: (obj: DescribeObjectsOutput) => any;
|
|
461
|
+
|
|
462
|
+
export declare const DescribePipelinesInputFilterSensitiveLog: (obj: DescribePipelinesInput) => any;
|
|
463
|
+
|
|
464
|
+
export declare const PipelineDescriptionFilterSensitiveLog: (obj: PipelineDescription) => any;
|
|
465
|
+
|
|
466
|
+
export declare const DescribePipelinesOutputFilterSensitiveLog: (obj: DescribePipelinesOutput) => any;
|
|
467
|
+
|
|
468
|
+
export declare const EvaluateExpressionInputFilterSensitiveLog: (obj: EvaluateExpressionInput) => any;
|
|
469
|
+
|
|
470
|
+
export declare const EvaluateExpressionOutputFilterSensitiveLog: (obj: EvaluateExpressionOutput) => any;
|
|
471
|
+
|
|
472
|
+
export declare const GetPipelineDefinitionInputFilterSensitiveLog: (obj: GetPipelineDefinitionInput) => any;
|
|
473
|
+
|
|
474
|
+
export declare const ParameterAttributeFilterSensitiveLog: (obj: ParameterAttribute) => any;
|
|
475
|
+
|
|
476
|
+
export declare const ParameterObjectFilterSensitiveLog: (obj: ParameterObject) => any;
|
|
477
|
+
|
|
478
|
+
export declare const GetPipelineDefinitionOutputFilterSensitiveLog: (obj: GetPipelineDefinitionOutput) => any;
|
|
479
|
+
|
|
480
|
+
export declare const ListPipelinesInputFilterSensitiveLog: (obj: ListPipelinesInput) => any;
|
|
481
|
+
|
|
482
|
+
export declare const PipelineIdNameFilterSensitiveLog: (obj: PipelineIdName) => any;
|
|
483
|
+
|
|
484
|
+
export declare const ListPipelinesOutputFilterSensitiveLog: (obj: ListPipelinesOutput) => any;
|
|
485
|
+
|
|
486
|
+
export declare const InstanceIdentityFilterSensitiveLog: (obj: InstanceIdentity) => any;
|
|
487
|
+
|
|
488
|
+
export declare const PollForTaskInputFilterSensitiveLog: (obj: PollForTaskInput) => any;
|
|
489
|
+
|
|
490
|
+
export declare const TaskObjectFilterSensitiveLog: (obj: TaskObject) => any;
|
|
491
|
+
|
|
492
|
+
export declare const PollForTaskOutputFilterSensitiveLog: (obj: PollForTaskOutput) => any;
|
|
493
|
+
|
|
494
|
+
export declare const PutPipelineDefinitionInputFilterSensitiveLog: (obj: PutPipelineDefinitionInput) => any;
|
|
495
|
+
|
|
496
|
+
export declare const ValidationErrorFilterSensitiveLog: (obj: ValidationError) => any;
|
|
497
|
+
|
|
498
|
+
export declare const ValidationWarningFilterSensitiveLog: (obj: ValidationWarning) => any;
|
|
499
|
+
|
|
500
|
+
export declare const PutPipelineDefinitionOutputFilterSensitiveLog: (obj: PutPipelineDefinitionOutput) => any;
|
|
501
|
+
|
|
502
|
+
export declare const OperatorFilterSensitiveLog: (obj: Operator) => any;
|
|
503
|
+
|
|
504
|
+
export declare const SelectorFilterSensitiveLog: (obj: Selector) => any;
|
|
505
|
+
|
|
506
|
+
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
507
|
+
|
|
508
|
+
export declare const QueryObjectsInputFilterSensitiveLog: (obj: QueryObjectsInput) => any;
|
|
509
|
+
|
|
510
|
+
export declare const QueryObjectsOutputFilterSensitiveLog: (obj: QueryObjectsOutput) => any;
|
|
511
|
+
|
|
512
|
+
export declare const RemoveTagsInputFilterSensitiveLog: (obj: RemoveTagsInput) => any;
|
|
513
|
+
|
|
514
|
+
export declare const RemoveTagsOutputFilterSensitiveLog: (obj: RemoveTagsOutput) => any;
|
|
515
|
+
|
|
516
|
+
export declare const ReportTaskProgressInputFilterSensitiveLog: (obj: ReportTaskProgressInput) => any;
|
|
517
|
+
|
|
518
|
+
export declare const ReportTaskProgressOutputFilterSensitiveLog: (obj: ReportTaskProgressOutput) => any;
|
|
519
|
+
|
|
520
|
+
export declare const ReportTaskRunnerHeartbeatInputFilterSensitiveLog: (obj: ReportTaskRunnerHeartbeatInput) => any;
|
|
521
|
+
|
|
522
|
+
export declare const ReportTaskRunnerHeartbeatOutputFilterSensitiveLog: (obj: ReportTaskRunnerHeartbeatOutput) => any;
|
|
523
|
+
|
|
524
|
+
export declare const SetStatusInputFilterSensitiveLog: (obj: SetStatusInput) => any;
|
|
525
|
+
|
|
526
|
+
export declare const SetTaskStatusInputFilterSensitiveLog: (obj: SetTaskStatusInput) => any;
|
|
527
|
+
|
|
528
|
+
export declare const SetTaskStatusOutputFilterSensitiveLog: (obj: SetTaskStatusOutput) => any;
|
|
529
|
+
|
|
530
|
+
export declare const ValidatePipelineDefinitionInputFilterSensitiveLog: (obj: ValidatePipelineDefinitionInput) => any;
|
|
531
|
+
|
|
532
|
+
export declare const ValidatePipelineDefinitionOutputFilterSensitiveLog: (obj: ValidatePipelineDefinitionOutput) => any;
|
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.142.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|