@aws-sdk/client-data-pipeline 3.1075.0 → 3.1076.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/index.js +872 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/DataPipelineServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -61
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -603
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultDataPipelineHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "datapipeline",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultDataPipelineHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,744 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://datapipeline-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://datapipeline-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://datapipeline.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://datapipeline.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class DataPipelineServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, DataPipelineServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InternalServiceError extends DataPipelineServiceException {
|
|
140
|
+
name = "InternalServiceError";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "InternalServiceError",
|
|
145
|
+
$fault: "server",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class InvalidRequestException extends DataPipelineServiceException {
|
|
152
|
+
name = "InvalidRequestException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InvalidRequestException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class PipelineDeletedException extends DataPipelineServiceException {
|
|
164
|
+
name = "PipelineDeletedException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "PipelineDeletedException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, PipelineDeletedException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class PipelineNotFoundException extends DataPipelineServiceException {
|
|
176
|
+
name = "PipelineNotFoundException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "PipelineNotFoundException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class TaskNotFoundException extends DataPipelineServiceException {
|
|
188
|
+
name = "TaskNotFoundException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "TaskNotFoundException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, TaskNotFoundException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const _AP = "ActivatePipeline";
|
|
201
|
+
const _API = "ActivatePipelineInput";
|
|
202
|
+
const _APO = "ActivatePipelineOutput";
|
|
203
|
+
const _AT = "AddTags";
|
|
204
|
+
const _ATI = "AddTagsInput";
|
|
205
|
+
const _ATO = "AddTagsOutput";
|
|
206
|
+
const _CP = "CreatePipeline";
|
|
207
|
+
const _CPI = "CreatePipelineInput";
|
|
208
|
+
const _CPO = "CreatePipelineOutput";
|
|
209
|
+
const _DO = "DescribeObjects";
|
|
210
|
+
const _DOI = "DescribeObjectsInput";
|
|
211
|
+
const _DOO = "DescribeObjectsOutput";
|
|
212
|
+
const _DP = "DeactivatePipeline";
|
|
213
|
+
const _DPI = "DeactivatePipelineInput";
|
|
214
|
+
const _DPIe = "DeletePipelineInput";
|
|
215
|
+
const _DPIes = "DescribePipelinesInput";
|
|
216
|
+
const _DPO = "DeactivatePipelineOutput";
|
|
217
|
+
const _DPOe = "DescribePipelinesOutput";
|
|
218
|
+
const _DPe = "DeletePipeline";
|
|
219
|
+
const _DPes = "DescribePipelines";
|
|
220
|
+
const _EE = "EvaluateExpression";
|
|
221
|
+
const _EEI = "EvaluateExpressionInput";
|
|
222
|
+
const _EEO = "EvaluateExpressionOutput";
|
|
223
|
+
const _F = "Field";
|
|
224
|
+
const _GPD = "GetPipelineDefinition";
|
|
225
|
+
const _GPDI = "GetPipelineDefinitionInput";
|
|
226
|
+
const _GPDO = "GetPipelineDefinitionOutput";
|
|
227
|
+
const _II = "InstanceIdentity";
|
|
228
|
+
const _IRE = "InvalidRequestException";
|
|
229
|
+
const _ISE = "InternalServiceError";
|
|
230
|
+
const _LP = "ListPipelines";
|
|
231
|
+
const _LPI = "ListPipelinesInput";
|
|
232
|
+
const _LPO = "ListPipelinesOutput";
|
|
233
|
+
const _O = "Operator";
|
|
234
|
+
const _PA = "ParameterAttribute";
|
|
235
|
+
const _PAL = "ParameterAttributeList";
|
|
236
|
+
const _PD = "PipelineDescription";
|
|
237
|
+
const _PDE = "PipelineDeletedException";
|
|
238
|
+
const _PDL = "PipelineDescriptionList";
|
|
239
|
+
const _PFT = "PollForTask";
|
|
240
|
+
const _PFTI = "PollForTaskInput";
|
|
241
|
+
const _PFTO = "PollForTaskOutput";
|
|
242
|
+
const _PIN = "PipelineIdName";
|
|
243
|
+
const _PNFE = "PipelineNotFoundException";
|
|
244
|
+
const _PO = "ParameterObject";
|
|
245
|
+
const _POL = "ParameterObjectList";
|
|
246
|
+
const _POLi = "PipelineObjectList";
|
|
247
|
+
const _POM = "PipelineObjectMap";
|
|
248
|
+
const _POi = "PipelineObject";
|
|
249
|
+
const _PPD = "PutPipelineDefinition";
|
|
250
|
+
const _PPDI = "PutPipelineDefinitionInput";
|
|
251
|
+
const _PPDO = "PutPipelineDefinitionOutput";
|
|
252
|
+
const _PV = "ParameterValue";
|
|
253
|
+
const _PVL = "ParameterValueList";
|
|
254
|
+
const _Q = "Query";
|
|
255
|
+
const _QO = "QueryObjects";
|
|
256
|
+
const _QOI = "QueryObjectsInput";
|
|
257
|
+
const _QOO = "QueryObjectsOutput";
|
|
258
|
+
const _RT = "RemoveTags";
|
|
259
|
+
const _RTI = "RemoveTagsInput";
|
|
260
|
+
const _RTO = "RemoveTagsOutput";
|
|
261
|
+
const _RTP = "ReportTaskProgress";
|
|
262
|
+
const _RTPI = "ReportTaskProgressInput";
|
|
263
|
+
const _RTPO = "ReportTaskProgressOutput";
|
|
264
|
+
const _RTRH = "ReportTaskRunnerHeartbeat";
|
|
265
|
+
const _RTRHI = "ReportTaskRunnerHeartbeatInput";
|
|
266
|
+
const _RTRHO = "ReportTaskRunnerHeartbeatOutput";
|
|
267
|
+
const _S = "Selector";
|
|
268
|
+
const _SL = "SelectorList";
|
|
269
|
+
const _SS = "SetStatus";
|
|
270
|
+
const _SSI = "SetStatusInput";
|
|
271
|
+
const _STS = "SetTaskStatus";
|
|
272
|
+
const _STSI = "SetTaskStatusInput";
|
|
273
|
+
const _STSO = "SetTaskStatusOutput";
|
|
274
|
+
const _T = "Tag";
|
|
275
|
+
const _TNFE = "TaskNotFoundException";
|
|
276
|
+
const _TO = "TaskObject";
|
|
277
|
+
const _VE = "ValidationError";
|
|
278
|
+
const _VEa = "ValidationErrors";
|
|
279
|
+
const _VPD = "ValidatePipelineDefinition";
|
|
280
|
+
const _VPDI = "ValidatePipelineDefinitionInput";
|
|
281
|
+
const _VPDO = "ValidatePipelineDefinitionOutput";
|
|
282
|
+
const _VW = "ValidationWarning";
|
|
283
|
+
const _VWa = "ValidationWarnings";
|
|
284
|
+
const _a = "attributes";
|
|
285
|
+
const _aI = "attemptId";
|
|
286
|
+
const _c = "client";
|
|
287
|
+
const _cA = "cancelActive";
|
|
288
|
+
const _ca = "canceled";
|
|
289
|
+
const _d = "description";
|
|
290
|
+
const _do = "document";
|
|
291
|
+
const _e = "error";
|
|
292
|
+
const _eE = "evaluateExpressions";
|
|
293
|
+
const _eEv = "evaluatedExpression";
|
|
294
|
+
const _eI = "errorId";
|
|
295
|
+
const _eM = "errorMessage";
|
|
296
|
+
const _eST = "errorStackTrace";
|
|
297
|
+
const _er = "errored";
|
|
298
|
+
const _err = "errors";
|
|
299
|
+
const _ex = "expression";
|
|
300
|
+
const _f = "fields";
|
|
301
|
+
const _fL = "fieldList";
|
|
302
|
+
const _fN = "fieldName";
|
|
303
|
+
const _h = "hostname";
|
|
304
|
+
const _hMR = "hasMoreResults";
|
|
305
|
+
const _i = "id";
|
|
306
|
+
const _iI = "instanceIdentity";
|
|
307
|
+
const _id = "ids";
|
|
308
|
+
const _k = "key";
|
|
309
|
+
const _l = "limit";
|
|
310
|
+
const _m = "message";
|
|
311
|
+
const _ma = "marker";
|
|
312
|
+
const _n = "name";
|
|
313
|
+
const _o = "operator";
|
|
314
|
+
const _oI = "objectIds";
|
|
315
|
+
const _oIb = "objectId";
|
|
316
|
+
const _ob = "objects";
|
|
317
|
+
const _pDL = "pipelineDescriptionList";
|
|
318
|
+
const _pI = "pipelineId";
|
|
319
|
+
const _pIL = "pipelineIdList";
|
|
320
|
+
const _pIi = "pipelineIds";
|
|
321
|
+
const _pL = "pipelineList";
|
|
322
|
+
const _pO = "pipelineObjects";
|
|
323
|
+
const _pOa = "parameterObjects";
|
|
324
|
+
const _pV = "parameterValues";
|
|
325
|
+
const _q = "query";
|
|
326
|
+
const _rV = "refValue";
|
|
327
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.datapipeline";
|
|
328
|
+
const _sT = "startTimestamp";
|
|
329
|
+
const _sV = "stringValue";
|
|
330
|
+
const _se = "server";
|
|
331
|
+
const _sel = "selectors";
|
|
332
|
+
const _si = "signature";
|
|
333
|
+
const _sp = "sphere";
|
|
334
|
+
const _st = "status";
|
|
335
|
+
const _t = "tags";
|
|
336
|
+
const _tI = "taskId";
|
|
337
|
+
const _tIa = "taskrunnerId";
|
|
338
|
+
const _tK = "tagKeys";
|
|
339
|
+
const _tL = "tagList";
|
|
340
|
+
const _tO = "taskObject";
|
|
341
|
+
const _tS = "taskStatus";
|
|
342
|
+
const _te = "terminate";
|
|
343
|
+
const _ty = "type";
|
|
344
|
+
const _uI = "uniqueId";
|
|
345
|
+
const _v = "version";
|
|
346
|
+
const _vE = "validationErrors";
|
|
347
|
+
const _vW = "validationWarnings";
|
|
348
|
+
const _va = "values";
|
|
349
|
+
const _val = "value";
|
|
350
|
+
const _w = "warnings";
|
|
351
|
+
const _wG = "workerGroup";
|
|
352
|
+
const n0 = "com.amazonaws.datapipeline";
|
|
353
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
354
|
+
var DataPipelineServiceException$ = [-3, _s, "DataPipelineServiceException", 0, [], []];
|
|
355
|
+
_s_registry.registerError(DataPipelineServiceException$, DataPipelineServiceException);
|
|
356
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
357
|
+
var InternalServiceError$ = [-3, n0, _ISE,
|
|
358
|
+
{ [_e]: _se },
|
|
359
|
+
[_m],
|
|
360
|
+
[0]
|
|
361
|
+
];
|
|
362
|
+
n0_registry.registerError(InternalServiceError$, InternalServiceError);
|
|
363
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
364
|
+
{ [_e]: _c },
|
|
365
|
+
[_m],
|
|
366
|
+
[0]
|
|
367
|
+
];
|
|
368
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
369
|
+
var PipelineDeletedException$ = [-3, n0, _PDE,
|
|
370
|
+
{ [_e]: _c },
|
|
371
|
+
[_m],
|
|
372
|
+
[0]
|
|
373
|
+
];
|
|
374
|
+
n0_registry.registerError(PipelineDeletedException$, PipelineDeletedException);
|
|
375
|
+
var PipelineNotFoundException$ = [-3, n0, _PNFE,
|
|
376
|
+
{ [_e]: _c },
|
|
377
|
+
[_m],
|
|
378
|
+
[0]
|
|
379
|
+
];
|
|
380
|
+
n0_registry.registerError(PipelineNotFoundException$, PipelineNotFoundException);
|
|
381
|
+
var TaskNotFoundException$ = [-3, n0, _TNFE,
|
|
382
|
+
{ [_e]: _c },
|
|
383
|
+
[_m],
|
|
384
|
+
[0]
|
|
385
|
+
];
|
|
386
|
+
n0_registry.registerError(TaskNotFoundException$, TaskNotFoundException);
|
|
387
|
+
const errorTypeRegistries = [
|
|
388
|
+
_s_registry,
|
|
389
|
+
n0_registry,
|
|
390
|
+
];
|
|
391
|
+
var ActivatePipelineInput$ = [3, n0, _API,
|
|
392
|
+
0,
|
|
393
|
+
[_pI, _pV, _sT],
|
|
394
|
+
[0, () => ParameterValueList, 4], 1
|
|
395
|
+
];
|
|
396
|
+
var ActivatePipelineOutput$ = [3, n0, _APO,
|
|
397
|
+
0,
|
|
398
|
+
[],
|
|
399
|
+
[]
|
|
400
|
+
];
|
|
401
|
+
var AddTagsInput$ = [3, n0, _ATI,
|
|
402
|
+
0,
|
|
403
|
+
[_pI, _t],
|
|
404
|
+
[0, () => tagList], 2
|
|
405
|
+
];
|
|
406
|
+
var AddTagsOutput$ = [3, n0, _ATO,
|
|
407
|
+
0,
|
|
408
|
+
[],
|
|
409
|
+
[]
|
|
410
|
+
];
|
|
411
|
+
var CreatePipelineInput$ = [3, n0, _CPI,
|
|
412
|
+
0,
|
|
413
|
+
[_n, _uI, _d, _t],
|
|
414
|
+
[0, 0, 0, () => tagList], 2
|
|
415
|
+
];
|
|
416
|
+
var CreatePipelineOutput$ = [3, n0, _CPO,
|
|
417
|
+
0,
|
|
418
|
+
[_pI],
|
|
419
|
+
[0], 1
|
|
420
|
+
];
|
|
421
|
+
var DeactivatePipelineInput$ = [3, n0, _DPI,
|
|
422
|
+
0,
|
|
423
|
+
[_pI, _cA],
|
|
424
|
+
[0, 2], 1
|
|
425
|
+
];
|
|
426
|
+
var DeactivatePipelineOutput$ = [3, n0, _DPO,
|
|
427
|
+
0,
|
|
428
|
+
[],
|
|
429
|
+
[]
|
|
430
|
+
];
|
|
431
|
+
var DeletePipelineInput$ = [3, n0, _DPIe,
|
|
432
|
+
0,
|
|
433
|
+
[_pI],
|
|
434
|
+
[0], 1
|
|
435
|
+
];
|
|
436
|
+
var DescribeObjectsInput$ = [3, n0, _DOI,
|
|
437
|
+
0,
|
|
438
|
+
[_pI, _oI, _eE, _ma],
|
|
439
|
+
[0, 64 | 0, 2, 0], 2
|
|
440
|
+
];
|
|
441
|
+
var DescribeObjectsOutput$ = [3, n0, _DOO,
|
|
442
|
+
0,
|
|
443
|
+
[_pO, _ma, _hMR],
|
|
444
|
+
[() => PipelineObjectList, 0, 2], 1
|
|
445
|
+
];
|
|
446
|
+
var DescribePipelinesInput$ = [3, n0, _DPIes,
|
|
447
|
+
0,
|
|
448
|
+
[_pIi],
|
|
449
|
+
[64 | 0], 1
|
|
450
|
+
];
|
|
451
|
+
var DescribePipelinesOutput$ = [3, n0, _DPOe,
|
|
452
|
+
0,
|
|
453
|
+
[_pDL],
|
|
454
|
+
[() => PipelineDescriptionList], 1
|
|
455
|
+
];
|
|
456
|
+
var EvaluateExpressionInput$ = [3, n0, _EEI,
|
|
457
|
+
0,
|
|
458
|
+
[_pI, _oIb, _ex],
|
|
459
|
+
[0, 0, 0], 3
|
|
460
|
+
];
|
|
461
|
+
var EvaluateExpressionOutput$ = [3, n0, _EEO,
|
|
462
|
+
0,
|
|
463
|
+
[_eEv],
|
|
464
|
+
[0], 1
|
|
465
|
+
];
|
|
466
|
+
var Field$ = [3, n0, _F,
|
|
467
|
+
0,
|
|
468
|
+
[_k, _sV, _rV],
|
|
469
|
+
[0, 0, 0], 1
|
|
470
|
+
];
|
|
471
|
+
var GetPipelineDefinitionInput$ = [3, n0, _GPDI,
|
|
472
|
+
0,
|
|
473
|
+
[_pI, _v],
|
|
474
|
+
[0, 0], 1
|
|
475
|
+
];
|
|
476
|
+
var GetPipelineDefinitionOutput$ = [3, n0, _GPDO,
|
|
477
|
+
0,
|
|
478
|
+
[_pO, _pOa, _pV],
|
|
479
|
+
[() => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList]
|
|
480
|
+
];
|
|
481
|
+
var InstanceIdentity$ = [3, n0, _II,
|
|
482
|
+
0,
|
|
483
|
+
[_do, _si],
|
|
484
|
+
[0, 0]
|
|
485
|
+
];
|
|
486
|
+
var ListPipelinesInput$ = [3, n0, _LPI,
|
|
487
|
+
0,
|
|
488
|
+
[_ma],
|
|
489
|
+
[0]
|
|
490
|
+
];
|
|
491
|
+
var ListPipelinesOutput$ = [3, n0, _LPO,
|
|
492
|
+
0,
|
|
493
|
+
[_pIL, _ma, _hMR],
|
|
494
|
+
[() => pipelineList, 0, 2], 1
|
|
495
|
+
];
|
|
496
|
+
var Operator$ = [3, n0, _O,
|
|
497
|
+
0,
|
|
498
|
+
[_ty, _va],
|
|
499
|
+
[0, 64 | 0]
|
|
500
|
+
];
|
|
501
|
+
var ParameterAttribute$ = [3, n0, _PA,
|
|
502
|
+
0,
|
|
503
|
+
[_k, _sV],
|
|
504
|
+
[0, 0], 2
|
|
505
|
+
];
|
|
506
|
+
var ParameterObject$ = [3, n0, _PO,
|
|
507
|
+
0,
|
|
508
|
+
[_i, _a],
|
|
509
|
+
[0, () => ParameterAttributeList], 2
|
|
510
|
+
];
|
|
511
|
+
var ParameterValue$ = [3, n0, _PV,
|
|
512
|
+
0,
|
|
513
|
+
[_i, _sV],
|
|
514
|
+
[0, 0], 2
|
|
515
|
+
];
|
|
516
|
+
var PipelineDescription$ = [3, n0, _PD,
|
|
517
|
+
0,
|
|
518
|
+
[_pI, _n, _f, _d, _t],
|
|
519
|
+
[0, 0, () => fieldList, 0, () => tagList], 3
|
|
520
|
+
];
|
|
521
|
+
var PipelineIdName$ = [3, n0, _PIN,
|
|
522
|
+
0,
|
|
523
|
+
[_i, _n],
|
|
524
|
+
[0, 0]
|
|
525
|
+
];
|
|
526
|
+
var PipelineObject$ = [3, n0, _POi,
|
|
527
|
+
0,
|
|
528
|
+
[_i, _n, _f],
|
|
529
|
+
[0, 0, () => fieldList], 3
|
|
530
|
+
];
|
|
531
|
+
var PollForTaskInput$ = [3, n0, _PFTI,
|
|
532
|
+
0,
|
|
533
|
+
[_wG, _h, _iI],
|
|
534
|
+
[0, 0, () => InstanceIdentity$], 1
|
|
535
|
+
];
|
|
536
|
+
var PollForTaskOutput$ = [3, n0, _PFTO,
|
|
537
|
+
0,
|
|
538
|
+
[_tO],
|
|
539
|
+
[() => TaskObject$]
|
|
540
|
+
];
|
|
541
|
+
var PutPipelineDefinitionInput$ = [3, n0, _PPDI,
|
|
542
|
+
0,
|
|
543
|
+
[_pI, _pO, _pOa, _pV],
|
|
544
|
+
[0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
|
|
545
|
+
];
|
|
546
|
+
var PutPipelineDefinitionOutput$ = [3, n0, _PPDO,
|
|
547
|
+
0,
|
|
548
|
+
[_er, _vE, _vW],
|
|
549
|
+
[2, () => ValidationErrors, () => ValidationWarnings], 1
|
|
550
|
+
];
|
|
551
|
+
var Query$ = [3, n0, _Q,
|
|
552
|
+
0,
|
|
553
|
+
[_sel],
|
|
554
|
+
[() => SelectorList]
|
|
555
|
+
];
|
|
556
|
+
var QueryObjectsInput$ = [3, n0, _QOI,
|
|
557
|
+
0,
|
|
558
|
+
[_pI, _sp, _q, _ma, _l],
|
|
559
|
+
[0, 0, () => Query$, 0, 1], 2
|
|
560
|
+
];
|
|
561
|
+
var QueryObjectsOutput$ = [3, n0, _QOO,
|
|
562
|
+
0,
|
|
563
|
+
[_id, _ma, _hMR],
|
|
564
|
+
[64 | 0, 0, 2]
|
|
565
|
+
];
|
|
566
|
+
var RemoveTagsInput$ = [3, n0, _RTI,
|
|
567
|
+
0,
|
|
568
|
+
[_pI, _tK],
|
|
569
|
+
[0, 64 | 0], 2
|
|
570
|
+
];
|
|
571
|
+
var RemoveTagsOutput$ = [3, n0, _RTO,
|
|
572
|
+
0,
|
|
573
|
+
[],
|
|
574
|
+
[]
|
|
575
|
+
];
|
|
576
|
+
var ReportTaskProgressInput$ = [3, n0, _RTPI,
|
|
577
|
+
0,
|
|
578
|
+
[_tI, _f],
|
|
579
|
+
[0, () => fieldList], 1
|
|
580
|
+
];
|
|
581
|
+
var ReportTaskProgressOutput$ = [3, n0, _RTPO,
|
|
582
|
+
0,
|
|
583
|
+
[_ca],
|
|
584
|
+
[2], 1
|
|
585
|
+
];
|
|
586
|
+
var ReportTaskRunnerHeartbeatInput$ = [3, n0, _RTRHI,
|
|
587
|
+
0,
|
|
588
|
+
[_tIa, _wG, _h],
|
|
589
|
+
[0, 0, 0], 1
|
|
590
|
+
];
|
|
591
|
+
var ReportTaskRunnerHeartbeatOutput$ = [3, n0, _RTRHO,
|
|
592
|
+
0,
|
|
593
|
+
[_te],
|
|
594
|
+
[2], 1
|
|
595
|
+
];
|
|
596
|
+
var Selector$ = [3, n0, _S,
|
|
597
|
+
0,
|
|
598
|
+
[_fN, _o],
|
|
599
|
+
[0, () => Operator$]
|
|
600
|
+
];
|
|
601
|
+
var SetStatusInput$ = [3, n0, _SSI,
|
|
602
|
+
0,
|
|
603
|
+
[_pI, _oI, _st],
|
|
604
|
+
[0, 64 | 0, 0], 3
|
|
605
|
+
];
|
|
606
|
+
var SetTaskStatusInput$ = [3, n0, _STSI,
|
|
607
|
+
0,
|
|
608
|
+
[_tI, _tS, _eI, _eM, _eST],
|
|
609
|
+
[0, 0, 0, 0, 0], 2
|
|
610
|
+
];
|
|
611
|
+
var SetTaskStatusOutput$ = [3, n0, _STSO,
|
|
612
|
+
0,
|
|
613
|
+
[],
|
|
614
|
+
[]
|
|
615
|
+
];
|
|
616
|
+
var Tag$ = [3, n0, _T,
|
|
617
|
+
0,
|
|
618
|
+
[_k, _val],
|
|
619
|
+
[0, 0], 2
|
|
620
|
+
];
|
|
621
|
+
var TaskObject$ = [3, n0, _TO,
|
|
622
|
+
0,
|
|
623
|
+
[_tI, _pI, _aI, _ob],
|
|
624
|
+
[0, 0, 0, () => PipelineObjectMap]
|
|
625
|
+
];
|
|
626
|
+
var ValidatePipelineDefinitionInput$ = [3, n0, _VPDI,
|
|
627
|
+
0,
|
|
628
|
+
[_pI, _pO, _pOa, _pV],
|
|
629
|
+
[0, () => PipelineObjectList, () => ParameterObjectList, () => ParameterValueList], 2
|
|
630
|
+
];
|
|
631
|
+
var ValidatePipelineDefinitionOutput$ = [3, n0, _VPDO,
|
|
632
|
+
0,
|
|
633
|
+
[_er, _vE, _vW],
|
|
634
|
+
[2, () => ValidationErrors, () => ValidationWarnings], 1
|
|
635
|
+
];
|
|
636
|
+
var ValidationError$ = [3, n0, _VE,
|
|
637
|
+
0,
|
|
638
|
+
[_i, _err],
|
|
639
|
+
[0, 64 | 0]
|
|
640
|
+
];
|
|
641
|
+
var ValidationWarning$ = [3, n0, _VW,
|
|
642
|
+
0,
|
|
643
|
+
[_i, _w],
|
|
644
|
+
[0, 64 | 0]
|
|
645
|
+
];
|
|
646
|
+
var __Unit = "unit";
|
|
647
|
+
var fieldList = [1, n0, _fL,
|
|
648
|
+
0, () => Field$
|
|
649
|
+
];
|
|
650
|
+
var ParameterAttributeList = [1, n0, _PAL,
|
|
651
|
+
0, () => ParameterAttribute$
|
|
652
|
+
];
|
|
653
|
+
var ParameterObjectList = [1, n0, _POL,
|
|
654
|
+
0, () => ParameterObject$
|
|
655
|
+
];
|
|
656
|
+
var ParameterValueList = [1, n0, _PVL,
|
|
657
|
+
0, () => ParameterValue$
|
|
658
|
+
];
|
|
659
|
+
var PipelineDescriptionList = [1, n0, _PDL,
|
|
660
|
+
0, () => PipelineDescription$
|
|
661
|
+
];
|
|
662
|
+
var pipelineList = [1, n0, _pL,
|
|
663
|
+
0, () => PipelineIdName$
|
|
664
|
+
];
|
|
665
|
+
var PipelineObjectList = [1, n0, _POLi,
|
|
666
|
+
0, () => PipelineObject$
|
|
667
|
+
];
|
|
668
|
+
var SelectorList = [1, n0, _SL,
|
|
669
|
+
0, () => Selector$
|
|
670
|
+
];
|
|
671
|
+
var tagList = [1, n0, _tL,
|
|
672
|
+
0, () => Tag$
|
|
673
|
+
];
|
|
674
|
+
var ValidationErrors = [1, n0, _VEa,
|
|
675
|
+
0, () => ValidationError$
|
|
676
|
+
];
|
|
677
|
+
var ValidationWarnings = [1, n0, _VWa,
|
|
678
|
+
0, () => ValidationWarning$
|
|
679
|
+
];
|
|
680
|
+
var PipelineObjectMap = [2, n0, _POM,
|
|
681
|
+
0, 0, () => PipelineObject$
|
|
682
|
+
];
|
|
683
|
+
var ActivatePipeline$ = [9, n0, _AP,
|
|
684
|
+
0, () => ActivatePipelineInput$, () => ActivatePipelineOutput$
|
|
685
|
+
];
|
|
686
|
+
var AddTags$ = [9, n0, _AT,
|
|
687
|
+
0, () => AddTagsInput$, () => AddTagsOutput$
|
|
688
|
+
];
|
|
689
|
+
var CreatePipeline$ = [9, n0, _CP,
|
|
690
|
+
0, () => CreatePipelineInput$, () => CreatePipelineOutput$
|
|
691
|
+
];
|
|
692
|
+
var DeactivatePipeline$ = [9, n0, _DP,
|
|
693
|
+
0, () => DeactivatePipelineInput$, () => DeactivatePipelineOutput$
|
|
694
|
+
];
|
|
695
|
+
var DeletePipeline$ = [9, n0, _DPe,
|
|
696
|
+
0, () => DeletePipelineInput$, () => __Unit
|
|
697
|
+
];
|
|
698
|
+
var DescribeObjects$ = [9, n0, _DO,
|
|
699
|
+
0, () => DescribeObjectsInput$, () => DescribeObjectsOutput$
|
|
700
|
+
];
|
|
701
|
+
var DescribePipelines$ = [9, n0, _DPes,
|
|
702
|
+
0, () => DescribePipelinesInput$, () => DescribePipelinesOutput$
|
|
703
|
+
];
|
|
704
|
+
var EvaluateExpression$ = [9, n0, _EE,
|
|
705
|
+
0, () => EvaluateExpressionInput$, () => EvaluateExpressionOutput$
|
|
706
|
+
];
|
|
707
|
+
var GetPipelineDefinition$ = [9, n0, _GPD,
|
|
708
|
+
0, () => GetPipelineDefinitionInput$, () => GetPipelineDefinitionOutput$
|
|
709
|
+
];
|
|
710
|
+
var ListPipelines$ = [9, n0, _LP,
|
|
711
|
+
0, () => ListPipelinesInput$, () => ListPipelinesOutput$
|
|
712
|
+
];
|
|
713
|
+
var PollForTask$ = [9, n0, _PFT,
|
|
714
|
+
0, () => PollForTaskInput$, () => PollForTaskOutput$
|
|
715
|
+
];
|
|
716
|
+
var PutPipelineDefinition$ = [9, n0, _PPD,
|
|
717
|
+
0, () => PutPipelineDefinitionInput$, () => PutPipelineDefinitionOutput$
|
|
718
|
+
];
|
|
719
|
+
var QueryObjects$ = [9, n0, _QO,
|
|
720
|
+
0, () => QueryObjectsInput$, () => QueryObjectsOutput$
|
|
721
|
+
];
|
|
722
|
+
var RemoveTags$ = [9, n0, _RT,
|
|
723
|
+
0, () => RemoveTagsInput$, () => RemoveTagsOutput$
|
|
724
|
+
];
|
|
725
|
+
var ReportTaskProgress$ = [9, n0, _RTP,
|
|
726
|
+
0, () => ReportTaskProgressInput$, () => ReportTaskProgressOutput$
|
|
727
|
+
];
|
|
728
|
+
var ReportTaskRunnerHeartbeat$ = [9, n0, _RTRH,
|
|
729
|
+
0, () => ReportTaskRunnerHeartbeatInput$, () => ReportTaskRunnerHeartbeatOutput$
|
|
730
|
+
];
|
|
731
|
+
var SetStatus$ = [9, n0, _SS,
|
|
732
|
+
0, () => SetStatusInput$, () => __Unit
|
|
733
|
+
];
|
|
734
|
+
var SetTaskStatus$ = [9, n0, _STS,
|
|
735
|
+
0, () => SetTaskStatusInput$, () => SetTaskStatusOutput$
|
|
736
|
+
];
|
|
737
|
+
var ValidatePipelineDefinition$ = [9, n0, _VPD,
|
|
738
|
+
0, () => ValidatePipelineDefinitionInput$, () => ValidatePipelineDefinitionOutput$
|
|
739
|
+
];
|
|
740
|
+
|
|
741
|
+
const getRuntimeConfig$1 = (config) => {
|
|
742
|
+
return {
|
|
743
|
+
apiVersion: "2012-10-29",
|
|
744
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
745
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
746
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
747
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
748
|
+
extensions: config?.extensions ?? [],
|
|
749
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDataPipelineHttpAuthSchemeProvider,
|
|
750
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
751
|
+
{
|
|
752
|
+
schemeId: "aws.auth#sigv4",
|
|
753
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
754
|
+
signer: new AwsSdkSigV4Signer(),
|
|
755
|
+
},
|
|
756
|
+
],
|
|
757
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
758
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
759
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
760
|
+
defaultNamespace: "com.amazonaws.datapipeline",
|
|
761
|
+
errorTypeRegistries,
|
|
762
|
+
xmlNamespace: "http://datapipeline.amazonaws.com/doc/2012-10-29/",
|
|
763
|
+
version: "2012-10-29",
|
|
764
|
+
serviceTarget: "DataPipeline",
|
|
765
|
+
},
|
|
766
|
+
serviceId: config?.serviceId ?? "Data Pipeline",
|
|
767
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
768
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
769
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
|
|
773
|
+
const getRuntimeConfig = (config) => {
|
|
774
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
775
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
776
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
777
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
778
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
779
|
+
const loaderConfig = {
|
|
780
|
+
profile: config?.profile,
|
|
781
|
+
logger: clientSharedValues.logger,
|
|
782
|
+
};
|
|
783
|
+
return {
|
|
784
|
+
...clientSharedValues,
|
|
785
|
+
...config,
|
|
786
|
+
runtime: "node",
|
|
787
|
+
defaultsMode,
|
|
788
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
789
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
790
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
791
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
792
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
793
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
794
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
795
|
+
retryMode: config?.retryMode ??
|
|
796
|
+
loadConfig({
|
|
797
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
798
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
799
|
+
}, config),
|
|
800
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
801
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
802
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
803
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
804
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
805
|
+
};
|
|
806
|
+
};
|
|
807
|
+
|
|
34
808
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
809
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
810
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -388,29 +1162,112 @@ const TaskStatus = {
|
|
|
388
1162
|
FINISHED: "FINISHED",
|
|
389
1163
|
};
|
|
390
1164
|
|
|
1165
|
+
exports.ActivatePipeline$ = ActivatePipeline$;
|
|
391
1166
|
exports.ActivatePipelineCommand = ActivatePipelineCommand;
|
|
1167
|
+
exports.ActivatePipelineInput$ = ActivatePipelineInput$;
|
|
1168
|
+
exports.ActivatePipelineOutput$ = ActivatePipelineOutput$;
|
|
1169
|
+
exports.AddTags$ = AddTags$;
|
|
392
1170
|
exports.AddTagsCommand = AddTagsCommand;
|
|
1171
|
+
exports.AddTagsInput$ = AddTagsInput$;
|
|
1172
|
+
exports.AddTagsOutput$ = AddTagsOutput$;
|
|
1173
|
+
exports.CreatePipeline$ = CreatePipeline$;
|
|
393
1174
|
exports.CreatePipelineCommand = CreatePipelineCommand;
|
|
1175
|
+
exports.CreatePipelineInput$ = CreatePipelineInput$;
|
|
1176
|
+
exports.CreatePipelineOutput$ = CreatePipelineOutput$;
|
|
394
1177
|
exports.DataPipeline = DataPipeline;
|
|
395
1178
|
exports.DataPipelineClient = DataPipelineClient;
|
|
1179
|
+
exports.DataPipelineServiceException = DataPipelineServiceException;
|
|
1180
|
+
exports.DataPipelineServiceException$ = DataPipelineServiceException$;
|
|
1181
|
+
exports.DeactivatePipeline$ = DeactivatePipeline$;
|
|
396
1182
|
exports.DeactivatePipelineCommand = DeactivatePipelineCommand;
|
|
1183
|
+
exports.DeactivatePipelineInput$ = DeactivatePipelineInput$;
|
|
1184
|
+
exports.DeactivatePipelineOutput$ = DeactivatePipelineOutput$;
|
|
1185
|
+
exports.DeletePipeline$ = DeletePipeline$;
|
|
397
1186
|
exports.DeletePipelineCommand = DeletePipelineCommand;
|
|
1187
|
+
exports.DeletePipelineInput$ = DeletePipelineInput$;
|
|
1188
|
+
exports.DescribeObjects$ = DescribeObjects$;
|
|
398
1189
|
exports.DescribeObjectsCommand = DescribeObjectsCommand;
|
|
1190
|
+
exports.DescribeObjectsInput$ = DescribeObjectsInput$;
|
|
1191
|
+
exports.DescribeObjectsOutput$ = DescribeObjectsOutput$;
|
|
1192
|
+
exports.DescribePipelines$ = DescribePipelines$;
|
|
399
1193
|
exports.DescribePipelinesCommand = DescribePipelinesCommand;
|
|
1194
|
+
exports.DescribePipelinesInput$ = DescribePipelinesInput$;
|
|
1195
|
+
exports.DescribePipelinesOutput$ = DescribePipelinesOutput$;
|
|
1196
|
+
exports.EvaluateExpression$ = EvaluateExpression$;
|
|
400
1197
|
exports.EvaluateExpressionCommand = EvaluateExpressionCommand;
|
|
1198
|
+
exports.EvaluateExpressionInput$ = EvaluateExpressionInput$;
|
|
1199
|
+
exports.EvaluateExpressionOutput$ = EvaluateExpressionOutput$;
|
|
1200
|
+
exports.Field$ = Field$;
|
|
1201
|
+
exports.GetPipelineDefinition$ = GetPipelineDefinition$;
|
|
401
1202
|
exports.GetPipelineDefinitionCommand = GetPipelineDefinitionCommand;
|
|
1203
|
+
exports.GetPipelineDefinitionInput$ = GetPipelineDefinitionInput$;
|
|
1204
|
+
exports.GetPipelineDefinitionOutput$ = GetPipelineDefinitionOutput$;
|
|
1205
|
+
exports.InstanceIdentity$ = InstanceIdentity$;
|
|
1206
|
+
exports.InternalServiceError = InternalServiceError;
|
|
1207
|
+
exports.InternalServiceError$ = InternalServiceError$;
|
|
1208
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1209
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1210
|
+
exports.ListPipelines$ = ListPipelines$;
|
|
402
1211
|
exports.ListPipelinesCommand = ListPipelinesCommand;
|
|
1212
|
+
exports.ListPipelinesInput$ = ListPipelinesInput$;
|
|
1213
|
+
exports.ListPipelinesOutput$ = ListPipelinesOutput$;
|
|
1214
|
+
exports.Operator$ = Operator$;
|
|
403
1215
|
exports.OperatorType = OperatorType;
|
|
1216
|
+
exports.ParameterAttribute$ = ParameterAttribute$;
|
|
1217
|
+
exports.ParameterObject$ = ParameterObject$;
|
|
1218
|
+
exports.ParameterValue$ = ParameterValue$;
|
|
1219
|
+
exports.PipelineDeletedException = PipelineDeletedException;
|
|
1220
|
+
exports.PipelineDeletedException$ = PipelineDeletedException$;
|
|
1221
|
+
exports.PipelineDescription$ = PipelineDescription$;
|
|
1222
|
+
exports.PipelineIdName$ = PipelineIdName$;
|
|
1223
|
+
exports.PipelineNotFoundException = PipelineNotFoundException;
|
|
1224
|
+
exports.PipelineNotFoundException$ = PipelineNotFoundException$;
|
|
1225
|
+
exports.PipelineObject$ = PipelineObject$;
|
|
1226
|
+
exports.PollForTask$ = PollForTask$;
|
|
404
1227
|
exports.PollForTaskCommand = PollForTaskCommand;
|
|
1228
|
+
exports.PollForTaskInput$ = PollForTaskInput$;
|
|
1229
|
+
exports.PollForTaskOutput$ = PollForTaskOutput$;
|
|
1230
|
+
exports.PutPipelineDefinition$ = PutPipelineDefinition$;
|
|
405
1231
|
exports.PutPipelineDefinitionCommand = PutPipelineDefinitionCommand;
|
|
1232
|
+
exports.PutPipelineDefinitionInput$ = PutPipelineDefinitionInput$;
|
|
1233
|
+
exports.PutPipelineDefinitionOutput$ = PutPipelineDefinitionOutput$;
|
|
1234
|
+
exports.Query$ = Query$;
|
|
1235
|
+
exports.QueryObjects$ = QueryObjects$;
|
|
406
1236
|
exports.QueryObjectsCommand = QueryObjectsCommand;
|
|
1237
|
+
exports.QueryObjectsInput$ = QueryObjectsInput$;
|
|
1238
|
+
exports.QueryObjectsOutput$ = QueryObjectsOutput$;
|
|
1239
|
+
exports.RemoveTags$ = RemoveTags$;
|
|
407
1240
|
exports.RemoveTagsCommand = RemoveTagsCommand;
|
|
1241
|
+
exports.RemoveTagsInput$ = RemoveTagsInput$;
|
|
1242
|
+
exports.RemoveTagsOutput$ = RemoveTagsOutput$;
|
|
1243
|
+
exports.ReportTaskProgress$ = ReportTaskProgress$;
|
|
408
1244
|
exports.ReportTaskProgressCommand = ReportTaskProgressCommand;
|
|
1245
|
+
exports.ReportTaskProgressInput$ = ReportTaskProgressInput$;
|
|
1246
|
+
exports.ReportTaskProgressOutput$ = ReportTaskProgressOutput$;
|
|
1247
|
+
exports.ReportTaskRunnerHeartbeat$ = ReportTaskRunnerHeartbeat$;
|
|
409
1248
|
exports.ReportTaskRunnerHeartbeatCommand = ReportTaskRunnerHeartbeatCommand;
|
|
1249
|
+
exports.ReportTaskRunnerHeartbeatInput$ = ReportTaskRunnerHeartbeatInput$;
|
|
1250
|
+
exports.ReportTaskRunnerHeartbeatOutput$ = ReportTaskRunnerHeartbeatOutput$;
|
|
1251
|
+
exports.Selector$ = Selector$;
|
|
1252
|
+
exports.SetStatus$ = SetStatus$;
|
|
410
1253
|
exports.SetStatusCommand = SetStatusCommand;
|
|
1254
|
+
exports.SetStatusInput$ = SetStatusInput$;
|
|
1255
|
+
exports.SetTaskStatus$ = SetTaskStatus$;
|
|
411
1256
|
exports.SetTaskStatusCommand = SetTaskStatusCommand;
|
|
1257
|
+
exports.SetTaskStatusInput$ = SetTaskStatusInput$;
|
|
1258
|
+
exports.SetTaskStatusOutput$ = SetTaskStatusOutput$;
|
|
1259
|
+
exports.Tag$ = Tag$;
|
|
1260
|
+
exports.TaskNotFoundException = TaskNotFoundException;
|
|
1261
|
+
exports.TaskNotFoundException$ = TaskNotFoundException$;
|
|
1262
|
+
exports.TaskObject$ = TaskObject$;
|
|
412
1263
|
exports.TaskStatus = TaskStatus;
|
|
1264
|
+
exports.ValidatePipelineDefinition$ = ValidatePipelineDefinition$;
|
|
413
1265
|
exports.ValidatePipelineDefinitionCommand = ValidatePipelineDefinitionCommand;
|
|
1266
|
+
exports.ValidatePipelineDefinitionInput$ = ValidatePipelineDefinitionInput$;
|
|
1267
|
+
exports.ValidatePipelineDefinitionOutput$ = ValidatePipelineDefinitionOutput$;
|
|
1268
|
+
exports.ValidationError$ = ValidationError$;
|
|
1269
|
+
exports.ValidationWarning$ = ValidationWarning$;
|
|
1270
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
414
1271
|
exports.paginateDescribeObjects = paginateDescribeObjects;
|
|
415
1272
|
exports.paginateListPipelines = paginateListPipelines;
|
|
416
1273
|
exports.paginateQueryObjects = paginateQueryObjects;
|