@aws-sdk/client-data-pipeline 3.50.0 → 3.51.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/DataPipeline.d.ts +100 -0
  3. package/dist-types/ts3.4/DataPipelineClient.d.ts +92 -0
  4. package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  25. package/dist-types/ts3.4/index.d.ts +5 -0
  26. package/dist-types/ts3.4/models/index.d.ts +1 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +635 -0
  28. package/dist-types/ts3.4/pagination/DescribeObjectsPaginator.d.ts +4 -0
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  30. package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +4 -0
  31. package/dist-types/ts3.4/pagination/QueryObjectsPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  33. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  38. package/package.json +8 -8
@@ -0,0 +1,635 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface ParameterValue {
4
+
5
+ id: string | undefined;
6
+
7
+ stringValue: string | undefined;
8
+ }
9
+ export declare namespace ParameterValue {
10
+
11
+ const filterSensitiveLog: (obj: ParameterValue) => any;
12
+ }
13
+
14
+ export interface ActivatePipelineInput {
15
+
16
+ pipelineId: string | undefined;
17
+
18
+ parameterValues?: ParameterValue[];
19
+
20
+ startTimestamp?: Date;
21
+ }
22
+ export declare namespace ActivatePipelineInput {
23
+
24
+ const filterSensitiveLog: (obj: ActivatePipelineInput) => any;
25
+ }
26
+
27
+ export interface ActivatePipelineOutput {
28
+ }
29
+ export declare namespace ActivatePipelineOutput {
30
+
31
+ const filterSensitiveLog: (obj: ActivatePipelineOutput) => any;
32
+ }
33
+
34
+ export interface InternalServiceError extends __SmithyException, $MetadataBearer {
35
+ name: "InternalServiceError";
36
+ $fault: "server";
37
+
38
+ message?: string;
39
+ }
40
+
41
+ export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
42
+ name: "InvalidRequestException";
43
+ $fault: "client";
44
+
45
+ message?: string;
46
+ }
47
+
48
+ export interface PipelineDeletedException extends __SmithyException, $MetadataBearer {
49
+ name: "PipelineDeletedException";
50
+ $fault: "client";
51
+
52
+ message?: string;
53
+ }
54
+
55
+ export interface PipelineNotFoundException extends __SmithyException, $MetadataBearer {
56
+ name: "PipelineNotFoundException";
57
+ $fault: "client";
58
+
59
+ message?: string;
60
+ }
61
+
62
+ export interface Tag {
63
+
64
+ key: string | undefined;
65
+
66
+ value: string | undefined;
67
+ }
68
+ export declare namespace Tag {
69
+
70
+ const filterSensitiveLog: (obj: Tag) => any;
71
+ }
72
+
73
+ export interface AddTagsInput {
74
+
75
+ pipelineId: string | undefined;
76
+
77
+ tags: Tag[] | undefined;
78
+ }
79
+ export declare namespace AddTagsInput {
80
+
81
+ const filterSensitiveLog: (obj: AddTagsInput) => any;
82
+ }
83
+
84
+ export interface AddTagsOutput {
85
+ }
86
+ export declare namespace AddTagsOutput {
87
+
88
+ const filterSensitiveLog: (obj: AddTagsOutput) => any;
89
+ }
90
+
91
+ export interface CreatePipelineInput {
92
+
93
+ name: string | undefined;
94
+
95
+ uniqueId: string | undefined;
96
+
97
+ description?: string;
98
+
99
+ tags?: Tag[];
100
+ }
101
+ export declare namespace CreatePipelineInput {
102
+
103
+ const filterSensitiveLog: (obj: CreatePipelineInput) => any;
104
+ }
105
+
106
+ export interface CreatePipelineOutput {
107
+
108
+ pipelineId: string | undefined;
109
+ }
110
+ export declare namespace CreatePipelineOutput {
111
+
112
+ const filterSensitiveLog: (obj: CreatePipelineOutput) => any;
113
+ }
114
+
115
+ export interface DeactivatePipelineInput {
116
+
117
+ pipelineId: string | undefined;
118
+
119
+ cancelActive?: boolean;
120
+ }
121
+ export declare namespace DeactivatePipelineInput {
122
+
123
+ const filterSensitiveLog: (obj: DeactivatePipelineInput) => any;
124
+ }
125
+
126
+ export interface DeactivatePipelineOutput {
127
+ }
128
+ export declare namespace DeactivatePipelineOutput {
129
+
130
+ const filterSensitiveLog: (obj: DeactivatePipelineOutput) => any;
131
+ }
132
+
133
+ export interface DeletePipelineInput {
134
+
135
+ pipelineId: string | undefined;
136
+ }
137
+ export declare namespace DeletePipelineInput {
138
+
139
+ const filterSensitiveLog: (obj: DeletePipelineInput) => any;
140
+ }
141
+
142
+ export interface DescribeObjectsInput {
143
+
144
+ pipelineId: string | undefined;
145
+
146
+ objectIds: string[] | undefined;
147
+
148
+ evaluateExpressions?: boolean;
149
+
150
+ marker?: string;
151
+ }
152
+ export declare namespace DescribeObjectsInput {
153
+
154
+ const filterSensitiveLog: (obj: DescribeObjectsInput) => any;
155
+ }
156
+
157
+ export interface Field {
158
+
159
+ key: string | undefined;
160
+
161
+ stringValue?: string;
162
+
163
+ refValue?: string;
164
+ }
165
+ export declare namespace Field {
166
+
167
+ const filterSensitiveLog: (obj: Field) => any;
168
+ }
169
+
170
+ export interface PipelineObject {
171
+
172
+ id: string | undefined;
173
+
174
+ name: string | undefined;
175
+
176
+ fields: Field[] | undefined;
177
+ }
178
+ export declare namespace PipelineObject {
179
+
180
+ const filterSensitiveLog: (obj: PipelineObject) => any;
181
+ }
182
+
183
+ export interface DescribeObjectsOutput {
184
+
185
+ pipelineObjects: PipelineObject[] | undefined;
186
+
187
+ marker?: string;
188
+
189
+ hasMoreResults?: boolean;
190
+ }
191
+ export declare namespace DescribeObjectsOutput {
192
+
193
+ const filterSensitiveLog: (obj: DescribeObjectsOutput) => any;
194
+ }
195
+
196
+ export interface DescribePipelinesInput {
197
+
198
+ pipelineIds: string[] | undefined;
199
+ }
200
+ export declare namespace DescribePipelinesInput {
201
+
202
+ const filterSensitiveLog: (obj: DescribePipelinesInput) => any;
203
+ }
204
+
205
+ export interface PipelineDescription {
206
+
207
+ pipelineId: string | undefined;
208
+
209
+ name: string | undefined;
210
+
211
+ fields: Field[] | undefined;
212
+
213
+ description?: string;
214
+
215
+ tags?: Tag[];
216
+ }
217
+ export declare namespace PipelineDescription {
218
+
219
+ const filterSensitiveLog: (obj: PipelineDescription) => any;
220
+ }
221
+
222
+ export interface DescribePipelinesOutput {
223
+
224
+ pipelineDescriptionList: PipelineDescription[] | undefined;
225
+ }
226
+ export declare namespace DescribePipelinesOutput {
227
+
228
+ const filterSensitiveLog: (obj: DescribePipelinesOutput) => any;
229
+ }
230
+
231
+ export interface EvaluateExpressionInput {
232
+
233
+ pipelineId: string | undefined;
234
+
235
+ objectId: string | undefined;
236
+
237
+ expression: string | undefined;
238
+ }
239
+ export declare namespace EvaluateExpressionInput {
240
+
241
+ const filterSensitiveLog: (obj: EvaluateExpressionInput) => any;
242
+ }
243
+
244
+ export interface EvaluateExpressionOutput {
245
+
246
+ evaluatedExpression: string | undefined;
247
+ }
248
+ export declare namespace EvaluateExpressionOutput {
249
+
250
+ const filterSensitiveLog: (obj: EvaluateExpressionOutput) => any;
251
+ }
252
+
253
+ export interface TaskNotFoundException extends __SmithyException, $MetadataBearer {
254
+ name: "TaskNotFoundException";
255
+ $fault: "client";
256
+
257
+ message?: string;
258
+ }
259
+
260
+ export interface GetPipelineDefinitionInput {
261
+
262
+ pipelineId: string | undefined;
263
+
264
+ version?: string;
265
+ }
266
+ export declare namespace GetPipelineDefinitionInput {
267
+
268
+ const filterSensitiveLog: (obj: GetPipelineDefinitionInput) => any;
269
+ }
270
+
271
+ export interface ParameterAttribute {
272
+
273
+ key: string | undefined;
274
+
275
+ stringValue: string | undefined;
276
+ }
277
+ export declare namespace ParameterAttribute {
278
+
279
+ const filterSensitiveLog: (obj: ParameterAttribute) => any;
280
+ }
281
+
282
+ export interface ParameterObject {
283
+
284
+ id: string | undefined;
285
+
286
+ attributes: ParameterAttribute[] | undefined;
287
+ }
288
+ export declare namespace ParameterObject {
289
+
290
+ const filterSensitiveLog: (obj: ParameterObject) => any;
291
+ }
292
+
293
+ export interface GetPipelineDefinitionOutput {
294
+
295
+ pipelineObjects?: PipelineObject[];
296
+
297
+ parameterObjects?: ParameterObject[];
298
+
299
+ parameterValues?: ParameterValue[];
300
+ }
301
+ export declare namespace GetPipelineDefinitionOutput {
302
+
303
+ const filterSensitiveLog: (obj: GetPipelineDefinitionOutput) => any;
304
+ }
305
+
306
+ export interface ListPipelinesInput {
307
+
308
+ marker?: string;
309
+ }
310
+ export declare namespace ListPipelinesInput {
311
+
312
+ const filterSensitiveLog: (obj: ListPipelinesInput) => any;
313
+ }
314
+
315
+ export interface PipelineIdName {
316
+
317
+ id?: string;
318
+
319
+ name?: string;
320
+ }
321
+ export declare namespace PipelineIdName {
322
+
323
+ const filterSensitiveLog: (obj: PipelineIdName) => any;
324
+ }
325
+
326
+ export interface ListPipelinesOutput {
327
+
328
+ pipelineIdList: PipelineIdName[] | undefined;
329
+
330
+ marker?: string;
331
+
332
+ hasMoreResults?: boolean;
333
+ }
334
+ export declare namespace ListPipelinesOutput {
335
+
336
+ const filterSensitiveLog: (obj: ListPipelinesOutput) => any;
337
+ }
338
+
339
+ export interface InstanceIdentity {
340
+
341
+ document?: string;
342
+
343
+ signature?: string;
344
+ }
345
+ export declare namespace InstanceIdentity {
346
+
347
+ const filterSensitiveLog: (obj: InstanceIdentity) => any;
348
+ }
349
+
350
+ export interface PollForTaskInput {
351
+
352
+ workerGroup: string | undefined;
353
+
354
+ hostname?: string;
355
+
356
+ instanceIdentity?: InstanceIdentity;
357
+ }
358
+ export declare namespace PollForTaskInput {
359
+
360
+ const filterSensitiveLog: (obj: PollForTaskInput) => any;
361
+ }
362
+
363
+ export interface TaskObject {
364
+
365
+ taskId?: string;
366
+
367
+ pipelineId?: string;
368
+
369
+ attemptId?: string;
370
+
371
+ objects?: {
372
+ [key: string]: PipelineObject;
373
+ };
374
+ }
375
+ export declare namespace TaskObject {
376
+
377
+ const filterSensitiveLog: (obj: TaskObject) => any;
378
+ }
379
+
380
+ export interface PollForTaskOutput {
381
+
382
+ taskObject?: TaskObject;
383
+ }
384
+ export declare namespace PollForTaskOutput {
385
+
386
+ const filterSensitiveLog: (obj: PollForTaskOutput) => any;
387
+ }
388
+
389
+ export interface PutPipelineDefinitionInput {
390
+
391
+ pipelineId: string | undefined;
392
+
393
+ pipelineObjects: PipelineObject[] | undefined;
394
+
395
+ parameterObjects?: ParameterObject[];
396
+
397
+ parameterValues?: ParameterValue[];
398
+ }
399
+ export declare namespace PutPipelineDefinitionInput {
400
+
401
+ const filterSensitiveLog: (obj: PutPipelineDefinitionInput) => any;
402
+ }
403
+
404
+ export interface ValidationError {
405
+
406
+ id?: string;
407
+
408
+ errors?: string[];
409
+ }
410
+ export declare namespace ValidationError {
411
+
412
+ const filterSensitiveLog: (obj: ValidationError) => any;
413
+ }
414
+
415
+ export interface ValidationWarning {
416
+
417
+ id?: string;
418
+
419
+ warnings?: string[];
420
+ }
421
+ export declare namespace ValidationWarning {
422
+
423
+ const filterSensitiveLog: (obj: ValidationWarning) => any;
424
+ }
425
+
426
+ export interface PutPipelineDefinitionOutput {
427
+
428
+ validationErrors?: ValidationError[];
429
+
430
+ validationWarnings?: ValidationWarning[];
431
+
432
+ errored: boolean | undefined;
433
+ }
434
+ export declare namespace PutPipelineDefinitionOutput {
435
+
436
+ const filterSensitiveLog: (obj: PutPipelineDefinitionOutput) => any;
437
+ }
438
+ export declare enum OperatorType {
439
+ Between = "BETWEEN",
440
+ Equal = "EQ",
441
+ GreaterThanOrEqual = "GE",
442
+ LessThanOrEqual = "LE",
443
+ ReferenceEqual = "REF_EQ"
444
+ }
445
+
446
+ export interface Operator {
447
+
448
+ type?: OperatorType | string;
449
+
450
+ values?: string[];
451
+ }
452
+ export declare namespace Operator {
453
+
454
+ const filterSensitiveLog: (obj: Operator) => any;
455
+ }
456
+
457
+ export interface Selector {
458
+
459
+ fieldName?: string;
460
+
461
+ operator?: Operator;
462
+ }
463
+ export declare namespace Selector {
464
+
465
+ const filterSensitiveLog: (obj: Selector) => any;
466
+ }
467
+
468
+ export interface Query {
469
+
470
+ selectors?: Selector[];
471
+ }
472
+ export declare namespace Query {
473
+
474
+ const filterSensitiveLog: (obj: Query) => any;
475
+ }
476
+
477
+ export interface QueryObjectsInput {
478
+
479
+ pipelineId: string | undefined;
480
+
481
+ query?: Query;
482
+
483
+ sphere: string | undefined;
484
+
485
+ marker?: string;
486
+
487
+ limit?: number;
488
+ }
489
+ export declare namespace QueryObjectsInput {
490
+
491
+ const filterSensitiveLog: (obj: QueryObjectsInput) => any;
492
+ }
493
+
494
+ export interface QueryObjectsOutput {
495
+
496
+ ids?: string[];
497
+
498
+ marker?: string;
499
+
500
+ hasMoreResults?: boolean;
501
+ }
502
+ export declare namespace QueryObjectsOutput {
503
+
504
+ const filterSensitiveLog: (obj: QueryObjectsOutput) => any;
505
+ }
506
+
507
+ export interface RemoveTagsInput {
508
+
509
+ pipelineId: string | undefined;
510
+
511
+ tagKeys: string[] | undefined;
512
+ }
513
+ export declare namespace RemoveTagsInput {
514
+
515
+ const filterSensitiveLog: (obj: RemoveTagsInput) => any;
516
+ }
517
+
518
+ export interface RemoveTagsOutput {
519
+ }
520
+ export declare namespace RemoveTagsOutput {
521
+
522
+ const filterSensitiveLog: (obj: RemoveTagsOutput) => any;
523
+ }
524
+
525
+ export interface ReportTaskProgressInput {
526
+
527
+ taskId: string | undefined;
528
+
529
+ fields?: Field[];
530
+ }
531
+ export declare namespace ReportTaskProgressInput {
532
+
533
+ const filterSensitiveLog: (obj: ReportTaskProgressInput) => any;
534
+ }
535
+
536
+ export interface ReportTaskProgressOutput {
537
+
538
+ canceled: boolean | undefined;
539
+ }
540
+ export declare namespace ReportTaskProgressOutput {
541
+
542
+ const filterSensitiveLog: (obj: ReportTaskProgressOutput) => any;
543
+ }
544
+
545
+ export interface ReportTaskRunnerHeartbeatInput {
546
+
547
+ taskrunnerId: string | undefined;
548
+
549
+ workerGroup?: string;
550
+
551
+ hostname?: string;
552
+ }
553
+ export declare namespace ReportTaskRunnerHeartbeatInput {
554
+
555
+ const filterSensitiveLog: (obj: ReportTaskRunnerHeartbeatInput) => any;
556
+ }
557
+
558
+ export interface ReportTaskRunnerHeartbeatOutput {
559
+
560
+ terminate: boolean | undefined;
561
+ }
562
+ export declare namespace ReportTaskRunnerHeartbeatOutput {
563
+
564
+ const filterSensitiveLog: (obj: ReportTaskRunnerHeartbeatOutput) => any;
565
+ }
566
+
567
+ export interface SetStatusInput {
568
+
569
+ pipelineId: string | undefined;
570
+
571
+ objectIds: string[] | undefined;
572
+
573
+ status: string | undefined;
574
+ }
575
+ export declare namespace SetStatusInput {
576
+
577
+ const filterSensitiveLog: (obj: SetStatusInput) => any;
578
+ }
579
+ export declare enum TaskStatus {
580
+ FAILED = "FAILED",
581
+ FALSE = "FALSE",
582
+ FINISHED = "FINISHED"
583
+ }
584
+
585
+ export interface SetTaskStatusInput {
586
+
587
+ taskId: string | undefined;
588
+
589
+ taskStatus: TaskStatus | string | undefined;
590
+
591
+ errorId?: string;
592
+
593
+ errorMessage?: string;
594
+
595
+ errorStackTrace?: string;
596
+ }
597
+ export declare namespace SetTaskStatusInput {
598
+
599
+ const filterSensitiveLog: (obj: SetTaskStatusInput) => any;
600
+ }
601
+
602
+ export interface SetTaskStatusOutput {
603
+ }
604
+ export declare namespace SetTaskStatusOutput {
605
+
606
+ const filterSensitiveLog: (obj: SetTaskStatusOutput) => any;
607
+ }
608
+
609
+ export interface ValidatePipelineDefinitionInput {
610
+
611
+ pipelineId: string | undefined;
612
+
613
+ pipelineObjects: PipelineObject[] | undefined;
614
+
615
+ parameterObjects?: ParameterObject[];
616
+
617
+ parameterValues?: ParameterValue[];
618
+ }
619
+ export declare namespace ValidatePipelineDefinitionInput {
620
+
621
+ const filterSensitiveLog: (obj: ValidatePipelineDefinitionInput) => any;
622
+ }
623
+
624
+ export interface ValidatePipelineDefinitionOutput {
625
+
626
+ validationErrors?: ValidationError[];
627
+
628
+ validationWarnings?: ValidationWarning[];
629
+
630
+ errored: boolean | undefined;
631
+ }
632
+ export declare namespace ValidatePipelineDefinitionOutput {
633
+
634
+ const filterSensitiveLog: (obj: ValidatePipelineDefinitionOutput) => any;
635
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeObjectsCommandInput, DescribeObjectsCommandOutput } from "../commands/DescribeObjectsCommand";
3
+ import { DataPipelinePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeObjects(config: DataPipelinePaginationConfiguration, input: DescribeObjectsCommandInput, ...additionalArguments: any): Paginator<DescribeObjectsCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { DataPipeline } from "../DataPipeline";
3
+ import { DataPipelineClient } from "../DataPipelineClient";
4
+ export interface DataPipelinePaginationConfiguration extends PaginationConfiguration {
5
+ client: DataPipeline | DataPipelineClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
3
+ import { DataPipelinePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPipelines(config: DataPipelinePaginationConfiguration, input: ListPipelinesCommandInput, ...additionalArguments: any): Paginator<ListPipelinesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { QueryObjectsCommandInput, QueryObjectsCommandOutput } from "../commands/QueryObjectsCommand";
3
+ import { DataPipelinePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateQueryObjects(config: DataPipelinePaginationConfiguration, input: QueryObjectsCommandInput, ...additionalArguments: any): Paginator<QueryObjectsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./DescribeObjectsPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListPipelinesPaginator";
4
+ export * from "./QueryObjectsPaginator";