@aws-sdk/client-data-pipeline 3.952.0 → 3.953.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/dist-cjs/index.js +251 -154
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/ActivatePipelineCommand.js +2 -2
  4. package/dist-es/commands/AddTagsCommand.js +2 -2
  5. package/dist-es/commands/CreatePipelineCommand.js +2 -2
  6. package/dist-es/commands/DeactivatePipelineCommand.js +2 -2
  7. package/dist-es/commands/DeletePipelineCommand.js +2 -2
  8. package/dist-es/commands/DescribeObjectsCommand.js +2 -2
  9. package/dist-es/commands/DescribePipelinesCommand.js +2 -2
  10. package/dist-es/commands/EvaluateExpressionCommand.js +2 -2
  11. package/dist-es/commands/GetPipelineDefinitionCommand.js +2 -2
  12. package/dist-es/commands/ListPipelinesCommand.js +2 -2
  13. package/dist-es/commands/PollForTaskCommand.js +2 -2
  14. package/dist-es/commands/PutPipelineDefinitionCommand.js +2 -2
  15. package/dist-es/commands/QueryObjectsCommand.js +2 -2
  16. package/dist-es/commands/RemoveTagsCommand.js +2 -2
  17. package/dist-es/commands/ReportTaskProgressCommand.js +2 -2
  18. package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +2 -2
  19. package/dist-es/commands/SetStatusCommand.js +2 -2
  20. package/dist-es/commands/SetTaskStatusCommand.js +2 -2
  21. package/dist-es/commands/ValidatePipelineDefinitionCommand.js +2 -2
  22. package/dist-es/index.js +1 -0
  23. package/dist-es/runtimeConfig.shared.js +7 -6
  24. package/dist-es/schemas/schemas_0.js +144 -123
  25. package/dist-types/DataPipelineClient.d.ts +1 -10
  26. package/dist-types/index.d.ts +1 -0
  27. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  28. package/dist-types/runtimeConfig.d.ts +6 -2
  29. package/dist-types/runtimeConfig.native.d.ts +6 -2
  30. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  31. package/dist-types/schemas/schemas_0.d.ts +77 -93
  32. package/dist-types/ts3.4/DataPipelineClient.d.ts +0 -4
  33. package/dist-types/ts3.4/index.d.ts +1 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -94
  39. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class DataPipelineClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let DataPipelineServiceException$1 = class DataPipelineServiceException extends smithyClient.ServiceException {
113
+ class DataPipelineServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, DataPipelineServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let InternalServiceError$1 = class InternalServiceError extends DataPipelineServiceException$1 {
120
+ class InternalServiceError extends DataPipelineServiceException {
121
121
  name = "InternalServiceError";
122
122
  $fault = "server";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let InternalServiceError$1 = class InternalServiceError extends DataPipelineServ
128
128
  });
129
129
  Object.setPrototypeOf(this, InternalServiceError.prototype);
130
130
  }
131
- };
132
- let InvalidRequestException$1 = class InvalidRequestException extends DataPipelineServiceException$1 {
131
+ }
132
+ class InvalidRequestException extends DataPipelineServiceException {
133
133
  name = "InvalidRequestException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends DataPipeli
140
140
  });
141
141
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
142
142
  }
143
- };
144
- let PipelineDeletedException$1 = class PipelineDeletedException extends DataPipelineServiceException$1 {
143
+ }
144
+ class PipelineDeletedException extends DataPipelineServiceException {
145
145
  name = "PipelineDeletedException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let PipelineDeletedException$1 = class PipelineDeletedException extends DataPipe
152
152
  });
153
153
  Object.setPrototypeOf(this, PipelineDeletedException.prototype);
154
154
  }
155
- };
156
- let PipelineNotFoundException$1 = class PipelineNotFoundException extends DataPipelineServiceException$1 {
155
+ }
156
+ class PipelineNotFoundException extends DataPipelineServiceException {
157
157
  name = "PipelineNotFoundException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let PipelineNotFoundException$1 = class PipelineNotFoundException extends DataPi
164
164
  });
165
165
  Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
166
166
  }
167
- };
168
- let TaskNotFoundException$1 = class TaskNotFoundException extends DataPipelineServiceException$1 {
167
+ }
168
+ class TaskNotFoundException extends DataPipelineServiceException {
169
169
  name = "TaskNotFoundException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,7 +176,7 @@ let TaskNotFoundException$1 = class TaskNotFoundException extends DataPipelineSe
176
176
  });
177
177
  Object.setPrototypeOf(this, TaskNotFoundException.prototype);
178
178
  }
179
- };
179
+ }
180
180
 
181
181
  const _AP = "ActivatePipeline";
182
182
  const _API = "ActivatePipelineInput";
@@ -331,7 +331,7 @@ const _val = "value";
331
331
  const _w = "warnings";
332
332
  const _wG = "workerGroup";
333
333
  const n0 = "com.amazonaws.datapipeline";
334
- var ActivatePipelineInput = [
334
+ var ActivatePipelineInput$ = [
335
335
  3,
336
336
  n0,
337
337
  _API,
@@ -339,16 +339,16 @@ var ActivatePipelineInput = [
339
339
  [_pI, _pV, _sT],
340
340
  [0, () => ParameterValueList, 4],
341
341
  ];
342
- var ActivatePipelineOutput = [3, n0, _APO, 0, [], []];
343
- var AddTagsInput = [3, n0, _ATI, 0, [_pI, _t], [0, () => tagList]];
344
- var AddTagsOutput = [3, n0, _ATO, 0, [], []];
345
- var CreatePipelineInput = [3, n0, _CPI, 0, [_n, _uI, _d, _t], [0, 0, 0, () => tagList]];
346
- var CreatePipelineOutput = [3, n0, _CPO, 0, [_pI], [0]];
347
- var DeactivatePipelineInput = [3, n0, _DPI, 0, [_pI, _cA], [0, 2]];
348
- var DeactivatePipelineOutput = [3, n0, _DPO, 0, [], []];
349
- var DeletePipelineInput = [3, n0, _DPIe, 0, [_pI], [0]];
350
- var DescribeObjectsInput = [3, n0, _DOI, 0, [_pI, _oI, _eE, _m], [0, 64 | 0, 2, 0]];
351
- var DescribeObjectsOutput = [
342
+ var ActivatePipelineOutput$ = [3, n0, _APO, 0, [], []];
343
+ var AddTagsInput$ = [3, n0, _ATI, 0, [_pI, _t], [0, () => tagList]];
344
+ var AddTagsOutput$ = [3, n0, _ATO, 0, [], []];
345
+ var CreatePipelineInput$ = [3, n0, _CPI, 0, [_n, _uI, _d, _t], [0, 0, 0, () => tagList]];
346
+ var CreatePipelineOutput$ = [3, n0, _CPO, 0, [_pI], [0]];
347
+ var DeactivatePipelineInput$ = [3, n0, _DPI, 0, [_pI, _cA], [0, 2]];
348
+ var DeactivatePipelineOutput$ = [3, n0, _DPO, 0, [], []];
349
+ var DeletePipelineInput$ = [3, n0, _DPIe, 0, [_pI], [0]];
350
+ var DescribeObjectsInput$ = [3, n0, _DOI, 0, [_pI, _oI, _eE, _m], [0, 64 | 0, 2, 0]];
351
+ var DescribeObjectsOutput$ = [
352
352
  3,
353
353
  n0,
354
354
  _DOO,
@@ -356,13 +356,13 @@ var DescribeObjectsOutput = [
356
356
  [_pO, _m, _hMR],
357
357
  [() => PipelineObjectList, 0, 2],
358
358
  ];
359
- var DescribePipelinesInput = [3, n0, _DPIes, 0, [_pIi], [64 | 0]];
360
- var DescribePipelinesOutput = [3, n0, _DPOe, 0, [_pDL], [() => PipelineDescriptionList]];
361
- var EvaluateExpressionInput = [3, n0, _EEI, 0, [_pI, _oIb, _e], [0, 0, 0]];
362
- var EvaluateExpressionOutput = [3, n0, _EEO, 0, [_eEv], [0]];
363
- var Field = [3, n0, _F, 0, [_k, _sV, _rV], [0, 0, 0]];
364
- var GetPipelineDefinitionInput = [3, n0, _GPDI, 0, [_pI, _v], [0, 0]];
365
- var GetPipelineDefinitionOutput = [
359
+ var DescribePipelinesInput$ = [3, n0, _DPIes, 0, [_pIi], [64 | 0]];
360
+ var DescribePipelinesOutput$ = [3, n0, _DPOe, 0, [_pDL], [() => PipelineDescriptionList]];
361
+ var EvaluateExpressionInput$ = [3, n0, _EEI, 0, [_pI, _oIb, _e], [0, 0, 0]];
362
+ var EvaluateExpressionOutput$ = [3, n0, _EEO, 0, [_eEv], [0]];
363
+ var Field$ = [3, n0, _F, 0, [_k, _sV, _rV], [0, 0, 0]];
364
+ var GetPipelineDefinitionInput$ = [3, n0, _GPDI, 0, [_pI, _v], [0, 0]];
365
+ var GetPipelineDefinitionOutput$ = [
366
366
  3,
367
367
  n0,
368
368
  _GPDO,
@@ -370,20 +370,20 @@ var GetPipelineDefinitionOutput = [
370
370
  [_pO, _pOa, _pV],
371
371
  [() => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList],
372
372
  ];
373
- var InstanceIdentity = [3, n0, _II, 0, [_do, _s], [0, 0]];
374
- var InternalServiceError = [-3, n0, _ISE, { [_er]: _se }, [_me], [0]];
375
- schema.TypeRegistry.for(n0).registerError(InternalServiceError, InternalServiceError$1);
376
- var InvalidRequestException = [-3, n0, _IRE, { [_er]: _c }, [_me], [0]];
377
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
378
- var ListPipelinesInput = [3, n0, _LPI, 0, [_m], [0]];
379
- var ListPipelinesOutput = [3, n0, _LPO, 0, [_pIL, _m, _hMR], [() => pipelineList, 0, 2]];
380
- var Operator = [3, n0, _O, 0, [_ty, _va], [0, 64 | 0]];
381
- var ParameterAttribute = [3, n0, _PA, 0, [_k, _sV], [0, 0]];
382
- var ParameterObject = [3, n0, _PO, 0, [_i, _a], [0, () => ParameterAttributeList]];
383
- var ParameterValue = [3, n0, _PV, 0, [_i, _sV], [0, 0]];
384
- var PipelineDeletedException = [-3, n0, _PDE, { [_er]: _c }, [_me], [0]];
385
- schema.TypeRegistry.for(n0).registerError(PipelineDeletedException, PipelineDeletedException$1);
386
- var PipelineDescription = [
373
+ var InstanceIdentity$ = [3, n0, _II, 0, [_do, _s], [0, 0]];
374
+ var InternalServiceError$ = [-3, n0, _ISE, { [_er]: _se }, [_me], [0]];
375
+ schema.TypeRegistry.for(n0).registerError(InternalServiceError$, InternalServiceError);
376
+ var InvalidRequestException$ = [-3, n0, _IRE, { [_er]: _c }, [_me], [0]];
377
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
378
+ var ListPipelinesInput$ = [3, n0, _LPI, 0, [_m], [0]];
379
+ var ListPipelinesOutput$ = [3, n0, _LPO, 0, [_pIL, _m, _hMR], [() => pipelineList, 0, 2]];
380
+ var Operator$ = [3, n0, _O, 0, [_ty, _va], [0, 64 | 0]];
381
+ var ParameterAttribute$ = [3, n0, _PA, 0, [_k, _sV], [0, 0]];
382
+ var ParameterObject$ = [3, n0, _PO, 0, [_i, _a], [0, () => ParameterAttributeList]];
383
+ var ParameterValue$ = [3, n0, _PV, 0, [_i, _sV], [0, 0]];
384
+ var PipelineDeletedException$ = [-3, n0, _PDE, { [_er]: _c }, [_me], [0]];
385
+ schema.TypeRegistry.for(n0).registerError(PipelineDeletedException$, PipelineDeletedException);
386
+ var PipelineDescription$ = [
387
387
  3,
388
388
  n0,
389
389
  _PD,
@@ -391,13 +391,20 @@ var PipelineDescription = [
391
391
  [_pI, _n, _f, _d, _t],
392
392
  [0, 0, () => fieldList, 0, () => tagList],
393
393
  ];
394
- var PipelineIdName = [3, n0, _PIN, 0, [_i, _n], [0, 0]];
395
- var PipelineNotFoundException = [-3, n0, _PNFE, { [_er]: _c }, [_me], [0]];
396
- schema.TypeRegistry.for(n0).registerError(PipelineNotFoundException, PipelineNotFoundException$1);
397
- var PipelineObject = [3, n0, _POi, 0, [_i, _n, _f], [0, 0, () => fieldList]];
398
- var PollForTaskInput = [3, n0, _PFTI, 0, [_wG, _h, _iI], [0, 0, () => InstanceIdentity]];
399
- var PollForTaskOutput = [3, n0, _PFTO, 0, [_tO], [() => TaskObject]];
400
- var PutPipelineDefinitionInput = [
394
+ var PipelineIdName$ = [3, n0, _PIN, 0, [_i, _n], [0, 0]];
395
+ var PipelineNotFoundException$ = [-3, n0, _PNFE, { [_er]: _c }, [_me], [0]];
396
+ schema.TypeRegistry.for(n0).registerError(PipelineNotFoundException$, PipelineNotFoundException);
397
+ var PipelineObject$ = [3, n0, _POi, 0, [_i, _n, _f], [0, 0, () => fieldList]];
398
+ var PollForTaskInput$ = [
399
+ 3,
400
+ n0,
401
+ _PFTI,
402
+ 0,
403
+ [_wG, _h, _iI],
404
+ [0, 0, () => InstanceIdentity$],
405
+ ];
406
+ var PollForTaskOutput$ = [3, n0, _PFTO, 0, [_tO], [() => TaskObject$]];
407
+ var PutPipelineDefinitionInput$ = [
401
408
  3,
402
409
  n0,
403
410
  _PPDI,
@@ -405,7 +412,7 @@ var PutPipelineDefinitionInput = [
405
412
  [_pI, _pO, _pOa, _pV],
406
413
  [0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList],
407
414
  ];
408
- var PutPipelineDefinitionOutput = [
415
+ var PutPipelineDefinitionOutput$ = [
409
416
  3,
410
417
  n0,
411
418
  _PPDO,
@@ -413,30 +420,30 @@ var PutPipelineDefinitionOutput = [
413
420
  [_vE, _vW, _err],
414
421
  [() => ValidationErrors, () => ValidationWarnings, 2],
415
422
  ];
416
- var Query = [3, n0, _Q, 0, [_sel], [() => SelectorList]];
417
- var QueryObjectsInput = [
423
+ var Query$ = [3, n0, _Q, 0, [_sel], [() => SelectorList]];
424
+ var QueryObjectsInput$ = [
418
425
  3,
419
426
  n0,
420
427
  _QOI,
421
428
  0,
422
429
  [_pI, _q, _sp, _m, _l],
423
- [0, () => Query, 0, 0, 1],
430
+ [0, () => Query$, 0, 0, 1],
424
431
  ];
425
- var QueryObjectsOutput = [3, n0, _QOO, 0, [_id, _m, _hMR], [64 | 0, 0, 2]];
426
- var RemoveTagsInput = [3, n0, _RTI, 0, [_pI, _tK], [0, 64 | 0]];
427
- var RemoveTagsOutput = [3, n0, _RTO, 0, [], []];
428
- var ReportTaskProgressInput = [3, n0, _RTPI, 0, [_tI, _f], [0, () => fieldList]];
429
- var ReportTaskProgressOutput = [3, n0, _RTPO, 0, [_ca], [2]];
430
- var ReportTaskRunnerHeartbeatInput = [3, n0, _RTRHI, 0, [_tIa, _wG, _h], [0, 0, 0]];
431
- var ReportTaskRunnerHeartbeatOutput = [3, n0, _RTRHO, 0, [_te], [2]];
432
- var Selector = [3, n0, _S, 0, [_fN, _o], [0, () => Operator]];
433
- var SetStatusInput = [3, n0, _SSI, 0, [_pI, _oI, _st], [0, 64 | 0, 0]];
434
- var SetTaskStatusInput = [3, n0, _STSI, 0, [_tI, _tS, _eI, _eM, _eST], [0, 0, 0, 0, 0]];
435
- var SetTaskStatusOutput = [3, n0, _STSO, 0, [], []];
436
- var Tag = [3, n0, _T, 0, [_k, _val], [0, 0]];
437
- var TaskNotFoundException = [-3, n0, _TNFE, { [_er]: _c }, [_me], [0]];
438
- schema.TypeRegistry.for(n0).registerError(TaskNotFoundException, TaskNotFoundException$1);
439
- var TaskObject = [
432
+ var QueryObjectsOutput$ = [3, n0, _QOO, 0, [_id, _m, _hMR], [64 | 0, 0, 2]];
433
+ var RemoveTagsInput$ = [3, n0, _RTI, 0, [_pI, _tK], [0, 64 | 0]];
434
+ var RemoveTagsOutput$ = [3, n0, _RTO, 0, [], []];
435
+ var ReportTaskProgressInput$ = [3, n0, _RTPI, 0, [_tI, _f], [0, () => fieldList]];
436
+ var ReportTaskProgressOutput$ = [3, n0, _RTPO, 0, [_ca], [2]];
437
+ var ReportTaskRunnerHeartbeatInput$ = [3, n0, _RTRHI, 0, [_tIa, _wG, _h], [0, 0, 0]];
438
+ var ReportTaskRunnerHeartbeatOutput$ = [3, n0, _RTRHO, 0, [_te], [2]];
439
+ var Selector$ = [3, n0, _S, 0, [_fN, _o], [0, () => Operator$]];
440
+ var SetStatusInput$ = [3, n0, _SSI, 0, [_pI, _oI, _st], [0, 64 | 0, 0]];
441
+ var SetTaskStatusInput$ = [3, n0, _STSI, 0, [_tI, _tS, _eI, _eM, _eST], [0, 0, 0, 0, 0]];
442
+ var SetTaskStatusOutput$ = [3, n0, _STSO, 0, [], []];
443
+ var Tag$ = [3, n0, _T, 0, [_k, _val], [0, 0]];
444
+ var TaskNotFoundException$ = [-3, n0, _TNFE, { [_er]: _c }, [_me], [0]];
445
+ schema.TypeRegistry.for(n0).registerError(TaskNotFoundException$, TaskNotFoundException);
446
+ var TaskObject$ = [
440
447
  3,
441
448
  n0,
442
449
  _TO,
@@ -444,7 +451,7 @@ var TaskObject = [
444
451
  [_tI, _pI, _aI, _ob],
445
452
  [0, 0, 0, () => PipelineObjectMap],
446
453
  ];
447
- var ValidatePipelineDefinitionInput = [
454
+ var ValidatePipelineDefinitionInput$ = [
448
455
  3,
449
456
  n0,
450
457
  _VPDI,
@@ -452,7 +459,7 @@ var ValidatePipelineDefinitionInput = [
452
459
  [_pI, _pO, _pOa, _pV],
453
460
  [0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList],
454
461
  ];
455
- var ValidatePipelineDefinitionOutput = [
462
+ var ValidatePipelineDefinitionOutput$ = [
456
463
  3,
457
464
  n0,
458
465
  _VPDO,
@@ -460,118 +467,132 @@ var ValidatePipelineDefinitionOutput = [
460
467
  [_vE, _vW, _err],
461
468
  [() => ValidationErrors, () => ValidationWarnings, 2],
462
469
  ];
463
- var ValidationError = [3, n0, _VE, 0, [_i, _erro], [0, 64 | 0]];
464
- var ValidationWarning = [3, n0, _VW, 0, [_i, _w], [0, 64 | 0]];
470
+ var ValidationError$ = [3, n0, _VE, 0, [_i, _erro], [0, 64 | 0]];
471
+ var ValidationWarning$ = [3, n0, _VW, 0, [_i, _w], [0, 64 | 0]];
465
472
  var __Unit = "unit";
466
- var DataPipelineServiceException = [-3, _sm, "DataPipelineServiceException", 0, [], []];
467
- schema.TypeRegistry.for(_sm).registerError(DataPipelineServiceException, DataPipelineServiceException$1);
468
- var fieldList = [1, n0, _fL, 0, () => Field];
469
- var ParameterAttributeList = [1, n0, _PAL, 0, () => ParameterAttribute];
470
- var ParameterObjectList = [1, n0, _POL, 0, () => ParameterObject];
471
- var ParameterValueList = [1, n0, _PVL, 0, () => ParameterValue];
472
- var PipelineDescriptionList = [1, n0, _PDL, 0, () => PipelineDescription];
473
- var pipelineList = [1, n0, _pL, 0, () => PipelineIdName];
474
- var PipelineObjectList = [1, n0, _POLi, 0, () => PipelineObject];
475
- var SelectorList = [1, n0, _SL, 0, () => Selector];
476
- var tagList = [1, n0, _tL, 0, () => Tag];
477
- var ValidationErrors = [1, n0, _VEa, 0, () => ValidationError];
478
- var ValidationWarnings = [1, n0, _VWa, 0, () => ValidationWarning];
479
- var PipelineObjectMap = [2, n0, _POM, 0, 0, () => PipelineObject];
480
- var ActivatePipeline = [
473
+ var DataPipelineServiceException$ = [-3, _sm, "DataPipelineServiceException", 0, [], []];
474
+ schema.TypeRegistry.for(_sm).registerError(DataPipelineServiceException$, DataPipelineServiceException);
475
+ var fieldList = [1, n0, _fL, 0, () => Field$];
476
+ var ParameterAttributeList = [1, n0, _PAL, 0, () => ParameterAttribute$];
477
+ var ParameterObjectList = [1, n0, _POL, 0, () => ParameterObject$];
478
+ var ParameterValueList = [1, n0, _PVL, 0, () => ParameterValue$];
479
+ var PipelineDescriptionList = [1, n0, _PDL, 0, () => PipelineDescription$];
480
+ var pipelineList = [1, n0, _pL, 0, () => PipelineIdName$];
481
+ var PipelineObjectList = [1, n0, _POLi, 0, () => PipelineObject$];
482
+ var SelectorList = [1, n0, _SL, 0, () => Selector$];
483
+ var tagList = [1, n0, _tL, 0, () => Tag$];
484
+ var ValidationErrors = [1, n0, _VEa, 0, () => ValidationError$];
485
+ var ValidationWarnings = [1, n0, _VWa, 0, () => ValidationWarning$];
486
+ var PipelineObjectMap = [2, n0, _POM, 0, 0, () => PipelineObject$];
487
+ var ActivatePipeline$ = [
481
488
  9,
482
489
  n0,
483
490
  _AP,
484
491
  0,
485
- () => ActivatePipelineInput,
486
- () => ActivatePipelineOutput,
492
+ () => ActivatePipelineInput$,
493
+ () => ActivatePipelineOutput$,
487
494
  ];
488
- var AddTags = [9, n0, _AT, 0, () => AddTagsInput, () => AddTagsOutput];
489
- var CreatePipeline = [
495
+ var AddTags$ = [9, n0, _AT, 0, () => AddTagsInput$, () => AddTagsOutput$];
496
+ var CreatePipeline$ = [
490
497
  9,
491
498
  n0,
492
499
  _CP,
493
500
  0,
494
- () => CreatePipelineInput,
495
- () => CreatePipelineOutput,
501
+ () => CreatePipelineInput$,
502
+ () => CreatePipelineOutput$,
496
503
  ];
497
- var DeactivatePipeline = [
504
+ var DeactivatePipeline$ = [
498
505
  9,
499
506
  n0,
500
507
  _DP,
501
508
  0,
502
- () => DeactivatePipelineInput,
503
- () => DeactivatePipelineOutput,
509
+ () => DeactivatePipelineInput$,
510
+ () => DeactivatePipelineOutput$,
504
511
  ];
505
- var DeletePipeline = [9, n0, _DPe, 0, () => DeletePipelineInput, () => __Unit];
506
- var DescribeObjects = [
512
+ var DeletePipeline$ = [9, n0, _DPe, 0, () => DeletePipelineInput$, () => __Unit];
513
+ var DescribeObjects$ = [
507
514
  9,
508
515
  n0,
509
516
  _DO,
510
517
  0,
511
- () => DescribeObjectsInput,
512
- () => DescribeObjectsOutput,
518
+ () => DescribeObjectsInput$,
519
+ () => DescribeObjectsOutput$,
513
520
  ];
514
- var DescribePipelines = [
521
+ var DescribePipelines$ = [
515
522
  9,
516
523
  n0,
517
524
  _DPes,
518
525
  0,
519
- () => DescribePipelinesInput,
520
- () => DescribePipelinesOutput,
526
+ () => DescribePipelinesInput$,
527
+ () => DescribePipelinesOutput$,
521
528
  ];
522
- var EvaluateExpression = [
529
+ var EvaluateExpression$ = [
523
530
  9,
524
531
  n0,
525
532
  _EE,
526
533
  0,
527
- () => EvaluateExpressionInput,
528
- () => EvaluateExpressionOutput,
534
+ () => EvaluateExpressionInput$,
535
+ () => EvaluateExpressionOutput$,
529
536
  ];
530
- var GetPipelineDefinition = [
537
+ var GetPipelineDefinition$ = [
531
538
  9,
532
539
  n0,
533
540
  _GPD,
534
541
  0,
535
- () => GetPipelineDefinitionInput,
536
- () => GetPipelineDefinitionOutput,
542
+ () => GetPipelineDefinitionInput$,
543
+ () => GetPipelineDefinitionOutput$,
544
+ ];
545
+ var ListPipelines$ = [
546
+ 9,
547
+ n0,
548
+ _LP,
549
+ 0,
550
+ () => ListPipelinesInput$,
551
+ () => ListPipelinesOutput$,
537
552
  ];
538
- var ListPipelines = [9, n0, _LP, 0, () => ListPipelinesInput, () => ListPipelinesOutput];
539
- var PollForTask = [9, n0, _PFT, 0, () => PollForTaskInput, () => PollForTaskOutput];
540
- var PutPipelineDefinition = [
553
+ var PollForTask$ = [9, n0, _PFT, 0, () => PollForTaskInput$, () => PollForTaskOutput$];
554
+ var PutPipelineDefinition$ = [
541
555
  9,
542
556
  n0,
543
557
  _PPD,
544
558
  0,
545
- () => PutPipelineDefinitionInput,
546
- () => PutPipelineDefinitionOutput,
559
+ () => PutPipelineDefinitionInput$,
560
+ () => PutPipelineDefinitionOutput$,
547
561
  ];
548
- var QueryObjects = [9, n0, _QO, 0, () => QueryObjectsInput, () => QueryObjectsOutput];
549
- var RemoveTags = [9, n0, _RT, 0, () => RemoveTagsInput, () => RemoveTagsOutput];
550
- var ReportTaskProgress = [
562
+ var QueryObjects$ = [9, n0, _QO, 0, () => QueryObjectsInput$, () => QueryObjectsOutput$];
563
+ var RemoveTags$ = [9, n0, _RT, 0, () => RemoveTagsInput$, () => RemoveTagsOutput$];
564
+ var ReportTaskProgress$ = [
551
565
  9,
552
566
  n0,
553
567
  _RTP,
554
568
  0,
555
- () => ReportTaskProgressInput,
556
- () => ReportTaskProgressOutput,
569
+ () => ReportTaskProgressInput$,
570
+ () => ReportTaskProgressOutput$,
557
571
  ];
558
- var ReportTaskRunnerHeartbeat = [
572
+ var ReportTaskRunnerHeartbeat$ = [
559
573
  9,
560
574
  n0,
561
575
  _RTRH,
562
576
  0,
563
- () => ReportTaskRunnerHeartbeatInput,
564
- () => ReportTaskRunnerHeartbeatOutput,
577
+ () => ReportTaskRunnerHeartbeatInput$,
578
+ () => ReportTaskRunnerHeartbeatOutput$,
579
+ ];
580
+ var SetStatus$ = [9, n0, _SS, 0, () => SetStatusInput$, () => __Unit];
581
+ var SetTaskStatus$ = [
582
+ 9,
583
+ n0,
584
+ _STS,
585
+ 0,
586
+ () => SetTaskStatusInput$,
587
+ () => SetTaskStatusOutput$,
565
588
  ];
566
- var SetStatus = [9, n0, _SS, 0, () => SetStatusInput, () => __Unit];
567
- var SetTaskStatus = [9, n0, _STS, 0, () => SetTaskStatusInput, () => SetTaskStatusOutput];
568
- var ValidatePipelineDefinition = [
589
+ var ValidatePipelineDefinition$ = [
569
590
  9,
570
591
  n0,
571
592
  _VPD,
572
593
  0,
573
- () => ValidatePipelineDefinitionInput,
574
- () => ValidatePipelineDefinitionOutput,
594
+ () => ValidatePipelineDefinitionInput$,
595
+ () => ValidatePipelineDefinitionOutput$,
575
596
  ];
576
597
 
577
598
  class ActivatePipelineCommand extends smithyClient.Command
@@ -582,7 +603,7 @@ class ActivatePipelineCommand extends smithyClient.Command
582
603
  })
583
604
  .s("DataPipeline", "ActivatePipeline", {})
584
605
  .n("DataPipelineClient", "ActivatePipelineCommand")
585
- .sc(ActivatePipeline)
606
+ .sc(ActivatePipeline$)
586
607
  .build() {
587
608
  }
588
609
 
@@ -594,7 +615,7 @@ class AddTagsCommand extends smithyClient.Command
594
615
  })
595
616
  .s("DataPipeline", "AddTags", {})
596
617
  .n("DataPipelineClient", "AddTagsCommand")
597
- .sc(AddTags)
618
+ .sc(AddTags$)
598
619
  .build() {
599
620
  }
600
621
 
@@ -606,7 +627,7 @@ class CreatePipelineCommand extends smithyClient.Command
606
627
  })
607
628
  .s("DataPipeline", "CreatePipeline", {})
608
629
  .n("DataPipelineClient", "CreatePipelineCommand")
609
- .sc(CreatePipeline)
630
+ .sc(CreatePipeline$)
610
631
  .build() {
611
632
  }
612
633
 
@@ -618,7 +639,7 @@ class DeactivatePipelineCommand extends smithyClient.Command
618
639
  })
619
640
  .s("DataPipeline", "DeactivatePipeline", {})
620
641
  .n("DataPipelineClient", "DeactivatePipelineCommand")
621
- .sc(DeactivatePipeline)
642
+ .sc(DeactivatePipeline$)
622
643
  .build() {
623
644
  }
624
645
 
@@ -630,7 +651,7 @@ class DeletePipelineCommand extends smithyClient.Command
630
651
  })
631
652
  .s("DataPipeline", "DeletePipeline", {})
632
653
  .n("DataPipelineClient", "DeletePipelineCommand")
633
- .sc(DeletePipeline)
654
+ .sc(DeletePipeline$)
634
655
  .build() {
635
656
  }
636
657
 
@@ -642,7 +663,7 @@ class DescribeObjectsCommand extends smithyClient.Command
642
663
  })
643
664
  .s("DataPipeline", "DescribeObjects", {})
644
665
  .n("DataPipelineClient", "DescribeObjectsCommand")
645
- .sc(DescribeObjects)
666
+ .sc(DescribeObjects$)
646
667
  .build() {
647
668
  }
648
669
 
@@ -654,7 +675,7 @@ class DescribePipelinesCommand extends smithyClient.Command
654
675
  })
655
676
  .s("DataPipeline", "DescribePipelines", {})
656
677
  .n("DataPipelineClient", "DescribePipelinesCommand")
657
- .sc(DescribePipelines)
678
+ .sc(DescribePipelines$)
658
679
  .build() {
659
680
  }
660
681
 
@@ -666,7 +687,7 @@ class EvaluateExpressionCommand extends smithyClient.Command
666
687
  })
667
688
  .s("DataPipeline", "EvaluateExpression", {})
668
689
  .n("DataPipelineClient", "EvaluateExpressionCommand")
669
- .sc(EvaluateExpression)
690
+ .sc(EvaluateExpression$)
670
691
  .build() {
671
692
  }
672
693
 
@@ -678,7 +699,7 @@ class GetPipelineDefinitionCommand extends smithyClient.Command
678
699
  })
679
700
  .s("DataPipeline", "GetPipelineDefinition", {})
680
701
  .n("DataPipelineClient", "GetPipelineDefinitionCommand")
681
- .sc(GetPipelineDefinition)
702
+ .sc(GetPipelineDefinition$)
682
703
  .build() {
683
704
  }
684
705
 
@@ -690,7 +711,7 @@ class ListPipelinesCommand extends smithyClient.Command
690
711
  })
691
712
  .s("DataPipeline", "ListPipelines", {})
692
713
  .n("DataPipelineClient", "ListPipelinesCommand")
693
- .sc(ListPipelines)
714
+ .sc(ListPipelines$)
694
715
  .build() {
695
716
  }
696
717
 
@@ -702,7 +723,7 @@ class PollForTaskCommand extends smithyClient.Command
702
723
  })
703
724
  .s("DataPipeline", "PollForTask", {})
704
725
  .n("DataPipelineClient", "PollForTaskCommand")
705
- .sc(PollForTask)
726
+ .sc(PollForTask$)
706
727
  .build() {
707
728
  }
708
729
 
@@ -714,7 +735,7 @@ class PutPipelineDefinitionCommand extends smithyClient.Command
714
735
  })
715
736
  .s("DataPipeline", "PutPipelineDefinition", {})
716
737
  .n("DataPipelineClient", "PutPipelineDefinitionCommand")
717
- .sc(PutPipelineDefinition)
738
+ .sc(PutPipelineDefinition$)
718
739
  .build() {
719
740
  }
720
741
 
@@ -726,7 +747,7 @@ class QueryObjectsCommand extends smithyClient.Command
726
747
  })
727
748
  .s("DataPipeline", "QueryObjects", {})
728
749
  .n("DataPipelineClient", "QueryObjectsCommand")
729
- .sc(QueryObjects)
750
+ .sc(QueryObjects$)
730
751
  .build() {
731
752
  }
732
753
 
@@ -738,7 +759,7 @@ class RemoveTagsCommand extends smithyClient.Command
738
759
  })
739
760
  .s("DataPipeline", "RemoveTags", {})
740
761
  .n("DataPipelineClient", "RemoveTagsCommand")
741
- .sc(RemoveTags)
762
+ .sc(RemoveTags$)
742
763
  .build() {
743
764
  }
744
765
 
@@ -750,7 +771,7 @@ class ReportTaskProgressCommand extends smithyClient.Command
750
771
  })
751
772
  .s("DataPipeline", "ReportTaskProgress", {})
752
773
  .n("DataPipelineClient", "ReportTaskProgressCommand")
753
- .sc(ReportTaskProgress)
774
+ .sc(ReportTaskProgress$)
754
775
  .build() {
755
776
  }
756
777
 
@@ -762,7 +783,7 @@ class ReportTaskRunnerHeartbeatCommand extends smithyClient.Command
762
783
  })
763
784
  .s("DataPipeline", "ReportTaskRunnerHeartbeat", {})
764
785
  .n("DataPipelineClient", "ReportTaskRunnerHeartbeatCommand")
765
- .sc(ReportTaskRunnerHeartbeat)
786
+ .sc(ReportTaskRunnerHeartbeat$)
766
787
  .build() {
767
788
  }
768
789
 
@@ -774,7 +795,7 @@ class SetStatusCommand extends smithyClient.Command
774
795
  })
775
796
  .s("DataPipeline", "SetStatus", {})
776
797
  .n("DataPipelineClient", "SetStatusCommand")
777
- .sc(SetStatus)
798
+ .sc(SetStatus$)
778
799
  .build() {
779
800
  }
780
801
 
@@ -786,7 +807,7 @@ class SetTaskStatusCommand extends smithyClient.Command
786
807
  })
787
808
  .s("DataPipeline", "SetTaskStatus", {})
788
809
  .n("DataPipelineClient", "SetTaskStatusCommand")
789
- .sc(SetTaskStatus)
810
+ .sc(SetTaskStatus$)
790
811
  .build() {
791
812
  }
792
813
 
@@ -798,7 +819,7 @@ class ValidatePipelineDefinitionCommand extends smithyClient.Command
798
819
  })
799
820
  .s("DataPipeline", "ValidatePipelineDefinition", {})
800
821
  .n("DataPipelineClient", "ValidatePipelineDefinitionCommand")
801
- .sc(ValidatePipelineDefinition)
822
+ .sc(ValidatePipelineDefinition$)
802
823
  .build() {
803
824
  }
804
825
 
@@ -854,35 +875,111 @@ Object.defineProperty(exports, "__Client", {
854
875
  enumerable: true,
855
876
  get: function () { return smithyClient.Client; }
856
877
  });
878
+ exports.ActivatePipeline$ = ActivatePipeline$;
857
879
  exports.ActivatePipelineCommand = ActivatePipelineCommand;
880
+ exports.ActivatePipelineInput$ = ActivatePipelineInput$;
881
+ exports.ActivatePipelineOutput$ = ActivatePipelineOutput$;
882
+ exports.AddTags$ = AddTags$;
858
883
  exports.AddTagsCommand = AddTagsCommand;
884
+ exports.AddTagsInput$ = AddTagsInput$;
885
+ exports.AddTagsOutput$ = AddTagsOutput$;
886
+ exports.CreatePipeline$ = CreatePipeline$;
859
887
  exports.CreatePipelineCommand = CreatePipelineCommand;
888
+ exports.CreatePipelineInput$ = CreatePipelineInput$;
889
+ exports.CreatePipelineOutput$ = CreatePipelineOutput$;
860
890
  exports.DataPipeline = DataPipeline;
861
891
  exports.DataPipelineClient = DataPipelineClient;
862
- exports.DataPipelineServiceException = DataPipelineServiceException$1;
892
+ exports.DataPipelineServiceException = DataPipelineServiceException;
893
+ exports.DataPipelineServiceException$ = DataPipelineServiceException$;
894
+ exports.DeactivatePipeline$ = DeactivatePipeline$;
863
895
  exports.DeactivatePipelineCommand = DeactivatePipelineCommand;
896
+ exports.DeactivatePipelineInput$ = DeactivatePipelineInput$;
897
+ exports.DeactivatePipelineOutput$ = DeactivatePipelineOutput$;
898
+ exports.DeletePipeline$ = DeletePipeline$;
864
899
  exports.DeletePipelineCommand = DeletePipelineCommand;
900
+ exports.DeletePipelineInput$ = DeletePipelineInput$;
901
+ exports.DescribeObjects$ = DescribeObjects$;
865
902
  exports.DescribeObjectsCommand = DescribeObjectsCommand;
903
+ exports.DescribeObjectsInput$ = DescribeObjectsInput$;
904
+ exports.DescribeObjectsOutput$ = DescribeObjectsOutput$;
905
+ exports.DescribePipelines$ = DescribePipelines$;
866
906
  exports.DescribePipelinesCommand = DescribePipelinesCommand;
907
+ exports.DescribePipelinesInput$ = DescribePipelinesInput$;
908
+ exports.DescribePipelinesOutput$ = DescribePipelinesOutput$;
909
+ exports.EvaluateExpression$ = EvaluateExpression$;
867
910
  exports.EvaluateExpressionCommand = EvaluateExpressionCommand;
911
+ exports.EvaluateExpressionInput$ = EvaluateExpressionInput$;
912
+ exports.EvaluateExpressionOutput$ = EvaluateExpressionOutput$;
913
+ exports.Field$ = Field$;
914
+ exports.GetPipelineDefinition$ = GetPipelineDefinition$;
868
915
  exports.GetPipelineDefinitionCommand = GetPipelineDefinitionCommand;
869
- exports.InternalServiceError = InternalServiceError$1;
870
- exports.InvalidRequestException = InvalidRequestException$1;
916
+ exports.GetPipelineDefinitionInput$ = GetPipelineDefinitionInput$;
917
+ exports.GetPipelineDefinitionOutput$ = GetPipelineDefinitionOutput$;
918
+ exports.InstanceIdentity$ = InstanceIdentity$;
919
+ exports.InternalServiceError = InternalServiceError;
920
+ exports.InternalServiceError$ = InternalServiceError$;
921
+ exports.InvalidRequestException = InvalidRequestException;
922
+ exports.InvalidRequestException$ = InvalidRequestException$;
923
+ exports.ListPipelines$ = ListPipelines$;
871
924
  exports.ListPipelinesCommand = ListPipelinesCommand;
925
+ exports.ListPipelinesInput$ = ListPipelinesInput$;
926
+ exports.ListPipelinesOutput$ = ListPipelinesOutput$;
927
+ exports.Operator$ = Operator$;
872
928
  exports.OperatorType = OperatorType;
873
- exports.PipelineDeletedException = PipelineDeletedException$1;
874
- exports.PipelineNotFoundException = PipelineNotFoundException$1;
929
+ exports.ParameterAttribute$ = ParameterAttribute$;
930
+ exports.ParameterObject$ = ParameterObject$;
931
+ exports.ParameterValue$ = ParameterValue$;
932
+ exports.PipelineDeletedException = PipelineDeletedException;
933
+ exports.PipelineDeletedException$ = PipelineDeletedException$;
934
+ exports.PipelineDescription$ = PipelineDescription$;
935
+ exports.PipelineIdName$ = PipelineIdName$;
936
+ exports.PipelineNotFoundException = PipelineNotFoundException;
937
+ exports.PipelineNotFoundException$ = PipelineNotFoundException$;
938
+ exports.PipelineObject$ = PipelineObject$;
939
+ exports.PollForTask$ = PollForTask$;
875
940
  exports.PollForTaskCommand = PollForTaskCommand;
941
+ exports.PollForTaskInput$ = PollForTaskInput$;
942
+ exports.PollForTaskOutput$ = PollForTaskOutput$;
943
+ exports.PutPipelineDefinition$ = PutPipelineDefinition$;
876
944
  exports.PutPipelineDefinitionCommand = PutPipelineDefinitionCommand;
945
+ exports.PutPipelineDefinitionInput$ = PutPipelineDefinitionInput$;
946
+ exports.PutPipelineDefinitionOutput$ = PutPipelineDefinitionOutput$;
947
+ exports.Query$ = Query$;
948
+ exports.QueryObjects$ = QueryObjects$;
877
949
  exports.QueryObjectsCommand = QueryObjectsCommand;
950
+ exports.QueryObjectsInput$ = QueryObjectsInput$;
951
+ exports.QueryObjectsOutput$ = QueryObjectsOutput$;
952
+ exports.RemoveTags$ = RemoveTags$;
878
953
  exports.RemoveTagsCommand = RemoveTagsCommand;
954
+ exports.RemoveTagsInput$ = RemoveTagsInput$;
955
+ exports.RemoveTagsOutput$ = RemoveTagsOutput$;
956
+ exports.ReportTaskProgress$ = ReportTaskProgress$;
879
957
  exports.ReportTaskProgressCommand = ReportTaskProgressCommand;
958
+ exports.ReportTaskProgressInput$ = ReportTaskProgressInput$;
959
+ exports.ReportTaskProgressOutput$ = ReportTaskProgressOutput$;
960
+ exports.ReportTaskRunnerHeartbeat$ = ReportTaskRunnerHeartbeat$;
880
961
  exports.ReportTaskRunnerHeartbeatCommand = ReportTaskRunnerHeartbeatCommand;
962
+ exports.ReportTaskRunnerHeartbeatInput$ = ReportTaskRunnerHeartbeatInput$;
963
+ exports.ReportTaskRunnerHeartbeatOutput$ = ReportTaskRunnerHeartbeatOutput$;
964
+ exports.Selector$ = Selector$;
965
+ exports.SetStatus$ = SetStatus$;
881
966
  exports.SetStatusCommand = SetStatusCommand;
967
+ exports.SetStatusInput$ = SetStatusInput$;
968
+ exports.SetTaskStatus$ = SetTaskStatus$;
882
969
  exports.SetTaskStatusCommand = SetTaskStatusCommand;
883
- exports.TaskNotFoundException = TaskNotFoundException$1;
970
+ exports.SetTaskStatusInput$ = SetTaskStatusInput$;
971
+ exports.SetTaskStatusOutput$ = SetTaskStatusOutput$;
972
+ exports.Tag$ = Tag$;
973
+ exports.TaskNotFoundException = TaskNotFoundException;
974
+ exports.TaskNotFoundException$ = TaskNotFoundException$;
975
+ exports.TaskObject$ = TaskObject$;
884
976
  exports.TaskStatus = TaskStatus;
977
+ exports.ValidatePipelineDefinition$ = ValidatePipelineDefinition$;
885
978
  exports.ValidatePipelineDefinitionCommand = ValidatePipelineDefinitionCommand;
979
+ exports.ValidatePipelineDefinitionInput$ = ValidatePipelineDefinitionInput$;
980
+ exports.ValidatePipelineDefinitionOutput$ = ValidatePipelineDefinitionOutput$;
981
+ exports.ValidationError$ = ValidationError$;
982
+ exports.ValidationWarning$ = ValidationWarning$;
886
983
  exports.paginateDescribeObjects = paginateDescribeObjects;
887
984
  exports.paginateListPipelines = paginateListPipelines;
888
985
  exports.paginateQueryObjects = paginateQueryObjects;