@aws-sdk/client-data-pipeline 3.169.0 → 3.171.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 +327 -100
  3. package/dist-types/ts3.4/DataPipelineClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +30 -17
  9. package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +30 -17
  21. package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +39 -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 +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +399 -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 +65 -38
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  39. package/package.json +34 -34
@@ -1,532 +1,399 @@
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
+ export interface ParameterValue {
4
+ id: string | undefined;
5
+ stringValue: string | undefined;
6
+ }
7
+ export interface ActivatePipelineInput {
8
+ pipelineId: string | undefined;
9
+ parameterValues?: ParameterValue[];
10
+ startTimestamp?: Date;
11
+ }
12
+ export interface ActivatePipelineOutput {}
13
+ export declare class InternalServiceError extends __BaseException {
14
+ readonly name: "InternalServiceError";
15
+ readonly $fault: "server";
16
+ constructor(
17
+ opts: __ExceptionOptionType<InternalServiceError, __BaseException>
18
+ );
19
+ }
20
+ export declare class InvalidRequestException extends __BaseException {
21
+ readonly name: "InvalidRequestException";
22
+ readonly $fault: "client";
23
+ constructor(
24
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
25
+ );
26
+ }
27
+ export declare class PipelineDeletedException extends __BaseException {
28
+ readonly name: "PipelineDeletedException";
29
+ readonly $fault: "client";
30
+ constructor(
31
+ opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>
32
+ );
33
+ }
34
+ export declare class PipelineNotFoundException extends __BaseException {
35
+ readonly name: "PipelineNotFoundException";
36
+ readonly $fault: "client";
37
+ constructor(
38
+ opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
39
+ );
40
+ }
41
+ export interface Tag {
42
+ key: string | undefined;
43
+ value: string | undefined;
44
+ }
45
+ export interface AddTagsInput {
46
+ pipelineId: string | undefined;
47
+ tags: Tag[] | undefined;
48
+ }
49
+ export interface AddTagsOutput {}
50
+ export interface CreatePipelineInput {
51
+ name: string | undefined;
52
+ uniqueId: string | undefined;
53
+ description?: string;
54
+ tags?: Tag[];
55
+ }
56
+ export interface CreatePipelineOutput {
57
+ pipelineId: string | undefined;
58
+ }
59
+ export interface DeactivatePipelineInput {
60
+ pipelineId: string | undefined;
61
+ cancelActive?: boolean;
62
+ }
63
+ export interface DeactivatePipelineOutput {}
64
+ export interface DeletePipelineInput {
65
+ pipelineId: string | undefined;
66
+ }
67
+ export interface DescribeObjectsInput {
68
+ pipelineId: string | undefined;
69
+ objectIds: string[] | undefined;
70
+ evaluateExpressions?: boolean;
71
+ marker?: string;
72
+ }
73
+ export interface Field {
74
+ key: string | undefined;
75
+ stringValue?: string;
76
+ refValue?: string;
77
+ }
78
+ export interface PipelineObject {
79
+ id: string | undefined;
80
+ name: string | undefined;
81
+ fields: Field[] | undefined;
82
+ }
83
+ export interface DescribeObjectsOutput {
84
+ pipelineObjects: PipelineObject[] | undefined;
85
+ marker?: string;
86
+ hasMoreResults?: boolean;
87
+ }
88
+ export interface DescribePipelinesInput {
89
+ pipelineIds: string[] | undefined;
90
+ }
91
+ export interface PipelineDescription {
92
+ pipelineId: string | undefined;
93
+ name: string | undefined;
94
+ fields: Field[] | undefined;
95
+ description?: string;
96
+ tags?: Tag[];
97
+ }
98
+ export interface DescribePipelinesOutput {
99
+ pipelineDescriptionList: PipelineDescription[] | undefined;
100
+ }
101
+ export interface EvaluateExpressionInput {
102
+ pipelineId: string | undefined;
103
+ objectId: string | undefined;
104
+ expression: string | undefined;
105
+ }
106
+ export interface EvaluateExpressionOutput {
107
+ evaluatedExpression: string | undefined;
108
+ }
109
+ export declare class TaskNotFoundException extends __BaseException {
110
+ readonly name: "TaskNotFoundException";
111
+ readonly $fault: "client";
112
+ constructor(
113
+ opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>
114
+ );
115
+ }
116
+ export interface GetPipelineDefinitionInput {
117
+ pipelineId: string | undefined;
118
+ version?: string;
119
+ }
120
+ export interface ParameterAttribute {
121
+ key: string | undefined;
122
+ stringValue: string | undefined;
123
+ }
124
+ export interface ParameterObject {
125
+ id: string | undefined;
126
+ attributes: ParameterAttribute[] | undefined;
127
+ }
128
+ export interface GetPipelineDefinitionOutput {
129
+ pipelineObjects?: PipelineObject[];
130
+ parameterObjects?: ParameterObject[];
131
+ parameterValues?: ParameterValue[];
132
+ }
133
+ export interface ListPipelinesInput {
134
+ marker?: string;
135
+ }
136
+ export interface PipelineIdName {
137
+ id?: string;
138
+ name?: string;
139
+ }
140
+ export interface ListPipelinesOutput {
141
+ pipelineIdList: PipelineIdName[] | undefined;
142
+ marker?: string;
143
+ hasMoreResults?: boolean;
144
+ }
145
+ export interface InstanceIdentity {
146
+ document?: string;
147
+ signature?: string;
148
+ }
149
+ export interface PollForTaskInput {
150
+ workerGroup: string | undefined;
151
+ hostname?: string;
152
+ instanceIdentity?: InstanceIdentity;
153
+ }
154
+ export interface TaskObject {
155
+ taskId?: string;
156
+ pipelineId?: string;
157
+ attemptId?: string;
158
+ objects?: Record<string, PipelineObject>;
159
+ }
160
+ export interface PollForTaskOutput {
161
+ taskObject?: TaskObject;
162
+ }
163
+ export interface PutPipelineDefinitionInput {
164
+ pipelineId: string | undefined;
165
+ pipelineObjects: PipelineObject[] | undefined;
166
+ parameterObjects?: ParameterObject[];
167
+ parameterValues?: ParameterValue[];
168
+ }
169
+ export interface ValidationError {
170
+ id?: string;
171
+ errors?: string[];
172
+ }
173
+ export interface ValidationWarning {
174
+ id?: string;
175
+ warnings?: string[];
176
+ }
177
+ export interface PutPipelineDefinitionOutput {
178
+ validationErrors?: ValidationError[];
179
+ validationWarnings?: ValidationWarning[];
180
+ errored: boolean | undefined;
181
+ }
182
+ export declare enum OperatorType {
183
+ Between = "BETWEEN",
184
+ Equal = "EQ",
185
+ GreaterThanOrEqual = "GE",
186
+ LessThanOrEqual = "LE",
187
+ ReferenceEqual = "REF_EQ",
188
+ }
189
+ export interface Operator {
190
+ type?: OperatorType | string;
191
+ values?: string[];
192
+ }
193
+ export interface Selector {
194
+ fieldName?: string;
195
+ operator?: Operator;
196
+ }
197
+ export interface Query {
198
+ selectors?: Selector[];
199
+ }
200
+ export interface QueryObjectsInput {
201
+ pipelineId: string | undefined;
202
+ query?: Query;
203
+ sphere: string | undefined;
204
+ marker?: string;
205
+ limit?: number;
206
+ }
207
+ export interface QueryObjectsOutput {
208
+ ids?: string[];
209
+ marker?: string;
210
+ hasMoreResults?: boolean;
211
+ }
212
+ export interface RemoveTagsInput {
213
+ pipelineId: string | undefined;
214
+ tagKeys: string[] | undefined;
215
+ }
216
+ export interface RemoveTagsOutput {}
217
+ export interface ReportTaskProgressInput {
218
+ taskId: string | undefined;
219
+ fields?: Field[];
220
+ }
221
+ export interface ReportTaskProgressOutput {
222
+ canceled: boolean | undefined;
223
+ }
224
+ export interface ReportTaskRunnerHeartbeatInput {
225
+ taskrunnerId: string | undefined;
226
+ workerGroup?: string;
227
+ hostname?: string;
228
+ }
229
+ export interface ReportTaskRunnerHeartbeatOutput {
230
+ terminate: boolean | undefined;
231
+ }
232
+ export interface SetStatusInput {
233
+ pipelineId: string | undefined;
234
+ objectIds: string[] | undefined;
235
+ status: string | undefined;
236
+ }
237
+ export declare enum TaskStatus {
238
+ FAILED = "FAILED",
239
+ FALSE = "FALSE",
240
+ FINISHED = "FINISHED",
241
+ }
242
+ export interface SetTaskStatusInput {
243
+ taskId: string | undefined;
244
+ taskStatus: TaskStatus | string | undefined;
245
+ errorId?: string;
246
+ errorMessage?: string;
247
+ errorStackTrace?: string;
248
+ }
249
+ export interface SetTaskStatusOutput {}
250
+ export interface ValidatePipelineDefinitionInput {
251
+ pipelineId: string | undefined;
252
+ pipelineObjects: PipelineObject[] | undefined;
253
+ parameterObjects?: ParameterObject[];
254
+ parameterValues?: ParameterValue[];
255
+ }
256
+ export interface ValidatePipelineDefinitionOutput {
257
+ validationErrors?: ValidationError[];
258
+ validationWarnings?: ValidationWarning[];
259
+ errored: boolean | undefined;
260
+ }
261
+ export declare const ParameterValueFilterSensitiveLog: (
262
+ obj: ParameterValue
263
+ ) => any;
264
+ export declare const ActivatePipelineInputFilterSensitiveLog: (
265
+ obj: ActivatePipelineInput
266
+ ) => any;
267
+ export declare const ActivatePipelineOutputFilterSensitiveLog: (
268
+ obj: ActivatePipelineOutput
269
+ ) => any;
270
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
271
+ export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
272
+ export declare const AddTagsOutputFilterSensitiveLog: (
273
+ obj: AddTagsOutput
274
+ ) => any;
275
+ export declare const CreatePipelineInputFilterSensitiveLog: (
276
+ obj: CreatePipelineInput
277
+ ) => any;
278
+ export declare const CreatePipelineOutputFilterSensitiveLog: (
279
+ obj: CreatePipelineOutput
280
+ ) => any;
281
+ export declare const DeactivatePipelineInputFilterSensitiveLog: (
282
+ obj: DeactivatePipelineInput
283
+ ) => any;
284
+ export declare const DeactivatePipelineOutputFilterSensitiveLog: (
285
+ obj: DeactivatePipelineOutput
286
+ ) => any;
287
+ export declare const DeletePipelineInputFilterSensitiveLog: (
288
+ obj: DeletePipelineInput
289
+ ) => any;
290
+ export declare const DescribeObjectsInputFilterSensitiveLog: (
291
+ obj: DescribeObjectsInput
292
+ ) => any;
293
+ export declare const FieldFilterSensitiveLog: (obj: Field) => any;
294
+ export declare const PipelineObjectFilterSensitiveLog: (
295
+ obj: PipelineObject
296
+ ) => any;
297
+ export declare const DescribeObjectsOutputFilterSensitiveLog: (
298
+ obj: DescribeObjectsOutput
299
+ ) => any;
300
+ export declare const DescribePipelinesInputFilterSensitiveLog: (
301
+ obj: DescribePipelinesInput
302
+ ) => any;
303
+ export declare const PipelineDescriptionFilterSensitiveLog: (
304
+ obj: PipelineDescription
305
+ ) => any;
306
+ export declare const DescribePipelinesOutputFilterSensitiveLog: (
307
+ obj: DescribePipelinesOutput
308
+ ) => any;
309
+ export declare const EvaluateExpressionInputFilterSensitiveLog: (
310
+ obj: EvaluateExpressionInput
311
+ ) => any;
312
+ export declare const EvaluateExpressionOutputFilterSensitiveLog: (
313
+ obj: EvaluateExpressionOutput
314
+ ) => any;
315
+ export declare const GetPipelineDefinitionInputFilterSensitiveLog: (
316
+ obj: GetPipelineDefinitionInput
317
+ ) => any;
318
+ export declare const ParameterAttributeFilterSensitiveLog: (
319
+ obj: ParameterAttribute
320
+ ) => any;
321
+ export declare const ParameterObjectFilterSensitiveLog: (
322
+ obj: ParameterObject
323
+ ) => any;
324
+ export declare const GetPipelineDefinitionOutputFilterSensitiveLog: (
325
+ obj: GetPipelineDefinitionOutput
326
+ ) => any;
327
+ export declare const ListPipelinesInputFilterSensitiveLog: (
328
+ obj: ListPipelinesInput
329
+ ) => any;
330
+ export declare const PipelineIdNameFilterSensitiveLog: (
331
+ obj: PipelineIdName
332
+ ) => any;
333
+ export declare const ListPipelinesOutputFilterSensitiveLog: (
334
+ obj: ListPipelinesOutput
335
+ ) => any;
336
+ export declare const InstanceIdentityFilterSensitiveLog: (
337
+ obj: InstanceIdentity
338
+ ) => any;
339
+ export declare const PollForTaskInputFilterSensitiveLog: (
340
+ obj: PollForTaskInput
341
+ ) => any;
342
+ export declare const TaskObjectFilterSensitiveLog: (obj: TaskObject) => any;
343
+ export declare const PollForTaskOutputFilterSensitiveLog: (
344
+ obj: PollForTaskOutput
345
+ ) => any;
346
+ export declare const PutPipelineDefinitionInputFilterSensitiveLog: (
347
+ obj: PutPipelineDefinitionInput
348
+ ) => any;
349
+ export declare const ValidationErrorFilterSensitiveLog: (
350
+ obj: ValidationError
351
+ ) => any;
352
+ export declare const ValidationWarningFilterSensitiveLog: (
353
+ obj: ValidationWarning
354
+ ) => any;
355
+ export declare const PutPipelineDefinitionOutputFilterSensitiveLog: (
356
+ obj: PutPipelineDefinitionOutput
357
+ ) => any;
358
+ export declare const OperatorFilterSensitiveLog: (obj: Operator) => any;
359
+ export declare const SelectorFilterSensitiveLog: (obj: Selector) => any;
360
+ export declare const QueryFilterSensitiveLog: (obj: Query) => any;
361
+ export declare const QueryObjectsInputFilterSensitiveLog: (
362
+ obj: QueryObjectsInput
363
+ ) => any;
364
+ export declare const QueryObjectsOutputFilterSensitiveLog: (
365
+ obj: QueryObjectsOutput
366
+ ) => any;
367
+ export declare const RemoveTagsInputFilterSensitiveLog: (
368
+ obj: RemoveTagsInput
369
+ ) => any;
370
+ export declare const RemoveTagsOutputFilterSensitiveLog: (
371
+ obj: RemoveTagsOutput
372
+ ) => any;
373
+ export declare const ReportTaskProgressInputFilterSensitiveLog: (
374
+ obj: ReportTaskProgressInput
375
+ ) => any;
376
+ export declare const ReportTaskProgressOutputFilterSensitiveLog: (
377
+ obj: ReportTaskProgressOutput
378
+ ) => any;
379
+ export declare const ReportTaskRunnerHeartbeatInputFilterSensitiveLog: (
380
+ obj: ReportTaskRunnerHeartbeatInput
381
+ ) => any;
382
+ export declare const ReportTaskRunnerHeartbeatOutputFilterSensitiveLog: (
383
+ obj: ReportTaskRunnerHeartbeatOutput
384
+ ) => any;
385
+ export declare const SetStatusInputFilterSensitiveLog: (
386
+ obj: SetStatusInput
387
+ ) => any;
388
+ export declare const SetTaskStatusInputFilterSensitiveLog: (
389
+ obj: SetTaskStatusInput
390
+ ) => any;
391
+ export declare const SetTaskStatusOutputFilterSensitiveLog: (
392
+ obj: SetTaskStatusOutput
393
+ ) => any;
394
+ export declare const ValidatePipelineDefinitionInputFilterSensitiveLog: (
395
+ obj: ValidatePipelineDefinitionInput
396
+ ) => any;
397
+ export declare const ValidatePipelineDefinitionOutputFilterSensitiveLog: (
398
+ obj: ValidatePipelineDefinitionOutput
399
+ ) => any;