@aws-sdk/client-data-pipeline 3.987.0 → 3.989.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.
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataPipelineServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class DataPipelineServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, DataPipelineServiceException.prototype);
10
+ }
11
+ }
12
+ exports.DataPipelineServiceException = DataPipelineServiceException;
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TaskNotFoundException = exports.PipelineNotFoundException = exports.PipelineDeletedException = exports.InvalidRequestException = exports.InternalServiceError = void 0;
4
+ const DataPipelineServiceException_1 = require("./DataPipelineServiceException");
5
+ class InternalServiceError extends DataPipelineServiceException_1.DataPipelineServiceException {
6
+ name = "InternalServiceError";
7
+ $fault = "server";
8
+ constructor(opts) {
9
+ super({
10
+ name: "InternalServiceError",
11
+ $fault: "server",
12
+ ...opts,
13
+ });
14
+ Object.setPrototypeOf(this, InternalServiceError.prototype);
15
+ }
16
+ }
17
+ exports.InternalServiceError = InternalServiceError;
18
+ class InvalidRequestException extends DataPipelineServiceException_1.DataPipelineServiceException {
19
+ name = "InvalidRequestException";
20
+ $fault = "client";
21
+ constructor(opts) {
22
+ super({
23
+ name: "InvalidRequestException",
24
+ $fault: "client",
25
+ ...opts,
26
+ });
27
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
28
+ }
29
+ }
30
+ exports.InvalidRequestException = InvalidRequestException;
31
+ class PipelineDeletedException extends DataPipelineServiceException_1.DataPipelineServiceException {
32
+ name = "PipelineDeletedException";
33
+ $fault = "client";
34
+ constructor(opts) {
35
+ super({
36
+ name: "PipelineDeletedException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, PipelineDeletedException.prototype);
41
+ }
42
+ }
43
+ exports.PipelineDeletedException = PipelineDeletedException;
44
+ class PipelineNotFoundException extends DataPipelineServiceException_1.DataPipelineServiceException {
45
+ name = "PipelineNotFoundException";
46
+ $fault = "client";
47
+ constructor(opts) {
48
+ super({
49
+ name: "PipelineNotFoundException",
50
+ $fault: "client",
51
+ ...opts,
52
+ });
53
+ Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
54
+ }
55
+ }
56
+ exports.PipelineNotFoundException = PipelineNotFoundException;
57
+ class TaskNotFoundException extends DataPipelineServiceException_1.DataPipelineServiceException {
58
+ name = "TaskNotFoundException";
59
+ $fault = "client";
60
+ constructor(opts) {
61
+ super({
62
+ name: "TaskNotFoundException",
63
+ $fault: "client",
64
+ ...opts,
65
+ });
66
+ Object.setPrototypeOf(this, TaskNotFoundException.prototype);
67
+ }
68
+ }
69
+ exports.TaskNotFoundException = TaskNotFoundException;
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
9
9
  const util_utf8_1 = require("@smithy/util-utf8");
10
10
  const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
11
11
  const endpointResolver_1 = require("./endpoint/endpointResolver");
12
+ const schemas_0_1 = require("./schemas/schemas_0");
12
13
  const getRuntimeConfig = (config) => {
13
14
  return {
14
15
  apiVersion: "2012-10-29",
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
29
30
  protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
31
  protocolSettings: config?.protocolSettings ?? {
31
32
  defaultNamespace: "com.amazonaws.datapipeline",
33
+ errorTypeRegistries: schemas_0_1.errorTypeRegistries,
32
34
  xmlNamespace: "http://datapipeline.amazonaws.com/doc/2012-10-29/",
33
35
  version: "2012-10-29",
34
36
  serviceTarget: "DataPipeline",
@@ -0,0 +1,550 @@
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
+ const _AP = "ActivatePipeline";
6
+ const _API = "ActivatePipelineInput";
7
+ const _APO = "ActivatePipelineOutput";
8
+ const _AT = "AddTags";
9
+ const _ATI = "AddTagsInput";
10
+ const _ATO = "AddTagsOutput";
11
+ const _CP = "CreatePipeline";
12
+ const _CPI = "CreatePipelineInput";
13
+ const _CPO = "CreatePipelineOutput";
14
+ const _DO = "DescribeObjects";
15
+ const _DOI = "DescribeObjectsInput";
16
+ const _DOO = "DescribeObjectsOutput";
17
+ const _DP = "DeactivatePipeline";
18
+ const _DPI = "DeactivatePipelineInput";
19
+ const _DPIe = "DeletePipelineInput";
20
+ const _DPIes = "DescribePipelinesInput";
21
+ const _DPO = "DeactivatePipelineOutput";
22
+ const _DPOe = "DescribePipelinesOutput";
23
+ const _DPe = "DeletePipeline";
24
+ const _DPes = "DescribePipelines";
25
+ const _EE = "EvaluateExpression";
26
+ const _EEI = "EvaluateExpressionInput";
27
+ const _EEO = "EvaluateExpressionOutput";
28
+ const _F = "Field";
29
+ const _GPD = "GetPipelineDefinition";
30
+ const _GPDI = "GetPipelineDefinitionInput";
31
+ const _GPDO = "GetPipelineDefinitionOutput";
32
+ const _II = "InstanceIdentity";
33
+ const _IRE = "InvalidRequestException";
34
+ const _ISE = "InternalServiceError";
35
+ const _LP = "ListPipelines";
36
+ const _LPI = "ListPipelinesInput";
37
+ const _LPO = "ListPipelinesOutput";
38
+ const _O = "Operator";
39
+ const _PA = "ParameterAttribute";
40
+ const _PAL = "ParameterAttributeList";
41
+ const _PD = "PipelineDescription";
42
+ const _PDE = "PipelineDeletedException";
43
+ const _PDL = "PipelineDescriptionList";
44
+ const _PFT = "PollForTask";
45
+ const _PFTI = "PollForTaskInput";
46
+ const _PFTO = "PollForTaskOutput";
47
+ const _PIN = "PipelineIdName";
48
+ const _PNFE = "PipelineNotFoundException";
49
+ const _PO = "ParameterObject";
50
+ const _POL = "ParameterObjectList";
51
+ const _POLi = "PipelineObjectList";
52
+ const _POM = "PipelineObjectMap";
53
+ const _POi = "PipelineObject";
54
+ const _PPD = "PutPipelineDefinition";
55
+ const _PPDI = "PutPipelineDefinitionInput";
56
+ const _PPDO = "PutPipelineDefinitionOutput";
57
+ const _PV = "ParameterValue";
58
+ const _PVL = "ParameterValueList";
59
+ const _Q = "Query";
60
+ const _QO = "QueryObjects";
61
+ const _QOI = "QueryObjectsInput";
62
+ const _QOO = "QueryObjectsOutput";
63
+ const _RT = "RemoveTags";
64
+ const _RTI = "RemoveTagsInput";
65
+ const _RTO = "RemoveTagsOutput";
66
+ const _RTP = "ReportTaskProgress";
67
+ const _RTPI = "ReportTaskProgressInput";
68
+ const _RTPO = "ReportTaskProgressOutput";
69
+ const _RTRH = "ReportTaskRunnerHeartbeat";
70
+ const _RTRHI = "ReportTaskRunnerHeartbeatInput";
71
+ const _RTRHO = "ReportTaskRunnerHeartbeatOutput";
72
+ const _S = "Selector";
73
+ const _SL = "SelectorList";
74
+ const _SS = "SetStatus";
75
+ const _SSI = "SetStatusInput";
76
+ const _STS = "SetTaskStatus";
77
+ const _STSI = "SetTaskStatusInput";
78
+ const _STSO = "SetTaskStatusOutput";
79
+ const _T = "Tag";
80
+ const _TNFE = "TaskNotFoundException";
81
+ const _TO = "TaskObject";
82
+ const _VE = "ValidationError";
83
+ const _VEa = "ValidationErrors";
84
+ const _VPD = "ValidatePipelineDefinition";
85
+ const _VPDI = "ValidatePipelineDefinitionInput";
86
+ const _VPDO = "ValidatePipelineDefinitionOutput";
87
+ const _VW = "ValidationWarning";
88
+ const _VWa = "ValidationWarnings";
89
+ const _a = "attributes";
90
+ const _aI = "attemptId";
91
+ const _c = "client";
92
+ const _cA = "cancelActive";
93
+ const _ca = "canceled";
94
+ const _d = "description";
95
+ const _do = "document";
96
+ const _e = "error";
97
+ const _eE = "evaluateExpressions";
98
+ const _eEv = "evaluatedExpression";
99
+ const _eI = "errorId";
100
+ const _eM = "errorMessage";
101
+ const _eST = "errorStackTrace";
102
+ const _er = "errored";
103
+ const _err = "errors";
104
+ const _ex = "expression";
105
+ const _f = "fields";
106
+ const _fL = "fieldList";
107
+ const _fN = "fieldName";
108
+ const _h = "hostname";
109
+ const _hMR = "hasMoreResults";
110
+ const _i = "id";
111
+ const _iI = "instanceIdentity";
112
+ const _id = "ids";
113
+ const _k = "key";
114
+ const _l = "limit";
115
+ const _m = "message";
116
+ const _ma = "marker";
117
+ const _n = "name";
118
+ const _o = "operator";
119
+ const _oI = "objectIds";
120
+ const _oIb = "objectId";
121
+ const _ob = "objects";
122
+ const _pDL = "pipelineDescriptionList";
123
+ const _pI = "pipelineId";
124
+ const _pIL = "pipelineIdList";
125
+ const _pIi = "pipelineIds";
126
+ const _pL = "pipelineList";
127
+ const _pO = "pipelineObjects";
128
+ const _pOa = "parameterObjects";
129
+ const _pV = "parameterValues";
130
+ const _q = "query";
131
+ const _rV = "refValue";
132
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.datapipeline";
133
+ const _sT = "startTimestamp";
134
+ const _sV = "stringValue";
135
+ const _se = "server";
136
+ const _sel = "selectors";
137
+ const _si = "signature";
138
+ const _sp = "sphere";
139
+ const _st = "status";
140
+ const _t = "tags";
141
+ const _tI = "taskId";
142
+ const _tIa = "taskrunnerId";
143
+ const _tK = "tagKeys";
144
+ const _tL = "tagList";
145
+ const _tO = "taskObject";
146
+ const _tS = "taskStatus";
147
+ const _te = "terminate";
148
+ const _ty = "type";
149
+ const _uI = "uniqueId";
150
+ const _v = "version";
151
+ const _vE = "validationErrors";
152
+ const _vW = "validationWarnings";
153
+ const _va = "values";
154
+ const _val = "value";
155
+ const _w = "warnings";
156
+ const _wG = "workerGroup";
157
+ const n0 = "com.amazonaws.datapipeline";
158
+ const schema_1 = require("@smithy/core/schema");
159
+ const DataPipelineServiceException_1 = require("../models/DataPipelineServiceException");
160
+ const errors_1 = require("../models/errors");
161
+ const _s_registry = schema_1.TypeRegistry.for(_s);
162
+ exports.DataPipelineServiceException$ = [-3, _s, "DataPipelineServiceException", 0, [], []];
163
+ _s_registry.registerError(exports.DataPipelineServiceException$, DataPipelineServiceException_1.DataPipelineServiceException);
164
+ const n0_registry = schema_1.TypeRegistry.for(n0);
165
+ exports.InternalServiceError$ = [-3, n0, _ISE,
166
+ { [_e]: _se },
167
+ [_m],
168
+ [0]
169
+ ];
170
+ n0_registry.registerError(exports.InternalServiceError$, errors_1.InternalServiceError);
171
+ exports.InvalidRequestException$ = [-3, n0, _IRE,
172
+ { [_e]: _c },
173
+ [_m],
174
+ [0]
175
+ ];
176
+ n0_registry.registerError(exports.InvalidRequestException$, errors_1.InvalidRequestException);
177
+ exports.PipelineDeletedException$ = [-3, n0, _PDE,
178
+ { [_e]: _c },
179
+ [_m],
180
+ [0]
181
+ ];
182
+ n0_registry.registerError(exports.PipelineDeletedException$, errors_1.PipelineDeletedException);
183
+ exports.PipelineNotFoundException$ = [-3, n0, _PNFE,
184
+ { [_e]: _c },
185
+ [_m],
186
+ [0]
187
+ ];
188
+ n0_registry.registerError(exports.PipelineNotFoundException$, errors_1.PipelineNotFoundException);
189
+ exports.TaskNotFoundException$ = [-3, n0, _TNFE,
190
+ { [_e]: _c },
191
+ [_m],
192
+ [0]
193
+ ];
194
+ n0_registry.registerError(exports.TaskNotFoundException$, errors_1.TaskNotFoundException);
195
+ exports.errorTypeRegistries = [
196
+ _s_registry,
197
+ n0_registry,
198
+ ];
199
+ exports.ActivatePipelineInput$ = [3, n0, _API,
200
+ 0,
201
+ [_pI, _pV, _sT],
202
+ [0, () => ParameterValueList, 4], 1
203
+ ];
204
+ exports.ActivatePipelineOutput$ = [3, n0, _APO,
205
+ 0,
206
+ [],
207
+ []
208
+ ];
209
+ exports.AddTagsInput$ = [3, n0, _ATI,
210
+ 0,
211
+ [_pI, _t],
212
+ [0, () => tagList], 2
213
+ ];
214
+ exports.AddTagsOutput$ = [3, n0, _ATO,
215
+ 0,
216
+ [],
217
+ []
218
+ ];
219
+ exports.CreatePipelineInput$ = [3, n0, _CPI,
220
+ 0,
221
+ [_n, _uI, _d, _t],
222
+ [0, 0, 0, () => tagList], 2
223
+ ];
224
+ exports.CreatePipelineOutput$ = [3, n0, _CPO,
225
+ 0,
226
+ [_pI],
227
+ [0], 1
228
+ ];
229
+ exports.DeactivatePipelineInput$ = [3, n0, _DPI,
230
+ 0,
231
+ [_pI, _cA],
232
+ [0, 2], 1
233
+ ];
234
+ exports.DeactivatePipelineOutput$ = [3, n0, _DPO,
235
+ 0,
236
+ [],
237
+ []
238
+ ];
239
+ exports.DeletePipelineInput$ = [3, n0, _DPIe,
240
+ 0,
241
+ [_pI],
242
+ [0], 1
243
+ ];
244
+ exports.DescribeObjectsInput$ = [3, n0, _DOI,
245
+ 0,
246
+ [_pI, _oI, _eE, _ma],
247
+ [0, 64 | 0, 2, 0], 2
248
+ ];
249
+ exports.DescribeObjectsOutput$ = [3, n0, _DOO,
250
+ 0,
251
+ [_pO, _ma, _hMR],
252
+ [() => PipelineObjectList, 0, 2], 1
253
+ ];
254
+ exports.DescribePipelinesInput$ = [3, n0, _DPIes,
255
+ 0,
256
+ [_pIi],
257
+ [64 | 0], 1
258
+ ];
259
+ exports.DescribePipelinesOutput$ = [3, n0, _DPOe,
260
+ 0,
261
+ [_pDL],
262
+ [() => PipelineDescriptionList], 1
263
+ ];
264
+ exports.EvaluateExpressionInput$ = [3, n0, _EEI,
265
+ 0,
266
+ [_pI, _oIb, _ex],
267
+ [0, 0, 0], 3
268
+ ];
269
+ exports.EvaluateExpressionOutput$ = [3, n0, _EEO,
270
+ 0,
271
+ [_eEv],
272
+ [0], 1
273
+ ];
274
+ exports.Field$ = [3, n0, _F,
275
+ 0,
276
+ [_k, _sV, _rV],
277
+ [0, 0, 0], 1
278
+ ];
279
+ exports.GetPipelineDefinitionInput$ = [3, n0, _GPDI,
280
+ 0,
281
+ [_pI, _v],
282
+ [0, 0], 1
283
+ ];
284
+ exports.GetPipelineDefinitionOutput$ = [3, n0, _GPDO,
285
+ 0,
286
+ [_pO, _pOa, _pV],
287
+ [() => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList]
288
+ ];
289
+ exports.InstanceIdentity$ = [3, n0, _II,
290
+ 0,
291
+ [_do, _si],
292
+ [0, 0]
293
+ ];
294
+ exports.ListPipelinesInput$ = [3, n0, _LPI,
295
+ 0,
296
+ [_ma],
297
+ [0]
298
+ ];
299
+ exports.ListPipelinesOutput$ = [3, n0, _LPO,
300
+ 0,
301
+ [_pIL, _ma, _hMR],
302
+ [() => pipelineList, 0, 2], 1
303
+ ];
304
+ exports.Operator$ = [3, n0, _O,
305
+ 0,
306
+ [_ty, _va],
307
+ [0, 64 | 0]
308
+ ];
309
+ exports.ParameterAttribute$ = [3, n0, _PA,
310
+ 0,
311
+ [_k, _sV],
312
+ [0, 0], 2
313
+ ];
314
+ exports.ParameterObject$ = [3, n0, _PO,
315
+ 0,
316
+ [_i, _a],
317
+ [0, () => ParameterAttributeList], 2
318
+ ];
319
+ exports.ParameterValue$ = [3, n0, _PV,
320
+ 0,
321
+ [_i, _sV],
322
+ [0, 0], 2
323
+ ];
324
+ exports.PipelineDescription$ = [3, n0, _PD,
325
+ 0,
326
+ [_pI, _n, _f, _d, _t],
327
+ [0, 0, () => fieldList, 0, () => tagList], 3
328
+ ];
329
+ exports.PipelineIdName$ = [3, n0, _PIN,
330
+ 0,
331
+ [_i, _n],
332
+ [0, 0]
333
+ ];
334
+ exports.PipelineObject$ = [3, n0, _POi,
335
+ 0,
336
+ [_i, _n, _f],
337
+ [0, 0, () => fieldList], 3
338
+ ];
339
+ exports.PollForTaskInput$ = [3, n0, _PFTI,
340
+ 0,
341
+ [_wG, _h, _iI],
342
+ [0, 0, () => exports.InstanceIdentity$], 1
343
+ ];
344
+ exports.PollForTaskOutput$ = [3, n0, _PFTO,
345
+ 0,
346
+ [_tO],
347
+ [() => exports.TaskObject$]
348
+ ];
349
+ exports.PutPipelineDefinitionInput$ = [3, n0, _PPDI,
350
+ 0,
351
+ [_pI, _pO, _pOa, _pV],
352
+ [0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
353
+ ];
354
+ exports.PutPipelineDefinitionOutput$ = [3, n0, _PPDO,
355
+ 0,
356
+ [_er, _vE, _vW],
357
+ [2, () => ValidationErrors, () => ValidationWarnings], 1
358
+ ];
359
+ exports.Query$ = [3, n0, _Q,
360
+ 0,
361
+ [_sel],
362
+ [() => SelectorList]
363
+ ];
364
+ exports.QueryObjectsInput$ = [3, n0, _QOI,
365
+ 0,
366
+ [_pI, _sp, _q, _ma, _l],
367
+ [0, 0, () => exports.Query$, 0, 1], 2
368
+ ];
369
+ exports.QueryObjectsOutput$ = [3, n0, _QOO,
370
+ 0,
371
+ [_id, _ma, _hMR],
372
+ [64 | 0, 0, 2]
373
+ ];
374
+ exports.RemoveTagsInput$ = [3, n0, _RTI,
375
+ 0,
376
+ [_pI, _tK],
377
+ [0, 64 | 0], 2
378
+ ];
379
+ exports.RemoveTagsOutput$ = [3, n0, _RTO,
380
+ 0,
381
+ [],
382
+ []
383
+ ];
384
+ exports.ReportTaskProgressInput$ = [3, n0, _RTPI,
385
+ 0,
386
+ [_tI, _f],
387
+ [0, () => fieldList], 1
388
+ ];
389
+ exports.ReportTaskProgressOutput$ = [3, n0, _RTPO,
390
+ 0,
391
+ [_ca],
392
+ [2], 1
393
+ ];
394
+ exports.ReportTaskRunnerHeartbeatInput$ = [3, n0, _RTRHI,
395
+ 0,
396
+ [_tIa, _wG, _h],
397
+ [0, 0, 0], 1
398
+ ];
399
+ exports.ReportTaskRunnerHeartbeatOutput$ = [3, n0, _RTRHO,
400
+ 0,
401
+ [_te],
402
+ [2], 1
403
+ ];
404
+ exports.Selector$ = [3, n0, _S,
405
+ 0,
406
+ [_fN, _o],
407
+ [0, () => exports.Operator$]
408
+ ];
409
+ exports.SetStatusInput$ = [3, n0, _SSI,
410
+ 0,
411
+ [_pI, _oI, _st],
412
+ [0, 64 | 0, 0], 3
413
+ ];
414
+ exports.SetTaskStatusInput$ = [3, n0, _STSI,
415
+ 0,
416
+ [_tI, _tS, _eI, _eM, _eST],
417
+ [0, 0, 0, 0, 0], 2
418
+ ];
419
+ exports.SetTaskStatusOutput$ = [3, n0, _STSO,
420
+ 0,
421
+ [],
422
+ []
423
+ ];
424
+ exports.Tag$ = [3, n0, _T,
425
+ 0,
426
+ [_k, _val],
427
+ [0, 0], 2
428
+ ];
429
+ exports.TaskObject$ = [3, n0, _TO,
430
+ 0,
431
+ [_tI, _pI, _aI, _ob],
432
+ [0, 0, 0, () => PipelineObjectMap]
433
+ ];
434
+ exports.ValidatePipelineDefinitionInput$ = [3, n0, _VPDI,
435
+ 0,
436
+ [_pI, _pO, _pOa, _pV],
437
+ [0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
438
+ ];
439
+ exports.ValidatePipelineDefinitionOutput$ = [3, n0, _VPDO,
440
+ 0,
441
+ [_er, _vE, _vW],
442
+ [2, () => ValidationErrors, () => ValidationWarnings], 1
443
+ ];
444
+ exports.ValidationError$ = [3, n0, _VE,
445
+ 0,
446
+ [_i, _err],
447
+ [0, 64 | 0]
448
+ ];
449
+ exports.ValidationWarning$ = [3, n0, _VW,
450
+ 0,
451
+ [_i, _w],
452
+ [0, 64 | 0]
453
+ ];
454
+ var __Unit = "unit";
455
+ var fieldList = [1, n0, _fL,
456
+ 0, () => exports.Field$
457
+ ];
458
+ var idList = 64 | 0;
459
+ var ParameterAttributeList = [1, n0, _PAL,
460
+ 0, () => exports.ParameterAttribute$
461
+ ];
462
+ var ParameterObjectList = [1, n0, _POL,
463
+ 0, () => exports.ParameterObject$
464
+ ];
465
+ var ParameterValueList = [1, n0, _PVL,
466
+ 0, () => exports.ParameterValue$
467
+ ];
468
+ var PipelineDescriptionList = [1, n0, _PDL,
469
+ 0, () => exports.PipelineDescription$
470
+ ];
471
+ var pipelineList = [1, n0, _pL,
472
+ 0, () => exports.PipelineIdName$
473
+ ];
474
+ var PipelineObjectList = [1, n0, _POLi,
475
+ 0, () => exports.PipelineObject$
476
+ ];
477
+ var SelectorList = [1, n0, _SL,
478
+ 0, () => exports.Selector$
479
+ ];
480
+ var stringList = 64 | 0;
481
+ var tagList = [1, n0, _tL,
482
+ 0, () => exports.Tag$
483
+ ];
484
+ var ValidationErrors = [1, n0, _VEa,
485
+ 0, () => exports.ValidationError$
486
+ ];
487
+ var validationMessages = 64 | 0;
488
+ var ValidationWarnings = [1, n0, _VWa,
489
+ 0, () => exports.ValidationWarning$
490
+ ];
491
+ var PipelineObjectMap = [2, n0, _POM,
492
+ 0, 0, () => exports.PipelineObject$
493
+ ];
494
+ exports.ActivatePipeline$ = [9, n0, _AP,
495
+ 0, () => exports.ActivatePipelineInput$, () => exports.ActivatePipelineOutput$
496
+ ];
497
+ exports.AddTags$ = [9, n0, _AT,
498
+ 0, () => exports.AddTagsInput$, () => exports.AddTagsOutput$
499
+ ];
500
+ exports.CreatePipeline$ = [9, n0, _CP,
501
+ 0, () => exports.CreatePipelineInput$, () => exports.CreatePipelineOutput$
502
+ ];
503
+ exports.DeactivatePipeline$ = [9, n0, _DP,
504
+ 0, () => exports.DeactivatePipelineInput$, () => exports.DeactivatePipelineOutput$
505
+ ];
506
+ exports.DeletePipeline$ = [9, n0, _DPe,
507
+ 0, () => exports.DeletePipelineInput$, () => __Unit
508
+ ];
509
+ exports.DescribeObjects$ = [9, n0, _DO,
510
+ 0, () => exports.DescribeObjectsInput$, () => exports.DescribeObjectsOutput$
511
+ ];
512
+ exports.DescribePipelines$ = [9, n0, _DPes,
513
+ 0, () => exports.DescribePipelinesInput$, () => exports.DescribePipelinesOutput$
514
+ ];
515
+ exports.EvaluateExpression$ = [9, n0, _EE,
516
+ 0, () => exports.EvaluateExpressionInput$, () => exports.EvaluateExpressionOutput$
517
+ ];
518
+ exports.GetPipelineDefinition$ = [9, n0, _GPD,
519
+ 0, () => exports.GetPipelineDefinitionInput$, () => exports.GetPipelineDefinitionOutput$
520
+ ];
521
+ exports.ListPipelines$ = [9, n0, _LP,
522
+ 0, () => exports.ListPipelinesInput$, () => exports.ListPipelinesOutput$
523
+ ];
524
+ exports.PollForTask$ = [9, n0, _PFT,
525
+ 0, () => exports.PollForTaskInput$, () => exports.PollForTaskOutput$
526
+ ];
527
+ exports.PutPipelineDefinition$ = [9, n0, _PPD,
528
+ 0, () => exports.PutPipelineDefinitionInput$, () => exports.PutPipelineDefinitionOutput$
529
+ ];
530
+ exports.QueryObjects$ = [9, n0, _QO,
531
+ 0, () => exports.QueryObjectsInput$, () => exports.QueryObjectsOutput$
532
+ ];
533
+ exports.RemoveTags$ = [9, n0, _RT,
534
+ 0, () => exports.RemoveTagsInput$, () => exports.RemoveTagsOutput$
535
+ ];
536
+ exports.ReportTaskProgress$ = [9, n0, _RTP,
537
+ 0, () => exports.ReportTaskProgressInput$, () => exports.ReportTaskProgressOutput$
538
+ ];
539
+ exports.ReportTaskRunnerHeartbeat$ = [9, n0, _RTRH,
540
+ 0, () => exports.ReportTaskRunnerHeartbeatInput$, () => exports.ReportTaskRunnerHeartbeatOutput$
541
+ ];
542
+ exports.SetStatus$ = [9, n0, _SS,
543
+ 0, () => exports.SetStatusInput$, () => __Unit
544
+ ];
545
+ exports.SetTaskStatus$ = [9, n0, _STS,
546
+ 0, () => exports.SetTaskStatusInput$, () => exports.SetTaskStatusOutput$
547
+ ];
548
+ exports.ValidatePipelineDefinition$ = [9, n0, _VPD,
549
+ 0, () => exports.ValidatePipelineDefinitionInput$, () => exports.ValidatePipelineDefinitionOutput$
550
+ ];
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
6
6
  import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
7
7
  import { defaultDataPipelineHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
8
8
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
9
+ import { errorTypeRegistries } from "./schemas/schemas_0";
9
10
  export const getRuntimeConfig = (config) => {
10
11
  return {
11
12
  apiVersion: "2012-10-29",
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
26
27
  protocol: config?.protocol ?? AwsJson1_1Protocol,
27
28
  protocolSettings: config?.protocolSettings ?? {
28
29
  defaultNamespace: "com.amazonaws.datapipeline",
30
+ errorTypeRegistries,
29
31
  xmlNamespace: "http://datapipeline.amazonaws.com/doc/2012-10-29/",
30
32
  version: "2012-10-29",
31
33
  serviceTarget: "DataPipeline",