@aws-sdk/client-data-pipeline 3.1068.0 → 3.1070.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +100 -120
- package/dist-cjs/models/DataPipelineServiceException.js +4 -8
- package/dist-cjs/models/errors.js +11 -19
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +160 -107
- package/package.json +9 -9
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SetStatusInput$ = exports.Selector$ = exports.ReportTaskRunnerHeartbeatOutput$ = exports.ReportTaskRunnerHeartbeatInput$ = exports.ReportTaskProgressOutput$ = exports.ReportTaskProgressInput$ = exports.RemoveTagsOutput$ = exports.RemoveTagsInput$ = exports.QueryObjectsOutput$ = exports.QueryObjectsInput$ = exports.Query$ = exports.PutPipelineDefinitionOutput$ = exports.PutPipelineDefinitionInput$ = exports.PollForTaskOutput$ = exports.PollForTaskInput$ = exports.PipelineObject$ = exports.PipelineIdName$ = exports.PipelineDescription$ = exports.ParameterValue$ = exports.ParameterObject$ = exports.ParameterAttribute$ = exports.Operator$ = exports.ListPipelinesOutput$ = exports.ListPipelinesInput$ = exports.InstanceIdentity$ = exports.GetPipelineDefinitionOutput$ = exports.GetPipelineDefinitionInput$ = exports.Field$ = exports.EvaluateExpressionOutput$ = exports.EvaluateExpressionInput$ = exports.DescribePipelinesOutput$ = exports.DescribePipelinesInput$ = exports.DescribeObjectsOutput$ = exports.DescribeObjectsInput$ = exports.DeletePipelineInput$ = exports.DeactivatePipelineOutput$ = exports.DeactivatePipelineInput$ = exports.CreatePipelineOutput$ = exports.CreatePipelineInput$ = exports.AddTagsOutput$ = exports.AddTagsInput$ = exports.ActivatePipelineOutput$ = exports.ActivatePipelineInput$ = exports.errorTypeRegistries = exports.TaskNotFoundException$ = exports.PipelineNotFoundException$ = exports.PipelineDeletedException$ = exports.InvalidRequestException$ = exports.InternalServiceError$ = exports.DataPipelineServiceException$ = void 0;
|
|
4
|
-
exports.ValidatePipelineDefinition$ = exports.SetTaskStatus$ = exports.SetStatus$ = exports.ReportTaskRunnerHeartbeat$ = exports.ReportTaskProgress$ = exports.RemoveTags$ = exports.QueryObjects$ = exports.PutPipelineDefinition$ = exports.PollForTask$ = exports.ListPipelines$ = exports.GetPipelineDefinition$ = exports.EvaluateExpression$ = exports.DescribePipelines$ = exports.DescribeObjects$ = exports.DeletePipeline$ = exports.DeactivatePipeline$ = exports.CreatePipeline$ = exports.AddTags$ = exports.ActivatePipeline$ = exports.ValidationWarning$ = exports.ValidationError$ = exports.ValidatePipelineDefinitionOutput$ = exports.ValidatePipelineDefinitionInput$ = exports.TaskObject$ = exports.Tag$ = exports.SetTaskStatusOutput$ = exports.SetTaskStatusInput$ = void 0;
|
|
5
1
|
const _AP = "ActivatePipeline";
|
|
6
2
|
const _API = "ActivatePipelineInput";
|
|
7
3
|
const _APO = "ActivatePipelineOutput";
|
|
@@ -155,396 +151,453 @@ const _val = "value";
|
|
|
155
151
|
const _w = "warnings";
|
|
156
152
|
const _wG = "workerGroup";
|
|
157
153
|
const n0 = "com.amazonaws.datapipeline";
|
|
158
|
-
const
|
|
159
|
-
const
|
|
160
|
-
const
|
|
161
|
-
const _s_registry =
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
154
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
155
|
+
const { DataPipelineServiceException } = require("../models/DataPipelineServiceException");
|
|
156
|
+
const { InternalServiceError, InvalidRequestException, PipelineDeletedException, PipelineNotFoundException, TaskNotFoundException } = require("../models/errors");
|
|
157
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
158
|
+
const DataPipelineServiceException$ = [-3, _s, "DataPipelineServiceException", 0, [], []];
|
|
159
|
+
exports.DataPipelineServiceException$ = DataPipelineServiceException$;
|
|
160
|
+
_s_registry.registerError(DataPipelineServiceException$, DataPipelineServiceException);
|
|
161
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
162
|
+
const InternalServiceError$ = [-3, n0, _ISE,
|
|
166
163
|
{ [_e]: _se },
|
|
167
164
|
[_m],
|
|
168
165
|
[0]
|
|
169
166
|
];
|
|
170
|
-
|
|
171
|
-
|
|
167
|
+
exports.InternalServiceError$ = InternalServiceError$;
|
|
168
|
+
n0_registry.registerError(InternalServiceError$, InternalServiceError);
|
|
169
|
+
const InvalidRequestException$ = [-3, n0, _IRE,
|
|
172
170
|
{ [_e]: _c },
|
|
173
171
|
[_m],
|
|
174
172
|
[0]
|
|
175
173
|
];
|
|
176
|
-
|
|
177
|
-
|
|
174
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
175
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
176
|
+
const PipelineDeletedException$ = [-3, n0, _PDE,
|
|
178
177
|
{ [_e]: _c },
|
|
179
178
|
[_m],
|
|
180
179
|
[0]
|
|
181
180
|
];
|
|
182
|
-
|
|
183
|
-
|
|
181
|
+
exports.PipelineDeletedException$ = PipelineDeletedException$;
|
|
182
|
+
n0_registry.registerError(PipelineDeletedException$, PipelineDeletedException);
|
|
183
|
+
const PipelineNotFoundException$ = [-3, n0, _PNFE,
|
|
184
184
|
{ [_e]: _c },
|
|
185
185
|
[_m],
|
|
186
186
|
[0]
|
|
187
187
|
];
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
exports.PipelineNotFoundException$ = PipelineNotFoundException$;
|
|
189
|
+
n0_registry.registerError(PipelineNotFoundException$, PipelineNotFoundException);
|
|
190
|
+
const TaskNotFoundException$ = [-3, n0, _TNFE,
|
|
190
191
|
{ [_e]: _c },
|
|
191
192
|
[_m],
|
|
192
193
|
[0]
|
|
193
194
|
];
|
|
194
|
-
|
|
195
|
+
exports.TaskNotFoundException$ = TaskNotFoundException$;
|
|
196
|
+
n0_registry.registerError(TaskNotFoundException$, TaskNotFoundException);
|
|
195
197
|
exports.errorTypeRegistries = [
|
|
196
198
|
_s_registry,
|
|
197
199
|
n0_registry,
|
|
198
200
|
];
|
|
199
|
-
|
|
201
|
+
const ActivatePipelineInput$ = [3, n0, _API,
|
|
200
202
|
0,
|
|
201
203
|
[_pI, _pV, _sT],
|
|
202
204
|
[0, () => ParameterValueList, 4], 1
|
|
203
205
|
];
|
|
204
|
-
exports.
|
|
206
|
+
exports.ActivatePipelineInput$ = ActivatePipelineInput$;
|
|
207
|
+
const ActivatePipelineOutput$ = [3, n0, _APO,
|
|
205
208
|
0,
|
|
206
209
|
[],
|
|
207
210
|
[]
|
|
208
211
|
];
|
|
209
|
-
exports.
|
|
212
|
+
exports.ActivatePipelineOutput$ = ActivatePipelineOutput$;
|
|
213
|
+
const AddTagsInput$ = [3, n0, _ATI,
|
|
210
214
|
0,
|
|
211
215
|
[_pI, _t],
|
|
212
216
|
[0, () => tagList], 2
|
|
213
217
|
];
|
|
214
|
-
exports.
|
|
218
|
+
exports.AddTagsInput$ = AddTagsInput$;
|
|
219
|
+
const AddTagsOutput$ = [3, n0, _ATO,
|
|
215
220
|
0,
|
|
216
221
|
[],
|
|
217
222
|
[]
|
|
218
223
|
];
|
|
219
|
-
exports.
|
|
224
|
+
exports.AddTagsOutput$ = AddTagsOutput$;
|
|
225
|
+
const CreatePipelineInput$ = [3, n0, _CPI,
|
|
220
226
|
0,
|
|
221
227
|
[_n, _uI, _d, _t],
|
|
222
228
|
[0, 0, 0, () => tagList], 2
|
|
223
229
|
];
|
|
224
|
-
exports.
|
|
230
|
+
exports.CreatePipelineInput$ = CreatePipelineInput$;
|
|
231
|
+
const CreatePipelineOutput$ = [3, n0, _CPO,
|
|
225
232
|
0,
|
|
226
233
|
[_pI],
|
|
227
234
|
[0], 1
|
|
228
235
|
];
|
|
229
|
-
exports.
|
|
236
|
+
exports.CreatePipelineOutput$ = CreatePipelineOutput$;
|
|
237
|
+
const DeactivatePipelineInput$ = [3, n0, _DPI,
|
|
230
238
|
0,
|
|
231
239
|
[_pI, _cA],
|
|
232
240
|
[0, 2], 1
|
|
233
241
|
];
|
|
234
|
-
exports.
|
|
242
|
+
exports.DeactivatePipelineInput$ = DeactivatePipelineInput$;
|
|
243
|
+
const DeactivatePipelineOutput$ = [3, n0, _DPO,
|
|
235
244
|
0,
|
|
236
245
|
[],
|
|
237
246
|
[]
|
|
238
247
|
];
|
|
239
|
-
exports.
|
|
248
|
+
exports.DeactivatePipelineOutput$ = DeactivatePipelineOutput$;
|
|
249
|
+
const DeletePipelineInput$ = [3, n0, _DPIe,
|
|
240
250
|
0,
|
|
241
251
|
[_pI],
|
|
242
252
|
[0], 1
|
|
243
253
|
];
|
|
244
|
-
exports.
|
|
254
|
+
exports.DeletePipelineInput$ = DeletePipelineInput$;
|
|
255
|
+
const DescribeObjectsInput$ = [3, n0, _DOI,
|
|
245
256
|
0,
|
|
246
257
|
[_pI, _oI, _eE, _ma],
|
|
247
258
|
[0, 64 | 0, 2, 0], 2
|
|
248
259
|
];
|
|
249
|
-
exports.
|
|
260
|
+
exports.DescribeObjectsInput$ = DescribeObjectsInput$;
|
|
261
|
+
const DescribeObjectsOutput$ = [3, n0, _DOO,
|
|
250
262
|
0,
|
|
251
263
|
[_pO, _ma, _hMR],
|
|
252
264
|
[() => PipelineObjectList, 0, 2], 1
|
|
253
265
|
];
|
|
254
|
-
exports.
|
|
266
|
+
exports.DescribeObjectsOutput$ = DescribeObjectsOutput$;
|
|
267
|
+
const DescribePipelinesInput$ = [3, n0, _DPIes,
|
|
255
268
|
0,
|
|
256
269
|
[_pIi],
|
|
257
270
|
[64 | 0], 1
|
|
258
271
|
];
|
|
259
|
-
exports.
|
|
272
|
+
exports.DescribePipelinesInput$ = DescribePipelinesInput$;
|
|
273
|
+
const DescribePipelinesOutput$ = [3, n0, _DPOe,
|
|
260
274
|
0,
|
|
261
275
|
[_pDL],
|
|
262
276
|
[() => PipelineDescriptionList], 1
|
|
263
277
|
];
|
|
264
|
-
exports.
|
|
278
|
+
exports.DescribePipelinesOutput$ = DescribePipelinesOutput$;
|
|
279
|
+
const EvaluateExpressionInput$ = [3, n0, _EEI,
|
|
265
280
|
0,
|
|
266
281
|
[_pI, _oIb, _ex],
|
|
267
282
|
[0, 0, 0], 3
|
|
268
283
|
];
|
|
269
|
-
exports.
|
|
284
|
+
exports.EvaluateExpressionInput$ = EvaluateExpressionInput$;
|
|
285
|
+
const EvaluateExpressionOutput$ = [3, n0, _EEO,
|
|
270
286
|
0,
|
|
271
287
|
[_eEv],
|
|
272
288
|
[0], 1
|
|
273
289
|
];
|
|
274
|
-
exports.
|
|
290
|
+
exports.EvaluateExpressionOutput$ = EvaluateExpressionOutput$;
|
|
291
|
+
const Field$ = [3, n0, _F,
|
|
275
292
|
0,
|
|
276
293
|
[_k, _sV, _rV],
|
|
277
294
|
[0, 0, 0], 1
|
|
278
295
|
];
|
|
279
|
-
exports.
|
|
296
|
+
exports.Field$ = Field$;
|
|
297
|
+
const GetPipelineDefinitionInput$ = [3, n0, _GPDI,
|
|
280
298
|
0,
|
|
281
299
|
[_pI, _v],
|
|
282
300
|
[0, 0], 1
|
|
283
301
|
];
|
|
284
|
-
exports.
|
|
302
|
+
exports.GetPipelineDefinitionInput$ = GetPipelineDefinitionInput$;
|
|
303
|
+
const GetPipelineDefinitionOutput$ = [3, n0, _GPDO,
|
|
285
304
|
0,
|
|
286
305
|
[_pO, _pOa, _pV],
|
|
287
306
|
[() => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList]
|
|
288
307
|
];
|
|
289
|
-
exports.
|
|
308
|
+
exports.GetPipelineDefinitionOutput$ = GetPipelineDefinitionOutput$;
|
|
309
|
+
const InstanceIdentity$ = [3, n0, _II,
|
|
290
310
|
0,
|
|
291
311
|
[_do, _si],
|
|
292
312
|
[0, 0]
|
|
293
313
|
];
|
|
294
|
-
exports.
|
|
314
|
+
exports.InstanceIdentity$ = InstanceIdentity$;
|
|
315
|
+
const ListPipelinesInput$ = [3, n0, _LPI,
|
|
295
316
|
0,
|
|
296
317
|
[_ma],
|
|
297
318
|
[0]
|
|
298
319
|
];
|
|
299
|
-
exports.
|
|
320
|
+
exports.ListPipelinesInput$ = ListPipelinesInput$;
|
|
321
|
+
const ListPipelinesOutput$ = [3, n0, _LPO,
|
|
300
322
|
0,
|
|
301
323
|
[_pIL, _ma, _hMR],
|
|
302
324
|
[() => pipelineList, 0, 2], 1
|
|
303
325
|
];
|
|
304
|
-
exports.
|
|
326
|
+
exports.ListPipelinesOutput$ = ListPipelinesOutput$;
|
|
327
|
+
const Operator$ = [3, n0, _O,
|
|
305
328
|
0,
|
|
306
329
|
[_ty, _va],
|
|
307
330
|
[0, 64 | 0]
|
|
308
331
|
];
|
|
309
|
-
exports.
|
|
332
|
+
exports.Operator$ = Operator$;
|
|
333
|
+
const ParameterAttribute$ = [3, n0, _PA,
|
|
310
334
|
0,
|
|
311
335
|
[_k, _sV],
|
|
312
336
|
[0, 0], 2
|
|
313
337
|
];
|
|
314
|
-
exports.
|
|
338
|
+
exports.ParameterAttribute$ = ParameterAttribute$;
|
|
339
|
+
const ParameterObject$ = [3, n0, _PO,
|
|
315
340
|
0,
|
|
316
341
|
[_i, _a],
|
|
317
342
|
[0, () => ParameterAttributeList], 2
|
|
318
343
|
];
|
|
319
|
-
exports.
|
|
344
|
+
exports.ParameterObject$ = ParameterObject$;
|
|
345
|
+
const ParameterValue$ = [3, n0, _PV,
|
|
320
346
|
0,
|
|
321
347
|
[_i, _sV],
|
|
322
348
|
[0, 0], 2
|
|
323
349
|
];
|
|
324
|
-
exports.
|
|
350
|
+
exports.ParameterValue$ = ParameterValue$;
|
|
351
|
+
const PipelineDescription$ = [3, n0, _PD,
|
|
325
352
|
0,
|
|
326
353
|
[_pI, _n, _f, _d, _t],
|
|
327
354
|
[0, 0, () => fieldList, 0, () => tagList], 3
|
|
328
355
|
];
|
|
329
|
-
exports.
|
|
356
|
+
exports.PipelineDescription$ = PipelineDescription$;
|
|
357
|
+
const PipelineIdName$ = [3, n0, _PIN,
|
|
330
358
|
0,
|
|
331
359
|
[_i, _n],
|
|
332
360
|
[0, 0]
|
|
333
361
|
];
|
|
334
|
-
exports.
|
|
362
|
+
exports.PipelineIdName$ = PipelineIdName$;
|
|
363
|
+
const PipelineObject$ = [3, n0, _POi,
|
|
335
364
|
0,
|
|
336
365
|
[_i, _n, _f],
|
|
337
366
|
[0, 0, () => fieldList], 3
|
|
338
367
|
];
|
|
339
|
-
exports.
|
|
368
|
+
exports.PipelineObject$ = PipelineObject$;
|
|
369
|
+
const PollForTaskInput$ = [3, n0, _PFTI,
|
|
340
370
|
0,
|
|
341
371
|
[_wG, _h, _iI],
|
|
342
|
-
[0, 0, () =>
|
|
372
|
+
[0, 0, () => InstanceIdentity$], 1
|
|
343
373
|
];
|
|
344
|
-
exports.
|
|
374
|
+
exports.PollForTaskInput$ = PollForTaskInput$;
|
|
375
|
+
const PollForTaskOutput$ = [3, n0, _PFTO,
|
|
345
376
|
0,
|
|
346
377
|
[_tO],
|
|
347
|
-
[() =>
|
|
378
|
+
[() => TaskObject$]
|
|
348
379
|
];
|
|
349
|
-
exports.
|
|
380
|
+
exports.PollForTaskOutput$ = PollForTaskOutput$;
|
|
381
|
+
const PutPipelineDefinitionInput$ = [3, n0, _PPDI,
|
|
350
382
|
0,
|
|
351
383
|
[_pI, _pO, _pOa, _pV],
|
|
352
384
|
[0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
|
|
353
385
|
];
|
|
354
|
-
exports.
|
|
386
|
+
exports.PutPipelineDefinitionInput$ = PutPipelineDefinitionInput$;
|
|
387
|
+
const PutPipelineDefinitionOutput$ = [3, n0, _PPDO,
|
|
355
388
|
0,
|
|
356
389
|
[_er, _vE, _vW],
|
|
357
390
|
[2, () => ValidationErrors, () => ValidationWarnings], 1
|
|
358
391
|
];
|
|
359
|
-
exports.
|
|
392
|
+
exports.PutPipelineDefinitionOutput$ = PutPipelineDefinitionOutput$;
|
|
393
|
+
const Query$ = [3, n0, _Q,
|
|
360
394
|
0,
|
|
361
395
|
[_sel],
|
|
362
396
|
[() => SelectorList]
|
|
363
397
|
];
|
|
364
|
-
exports.
|
|
398
|
+
exports.Query$ = Query$;
|
|
399
|
+
const QueryObjectsInput$ = [3, n0, _QOI,
|
|
365
400
|
0,
|
|
366
401
|
[_pI, _sp, _q, _ma, _l],
|
|
367
|
-
[0, 0, () =>
|
|
402
|
+
[0, 0, () => Query$, 0, 1], 2
|
|
368
403
|
];
|
|
369
|
-
exports.
|
|
404
|
+
exports.QueryObjectsInput$ = QueryObjectsInput$;
|
|
405
|
+
const QueryObjectsOutput$ = [3, n0, _QOO,
|
|
370
406
|
0,
|
|
371
407
|
[_id, _ma, _hMR],
|
|
372
408
|
[64 | 0, 0, 2]
|
|
373
409
|
];
|
|
374
|
-
exports.
|
|
410
|
+
exports.QueryObjectsOutput$ = QueryObjectsOutput$;
|
|
411
|
+
const RemoveTagsInput$ = [3, n0, _RTI,
|
|
375
412
|
0,
|
|
376
413
|
[_pI, _tK],
|
|
377
414
|
[0, 64 | 0], 2
|
|
378
415
|
];
|
|
379
|
-
exports.
|
|
416
|
+
exports.RemoveTagsInput$ = RemoveTagsInput$;
|
|
417
|
+
const RemoveTagsOutput$ = [3, n0, _RTO,
|
|
380
418
|
0,
|
|
381
419
|
[],
|
|
382
420
|
[]
|
|
383
421
|
];
|
|
384
|
-
exports.
|
|
422
|
+
exports.RemoveTagsOutput$ = RemoveTagsOutput$;
|
|
423
|
+
const ReportTaskProgressInput$ = [3, n0, _RTPI,
|
|
385
424
|
0,
|
|
386
425
|
[_tI, _f],
|
|
387
426
|
[0, () => fieldList], 1
|
|
388
427
|
];
|
|
389
|
-
exports.
|
|
428
|
+
exports.ReportTaskProgressInput$ = ReportTaskProgressInput$;
|
|
429
|
+
const ReportTaskProgressOutput$ = [3, n0, _RTPO,
|
|
390
430
|
0,
|
|
391
431
|
[_ca],
|
|
392
432
|
[2], 1
|
|
393
433
|
];
|
|
394
|
-
exports.
|
|
434
|
+
exports.ReportTaskProgressOutput$ = ReportTaskProgressOutput$;
|
|
435
|
+
const ReportTaskRunnerHeartbeatInput$ = [3, n0, _RTRHI,
|
|
395
436
|
0,
|
|
396
437
|
[_tIa, _wG, _h],
|
|
397
438
|
[0, 0, 0], 1
|
|
398
439
|
];
|
|
399
|
-
exports.
|
|
440
|
+
exports.ReportTaskRunnerHeartbeatInput$ = ReportTaskRunnerHeartbeatInput$;
|
|
441
|
+
const ReportTaskRunnerHeartbeatOutput$ = [3, n0, _RTRHO,
|
|
400
442
|
0,
|
|
401
443
|
[_te],
|
|
402
444
|
[2], 1
|
|
403
445
|
];
|
|
404
|
-
exports.
|
|
446
|
+
exports.ReportTaskRunnerHeartbeatOutput$ = ReportTaskRunnerHeartbeatOutput$;
|
|
447
|
+
const Selector$ = [3, n0, _S,
|
|
405
448
|
0,
|
|
406
449
|
[_fN, _o],
|
|
407
|
-
[0, () =>
|
|
450
|
+
[0, () => Operator$]
|
|
408
451
|
];
|
|
409
|
-
exports.
|
|
452
|
+
exports.Selector$ = Selector$;
|
|
453
|
+
const SetStatusInput$ = [3, n0, _SSI,
|
|
410
454
|
0,
|
|
411
455
|
[_pI, _oI, _st],
|
|
412
456
|
[0, 64 | 0, 0], 3
|
|
413
457
|
];
|
|
414
|
-
exports.
|
|
458
|
+
exports.SetStatusInput$ = SetStatusInput$;
|
|
459
|
+
const SetTaskStatusInput$ = [3, n0, _STSI,
|
|
415
460
|
0,
|
|
416
461
|
[_tI, _tS, _eI, _eM, _eST],
|
|
417
462
|
[0, 0, 0, 0, 0], 2
|
|
418
463
|
];
|
|
419
|
-
exports.
|
|
464
|
+
exports.SetTaskStatusInput$ = SetTaskStatusInput$;
|
|
465
|
+
const SetTaskStatusOutput$ = [3, n0, _STSO,
|
|
420
466
|
0,
|
|
421
467
|
[],
|
|
422
468
|
[]
|
|
423
469
|
];
|
|
424
|
-
exports.
|
|
470
|
+
exports.SetTaskStatusOutput$ = SetTaskStatusOutput$;
|
|
471
|
+
const Tag$ = [3, n0, _T,
|
|
425
472
|
0,
|
|
426
473
|
[_k, _val],
|
|
427
474
|
[0, 0], 2
|
|
428
475
|
];
|
|
429
|
-
exports.
|
|
476
|
+
exports.Tag$ = Tag$;
|
|
477
|
+
const TaskObject$ = [3, n0, _TO,
|
|
430
478
|
0,
|
|
431
479
|
[_tI, _pI, _aI, _ob],
|
|
432
480
|
[0, 0, 0, () => PipelineObjectMap]
|
|
433
481
|
];
|
|
434
|
-
exports.
|
|
482
|
+
exports.TaskObject$ = TaskObject$;
|
|
483
|
+
const ValidatePipelineDefinitionInput$ = [3, n0, _VPDI,
|
|
435
484
|
0,
|
|
436
485
|
[_pI, _pO, _pOa, _pV],
|
|
437
486
|
[0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
|
|
438
487
|
];
|
|
439
|
-
exports.
|
|
488
|
+
exports.ValidatePipelineDefinitionInput$ = ValidatePipelineDefinitionInput$;
|
|
489
|
+
const ValidatePipelineDefinitionOutput$ = [3, n0, _VPDO,
|
|
440
490
|
0,
|
|
441
491
|
[_er, _vE, _vW],
|
|
442
492
|
[2, () => ValidationErrors, () => ValidationWarnings], 1
|
|
443
493
|
];
|
|
444
|
-
exports.
|
|
494
|
+
exports.ValidatePipelineDefinitionOutput$ = ValidatePipelineDefinitionOutput$;
|
|
495
|
+
const ValidationError$ = [3, n0, _VE,
|
|
445
496
|
0,
|
|
446
497
|
[_i, _err],
|
|
447
498
|
[0, 64 | 0]
|
|
448
499
|
];
|
|
449
|
-
exports.
|
|
500
|
+
exports.ValidationError$ = ValidationError$;
|
|
501
|
+
const ValidationWarning$ = [3, n0, _VW,
|
|
450
502
|
0,
|
|
451
503
|
[_i, _w],
|
|
452
504
|
[0, 64 | 0]
|
|
453
505
|
];
|
|
506
|
+
exports.ValidationWarning$ = ValidationWarning$;
|
|
454
507
|
var __Unit = "unit";
|
|
455
508
|
var fieldList = [1, n0, _fL,
|
|
456
|
-
0, () =>
|
|
509
|
+
0, () => Field$
|
|
457
510
|
];
|
|
458
511
|
var idList = 64 | 0;
|
|
459
512
|
var ParameterAttributeList = [1, n0, _PAL,
|
|
460
|
-
0, () =>
|
|
513
|
+
0, () => ParameterAttribute$
|
|
461
514
|
];
|
|
462
515
|
var ParameterObjectList = [1, n0, _POL,
|
|
463
|
-
0, () =>
|
|
516
|
+
0, () => ParameterObject$
|
|
464
517
|
];
|
|
465
518
|
var ParameterValueList = [1, n0, _PVL,
|
|
466
|
-
0, () =>
|
|
519
|
+
0, () => ParameterValue$
|
|
467
520
|
];
|
|
468
521
|
var PipelineDescriptionList = [1, n0, _PDL,
|
|
469
|
-
0, () =>
|
|
522
|
+
0, () => PipelineDescription$
|
|
470
523
|
];
|
|
471
524
|
var pipelineList = [1, n0, _pL,
|
|
472
|
-
0, () =>
|
|
525
|
+
0, () => PipelineIdName$
|
|
473
526
|
];
|
|
474
527
|
var PipelineObjectList = [1, n0, _POLi,
|
|
475
|
-
0, () =>
|
|
528
|
+
0, () => PipelineObject$
|
|
476
529
|
];
|
|
477
530
|
var SelectorList = [1, n0, _SL,
|
|
478
|
-
0, () =>
|
|
531
|
+
0, () => Selector$
|
|
479
532
|
];
|
|
480
533
|
var stringList = 64 | 0;
|
|
481
534
|
var tagList = [1, n0, _tL,
|
|
482
|
-
0, () =>
|
|
535
|
+
0, () => Tag$
|
|
483
536
|
];
|
|
484
537
|
var ValidationErrors = [1, n0, _VEa,
|
|
485
|
-
0, () =>
|
|
538
|
+
0, () => ValidationError$
|
|
486
539
|
];
|
|
487
540
|
var validationMessages = 64 | 0;
|
|
488
541
|
var ValidationWarnings = [1, n0, _VWa,
|
|
489
|
-
0, () =>
|
|
542
|
+
0, () => ValidationWarning$
|
|
490
543
|
];
|
|
491
544
|
var PipelineObjectMap = [2, n0, _POM,
|
|
492
|
-
0, 0, () =>
|
|
545
|
+
0, 0, () => PipelineObject$
|
|
493
546
|
];
|
|
494
547
|
exports.ActivatePipeline$ = [9, n0, _AP,
|
|
495
|
-
0, () =>
|
|
548
|
+
0, () => ActivatePipelineInput$, () => ActivatePipelineOutput$
|
|
496
549
|
];
|
|
497
550
|
exports.AddTags$ = [9, n0, _AT,
|
|
498
|
-
0, () =>
|
|
551
|
+
0, () => AddTagsInput$, () => AddTagsOutput$
|
|
499
552
|
];
|
|
500
553
|
exports.CreatePipeline$ = [9, n0, _CP,
|
|
501
|
-
0, () =>
|
|
554
|
+
0, () => CreatePipelineInput$, () => CreatePipelineOutput$
|
|
502
555
|
];
|
|
503
556
|
exports.DeactivatePipeline$ = [9, n0, _DP,
|
|
504
|
-
0, () =>
|
|
557
|
+
0, () => DeactivatePipelineInput$, () => DeactivatePipelineOutput$
|
|
505
558
|
];
|
|
506
559
|
exports.DeletePipeline$ = [9, n0, _DPe,
|
|
507
|
-
0, () =>
|
|
560
|
+
0, () => DeletePipelineInput$, () => __Unit
|
|
508
561
|
];
|
|
509
562
|
exports.DescribeObjects$ = [9, n0, _DO,
|
|
510
|
-
0, () =>
|
|
563
|
+
0, () => DescribeObjectsInput$, () => DescribeObjectsOutput$
|
|
511
564
|
];
|
|
512
565
|
exports.DescribePipelines$ = [9, n0, _DPes,
|
|
513
|
-
0, () =>
|
|
566
|
+
0, () => DescribePipelinesInput$, () => DescribePipelinesOutput$
|
|
514
567
|
];
|
|
515
568
|
exports.EvaluateExpression$ = [9, n0, _EE,
|
|
516
|
-
0, () =>
|
|
569
|
+
0, () => EvaluateExpressionInput$, () => EvaluateExpressionOutput$
|
|
517
570
|
];
|
|
518
571
|
exports.GetPipelineDefinition$ = [9, n0, _GPD,
|
|
519
|
-
0, () =>
|
|
572
|
+
0, () => GetPipelineDefinitionInput$, () => GetPipelineDefinitionOutput$
|
|
520
573
|
];
|
|
521
574
|
exports.ListPipelines$ = [9, n0, _LP,
|
|
522
|
-
0, () =>
|
|
575
|
+
0, () => ListPipelinesInput$, () => ListPipelinesOutput$
|
|
523
576
|
];
|
|
524
577
|
exports.PollForTask$ = [9, n0, _PFT,
|
|
525
|
-
0, () =>
|
|
578
|
+
0, () => PollForTaskInput$, () => PollForTaskOutput$
|
|
526
579
|
];
|
|
527
580
|
exports.PutPipelineDefinition$ = [9, n0, _PPD,
|
|
528
|
-
0, () =>
|
|
581
|
+
0, () => PutPipelineDefinitionInput$, () => PutPipelineDefinitionOutput$
|
|
529
582
|
];
|
|
530
583
|
exports.QueryObjects$ = [9, n0, _QO,
|
|
531
|
-
0, () =>
|
|
584
|
+
0, () => QueryObjectsInput$, () => QueryObjectsOutput$
|
|
532
585
|
];
|
|
533
586
|
exports.RemoveTags$ = [9, n0, _RT,
|
|
534
|
-
0, () =>
|
|
587
|
+
0, () => RemoveTagsInput$, () => RemoveTagsOutput$
|
|
535
588
|
];
|
|
536
589
|
exports.ReportTaskProgress$ = [9, n0, _RTP,
|
|
537
|
-
0, () =>
|
|
590
|
+
0, () => ReportTaskProgressInput$, () => ReportTaskProgressOutput$
|
|
538
591
|
];
|
|
539
592
|
exports.ReportTaskRunnerHeartbeat$ = [9, n0, _RTRH,
|
|
540
|
-
0, () =>
|
|
593
|
+
0, () => ReportTaskRunnerHeartbeatInput$, () => ReportTaskRunnerHeartbeatOutput$
|
|
541
594
|
];
|
|
542
595
|
exports.SetStatus$ = [9, n0, _SS,
|
|
543
|
-
0, () =>
|
|
596
|
+
0, () => SetStatusInput$, () => __Unit
|
|
544
597
|
];
|
|
545
598
|
exports.SetTaskStatus$ = [9, n0, _STS,
|
|
546
|
-
0, () =>
|
|
599
|
+
0, () => SetTaskStatusInput$, () => SetTaskStatusOutput$
|
|
547
600
|
];
|
|
548
601
|
exports.ValidatePipelineDefinition$ = [9, n0, _VPD,
|
|
549
|
-
0, () =>
|
|
602
|
+
0, () => ValidatePipelineDefinitionInput$, () => ValidatePipelineDefinitionOutput$
|
|
550
603
|
];
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-data-pipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1070.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
15
|
-
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
|
+
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
|
|
16
16
|
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
17
17
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
18
18
|
},
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/types": "^3.973.
|
|
26
|
+
"@aws-sdk/core": "^3.974.21",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
28
|
+
"@aws-sdk/types": "^3.973.13",
|
|
29
29
|
"@smithy/core": "^3.24.6",
|
|
30
30
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
31
31
|
"@smithy/node-http-handler": "^4.7.6",
|