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