@aws-sdk/client-supplychain 3.1075.0 → 3.1077.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 +1294 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- 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/SupplyChainServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -89
- 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 -38
- package/dist-cjs/schemas/schemas_0.js +0 -985
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultSupplyChainHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "scn",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultSupplyChainHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1108 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data$1 = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://scn-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://scn-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://scn.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://scn.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data$1.conditions, _data$1.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class SupplyChainServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, SupplyChainServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends SupplyChainServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class ConflictException extends SupplyChainServiceException {
|
|
153
|
+
name = "ConflictException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "ConflictException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class InternalServerException extends SupplyChainServiceException {
|
|
165
|
+
name = "InternalServerException";
|
|
166
|
+
$fault = "server";
|
|
167
|
+
$retryable = {};
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "InternalServerException",
|
|
171
|
+
$fault: "server",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ResourceNotFoundException extends SupplyChainServiceException {
|
|
178
|
+
name = "ResourceNotFoundException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ResourceNotFoundException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
class ServiceQuotaExceededException extends SupplyChainServiceException {
|
|
190
|
+
name = "ServiceQuotaExceededException";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "ServiceQuotaExceededException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class ThrottlingException extends SupplyChainServiceException {
|
|
202
|
+
name = "ThrottlingException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
$retryable = {
|
|
205
|
+
throttling: true,
|
|
206
|
+
};
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "ThrottlingException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
class ValidationException extends SupplyChainServiceException {
|
|
217
|
+
name = "ValidationException";
|
|
218
|
+
$fault = "client";
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "ValidationException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
const _ADE = "AccessDeniedException";
|
|
230
|
+
const _BOMIJ = "BillOfMaterialsImportJob";
|
|
231
|
+
const _CBOMIJ = "CreateBillOfMaterialsImportJob";
|
|
232
|
+
const _CBOMIJR = "CreateBillOfMaterialsImportJobRequest";
|
|
233
|
+
const _CBOMIJRr = "CreateBillOfMaterialsImportJobResponse";
|
|
234
|
+
const _CDIF = "CreateDataIntegrationFlow";
|
|
235
|
+
const _CDIFR = "CreateDataIntegrationFlowRequest";
|
|
236
|
+
const _CDIFRr = "CreateDataIntegrationFlowResponse";
|
|
237
|
+
const _CDLD = "CreateDataLakeDataset";
|
|
238
|
+
const _CDLDR = "CreateDataLakeDatasetRequest";
|
|
239
|
+
const _CDLDRr = "CreateDataLakeDatasetResponse";
|
|
240
|
+
const _CDLN = "CreateDataLakeNamespace";
|
|
241
|
+
const _CDLNR = "CreateDataLakeNamespaceRequest";
|
|
242
|
+
const _CDLNRr = "CreateDataLakeNamespaceResponse";
|
|
243
|
+
const _CE = "ConflictException";
|
|
244
|
+
const _CI = "CreateInstance";
|
|
245
|
+
const _CIR = "CreateInstanceRequest";
|
|
246
|
+
const _CIRr = "CreateInstanceResponse";
|
|
247
|
+
const _DDIF = "DeleteDataIntegrationFlow";
|
|
248
|
+
const _DDIFR = "DeleteDataIntegrationFlowRequest";
|
|
249
|
+
const _DDIFRe = "DeleteDataIntegrationFlowResponse";
|
|
250
|
+
const _DDLD = "DeleteDataLakeDataset";
|
|
251
|
+
const _DDLDR = "DeleteDataLakeDatasetRequest";
|
|
252
|
+
const _DDLDRe = "DeleteDataLakeDatasetResponse";
|
|
253
|
+
const _DDLN = "DeleteDataLakeNamespace";
|
|
254
|
+
const _DDLNR = "DeleteDataLakeNamespaceRequest";
|
|
255
|
+
const _DDLNRe = "DeleteDataLakeNamespaceResponse";
|
|
256
|
+
const _DI = "DeleteInstance";
|
|
257
|
+
const _DIE = "DataIntegrationEvent";
|
|
258
|
+
const _DIED = "DataIntegrationEventData";
|
|
259
|
+
const _DIEDLED = "DataIntegrationEventDatasetLoadExecutionDetails";
|
|
260
|
+
const _DIEDTC = "DataIntegrationEventDatasetTargetConfiguration";
|
|
261
|
+
const _DIEDTD = "DataIntegrationEventDatasetTargetDetails";
|
|
262
|
+
const _DIEL = "DataIntegrationEventList";
|
|
263
|
+
const _DIF = "DataIntegrationFlow";
|
|
264
|
+
const _DIFDO = "DataIntegrationFlowDatasetOptions";
|
|
265
|
+
const _DIFDS = "DataIntegrationFlowDatasetSource";
|
|
266
|
+
const _DIFDSC = "DataIntegrationFlowDatasetSourceConfiguration";
|
|
267
|
+
const _DIFDSa = "DataIntegrationFlowDedupeStrategy";
|
|
268
|
+
const _DIFDTC = "DataIntegrationFlowDatasetTargetConfiguration";
|
|
269
|
+
const _DIFE = "DataIntegrationFlowExecution";
|
|
270
|
+
const _DIFEL = "DataIntegrationFlowExecutionList";
|
|
271
|
+
const _DIFEOM = "DataIntegrationFlowExecutionOutputMetadata";
|
|
272
|
+
const _DIFESI = "DataIntegrationFlowExecutionSourceInfo";
|
|
273
|
+
const _DIFFPDF = "DataIntegrationFlowFieldPriorityDedupeField";
|
|
274
|
+
const _DIFFPDFL = "DataIntegrationFlowFieldPriorityDedupeFieldList";
|
|
275
|
+
const _DIFFPDSC = "DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration";
|
|
276
|
+
const _DIFL = "DataIntegrationFlowList";
|
|
277
|
+
const _DIFS = "DataIntegrationFlowSource";
|
|
278
|
+
const _DIFSL = "DataIntegrationFlowSourceList";
|
|
279
|
+
const _DIFSO = "DataIntegrationFlowS3Options";
|
|
280
|
+
const _DIFSQLQ = "DataIntegrationFlowSQLQuery";
|
|
281
|
+
const _DIFSQLTC = "DataIntegrationFlowSQLTransformationConfiguration";
|
|
282
|
+
const _DIFSS = "DataIntegrationFlowS3Source";
|
|
283
|
+
const _DIFSSC = "DataIntegrationFlowS3SourceConfiguration";
|
|
284
|
+
const _DIFSTC = "DataIntegrationFlowS3TargetConfiguration";
|
|
285
|
+
const _DIFT = "DataIntegrationFlowTarget";
|
|
286
|
+
const _DIFTa = "DataIntegrationFlowTransformation";
|
|
287
|
+
const _DIR = "DeleteInstanceRequest";
|
|
288
|
+
const _DIRe = "DeleteInstanceResponse";
|
|
289
|
+
const _DLD = "DataLakeDataset";
|
|
290
|
+
const _DLDL = "DataLakeDatasetList";
|
|
291
|
+
const _DLDPF = "DataLakeDatasetPartitionField";
|
|
292
|
+
const _DLDPFL = "DataLakeDatasetPartitionFieldList";
|
|
293
|
+
const _DLDPFT = "DataLakeDatasetPartitionFieldTransform";
|
|
294
|
+
const _DLDPKF = "DataLakeDatasetPrimaryKeyField";
|
|
295
|
+
const _DLDPKFL = "DataLakeDatasetPrimaryKeyFieldList";
|
|
296
|
+
const _DLDPS = "DataLakeDatasetPartitionSpec";
|
|
297
|
+
const _DLDS = "DataLakeDatasetSchema";
|
|
298
|
+
const _DLDSF = "DataLakeDatasetSchemaField";
|
|
299
|
+
const _DLDSFL = "DataLakeDatasetSchemaFieldList";
|
|
300
|
+
const _DLN = "DataLakeNamespace";
|
|
301
|
+
const _DLNL = "DataLakeNamespaceList";
|
|
302
|
+
const _GBOMIJ = "GetBillOfMaterialsImportJob";
|
|
303
|
+
const _GBOMIJR = "GetBillOfMaterialsImportJobRequest";
|
|
304
|
+
const _GBOMIJRe = "GetBillOfMaterialsImportJobResponse";
|
|
305
|
+
const _GDIE = "GetDataIntegrationEvent";
|
|
306
|
+
const _GDIER = "GetDataIntegrationEventRequest";
|
|
307
|
+
const _GDIERe = "GetDataIntegrationEventResponse";
|
|
308
|
+
const _GDIF = "GetDataIntegrationFlow";
|
|
309
|
+
const _GDIFE = "GetDataIntegrationFlowExecution";
|
|
310
|
+
const _GDIFER = "GetDataIntegrationFlowExecutionRequest";
|
|
311
|
+
const _GDIFERe = "GetDataIntegrationFlowExecutionResponse";
|
|
312
|
+
const _GDIFR = "GetDataIntegrationFlowRequest";
|
|
313
|
+
const _GDIFRe = "GetDataIntegrationFlowResponse";
|
|
314
|
+
const _GDLD = "GetDataLakeDataset";
|
|
315
|
+
const _GDLDR = "GetDataLakeDatasetRequest";
|
|
316
|
+
const _GDLDRe = "GetDataLakeDatasetResponse";
|
|
317
|
+
const _GDLN = "GetDataLakeNamespace";
|
|
318
|
+
const _GDLNR = "GetDataLakeNamespaceRequest";
|
|
319
|
+
const _GDLNRe = "GetDataLakeNamespaceResponse";
|
|
320
|
+
const _GI = "GetInstance";
|
|
321
|
+
const _GIR = "GetInstanceRequest";
|
|
322
|
+
const _GIRe = "GetInstanceResponse";
|
|
323
|
+
const _I = "Instance";
|
|
324
|
+
const _IL = "InstanceList";
|
|
325
|
+
const _ISE = "InternalServerException";
|
|
326
|
+
const _LDIE = "ListDataIntegrationEvents";
|
|
327
|
+
const _LDIER = "ListDataIntegrationEventsRequest";
|
|
328
|
+
const _LDIERi = "ListDataIntegrationEventsResponse";
|
|
329
|
+
const _LDIF = "ListDataIntegrationFlows";
|
|
330
|
+
const _LDIFE = "ListDataIntegrationFlowExecutions";
|
|
331
|
+
const _LDIFER = "ListDataIntegrationFlowExecutionsRequest";
|
|
332
|
+
const _LDIFERi = "ListDataIntegrationFlowExecutionsResponse";
|
|
333
|
+
const _LDIFR = "ListDataIntegrationFlowsRequest";
|
|
334
|
+
const _LDIFRi = "ListDataIntegrationFlowsResponse";
|
|
335
|
+
const _LDLD = "ListDataLakeDatasets";
|
|
336
|
+
const _LDLDR = "ListDataLakeDatasetsRequest";
|
|
337
|
+
const _LDLDRi = "ListDataLakeDatasetsResponse";
|
|
338
|
+
const _LDLN = "ListDataLakeNamespaces";
|
|
339
|
+
const _LDLNR = "ListDataLakeNamespacesRequest";
|
|
340
|
+
const _LDLNRi = "ListDataLakeNamespacesResponse";
|
|
341
|
+
const _LI = "ListInstances";
|
|
342
|
+
const _LIR = "ListInstancesRequest";
|
|
343
|
+
const _LIRi = "ListInstancesResponse";
|
|
344
|
+
const _LTFR = "ListTagsForResource";
|
|
345
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
346
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
347
|
+
const _RNFE = "ResourceNotFoundException";
|
|
348
|
+
const _SDIE = "SendDataIntegrationEvent";
|
|
349
|
+
const _SDIER = "SendDataIntegrationEventRequest";
|
|
350
|
+
const _SDIERe = "SendDataIntegrationEventResponse";
|
|
351
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
352
|
+
const _TE = "ThrottlingException";
|
|
353
|
+
const _TR = "TagResource";
|
|
354
|
+
const _TRR = "TagResourceRequest";
|
|
355
|
+
const _TRRa = "TagResourceResponse";
|
|
356
|
+
const _UDIF = "UpdateDataIntegrationFlow";
|
|
357
|
+
const _UDIFR = "UpdateDataIntegrationFlowRequest";
|
|
358
|
+
const _UDIFRp = "UpdateDataIntegrationFlowResponse";
|
|
359
|
+
const _UDLD = "UpdateDataLakeDataset";
|
|
360
|
+
const _UDLDR = "UpdateDataLakeDatasetRequest";
|
|
361
|
+
const _UDLDRp = "UpdateDataLakeDatasetResponse";
|
|
362
|
+
const _UDLN = "UpdateDataLakeNamespace";
|
|
363
|
+
const _UDLNR = "UpdateDataLakeNamespaceRequest";
|
|
364
|
+
const _UDLNRp = "UpdateDataLakeNamespaceResponse";
|
|
365
|
+
const _UI = "UpdateInstance";
|
|
366
|
+
const _UIR = "UpdateInstanceRequest";
|
|
367
|
+
const _UIRp = "UpdateInstanceResponse";
|
|
368
|
+
const _UR = "UntagResource";
|
|
369
|
+
const _URR = "UntagResourceRequest";
|
|
370
|
+
const _URRn = "UntagResourceResponse";
|
|
371
|
+
const _VE = "ValidationException";
|
|
372
|
+
const _a = "arn";
|
|
373
|
+
const _aAI = "awsAccountId";
|
|
374
|
+
const _bN = "bucketName";
|
|
375
|
+
const _c = "client";
|
|
376
|
+
const _cT = "clientToken";
|
|
377
|
+
const _cTr = "createdTime";
|
|
378
|
+
const _d = "description";
|
|
379
|
+
const _dI = "datasetIdentifier";
|
|
380
|
+
const _dLE = "datasetLoadExecution";
|
|
381
|
+
const _dR = "dedupeRecords";
|
|
382
|
+
const _dRRSURI = "diagnosticReportsRootS3URI";
|
|
383
|
+
const _dS = "dedupeStrategy";
|
|
384
|
+
const _dSa = "datasetSource";
|
|
385
|
+
const _dT = "datasetTarget";
|
|
386
|
+
const _dTD = "datasetTargetDetails";
|
|
387
|
+
const _da = "dataset";
|
|
388
|
+
const _dat = "datasets";
|
|
389
|
+
const _data = "data";
|
|
390
|
+
const _e = "error";
|
|
391
|
+
const _eGI = "eventGroupId";
|
|
392
|
+
const _eI = "eventId";
|
|
393
|
+
const _eIx = "executionId";
|
|
394
|
+
const _eM = "errorMessage";
|
|
395
|
+
const _eT = "eventType";
|
|
396
|
+
const _eTn = "endTime";
|
|
397
|
+
const _eTv = "eventTimestamp";
|
|
398
|
+
const _ev = "event";
|
|
399
|
+
const _eve = "events";
|
|
400
|
+
const _f = "fields";
|
|
401
|
+
const _fE = "flowExecution";
|
|
402
|
+
const _fEl = "flowExecutions";
|
|
403
|
+
const _fN = "flowName";
|
|
404
|
+
const _fP = "fieldPriority";
|
|
405
|
+
const _fT = "fileType";
|
|
406
|
+
const _fl = "flow";
|
|
407
|
+
const _flo = "flows";
|
|
408
|
+
const _h = "http";
|
|
409
|
+
const _hE = "httpError";
|
|
410
|
+
const _hQ = "httpQuery";
|
|
411
|
+
const _i = "instance";
|
|
412
|
+
const _iD = "instanceDescription";
|
|
413
|
+
const _iI = "instanceId";
|
|
414
|
+
const _iN = "instanceName";
|
|
415
|
+
const _iNF = "instanceNameFilter";
|
|
416
|
+
const _iR = "isRequired";
|
|
417
|
+
const _iSF = "instanceStateFilter";
|
|
418
|
+
const _in = "instances";
|
|
419
|
+
const _j = "job";
|
|
420
|
+
const _jI = "jobId";
|
|
421
|
+
const _k = "key";
|
|
422
|
+
const _kKA = "kmsKeyArn";
|
|
423
|
+
const _lMT = "lastModifiedTime";
|
|
424
|
+
const _lT = "loadType";
|
|
425
|
+
const _m = "message";
|
|
426
|
+
const _mR = "maxResults";
|
|
427
|
+
const _n = "name";
|
|
428
|
+
const _nT = "nextToken";
|
|
429
|
+
const _na = "namespace";
|
|
430
|
+
const _nam = "namespaces";
|
|
431
|
+
const _o = "options";
|
|
432
|
+
const _oM = "outputMetadata";
|
|
433
|
+
const _oT = "operationType";
|
|
434
|
+
const _p = "prefix";
|
|
435
|
+
const _pK = "primaryKeys";
|
|
436
|
+
const _pS = "partitionSpec";
|
|
437
|
+
const _q = "query";
|
|
438
|
+
const _rA = "resourceArn";
|
|
439
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.supplychain";
|
|
440
|
+
const _sI = "sourceInfo";
|
|
441
|
+
const _sN = "sourceName";
|
|
442
|
+
const _sO = "sortOrder";
|
|
443
|
+
const _sS = "s3Source";
|
|
444
|
+
const _sT = "startTime";
|
|
445
|
+
const _sTa = "s3Target";
|
|
446
|
+
const _sTo = "sourceType";
|
|
447
|
+
const _sTq = "sqlTransformation";
|
|
448
|
+
const _sc = "schema";
|
|
449
|
+
const _se = "server";
|
|
450
|
+
const _so = "sources";
|
|
451
|
+
const _st = "status";
|
|
452
|
+
const _sta = "state";
|
|
453
|
+
const _su = "s3uri";
|
|
454
|
+
const _t = "transformation";
|
|
455
|
+
const _tK = "tagKeys";
|
|
456
|
+
const _tT = "targetType";
|
|
457
|
+
const _tTr = "transformationType";
|
|
458
|
+
const _ta = "target";
|
|
459
|
+
const _tag = "tags";
|
|
460
|
+
const _tr = "transform";
|
|
461
|
+
const _ty = "type";
|
|
462
|
+
const _vN = "versionNumber";
|
|
463
|
+
const _wADD = "webAppDnsDomain";
|
|
464
|
+
const n0 = "com.amazonaws.supplychain";
|
|
465
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
466
|
+
var SupplyChainServiceException$ = [-3, _s, "SupplyChainServiceException", 0, [], []];
|
|
467
|
+
_s_registry.registerError(SupplyChainServiceException$, SupplyChainServiceException);
|
|
468
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
469
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
470
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
471
|
+
[_m],
|
|
472
|
+
[0]
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
475
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
477
|
+
[_m],
|
|
478
|
+
[0]
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
481
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
482
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
483
|
+
[_m],
|
|
484
|
+
[0]
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
487
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
488
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
489
|
+
[_m],
|
|
490
|
+
[0]
|
|
491
|
+
];
|
|
492
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
493
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
494
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
495
|
+
[_m],
|
|
496
|
+
[0]
|
|
497
|
+
];
|
|
498
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
499
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
500
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
501
|
+
[_m],
|
|
502
|
+
[0]
|
|
503
|
+
];
|
|
504
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
505
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
506
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
507
|
+
[_m],
|
|
508
|
+
[0]
|
|
509
|
+
];
|
|
510
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
511
|
+
const errorTypeRegistries = [
|
|
512
|
+
_s_registry,
|
|
513
|
+
n0_registry,
|
|
514
|
+
];
|
|
515
|
+
var DataIntegrationEventData = [0, n0, _DIED, 8, 0];
|
|
516
|
+
var DataIntegrationFlowSQLQuery = [0, n0, _DIFSQLQ, 8, 0];
|
|
517
|
+
var BillOfMaterialsImportJob$ = [3, n0, _BOMIJ,
|
|
518
|
+
0,
|
|
519
|
+
[_iI, _jI, _st, _su, _m],
|
|
520
|
+
[0, 0, 0, 0, 0], 4
|
|
521
|
+
];
|
|
522
|
+
var CreateBillOfMaterialsImportJobRequest$ = [3, n0, _CBOMIJR,
|
|
523
|
+
0,
|
|
524
|
+
[_iI, _su, _cT],
|
|
525
|
+
[[0, 1], 0, [0, 4]], 2
|
|
526
|
+
];
|
|
527
|
+
var CreateBillOfMaterialsImportJobResponse$ = [3, n0, _CBOMIJRr,
|
|
528
|
+
0,
|
|
529
|
+
[_jI],
|
|
530
|
+
[0], 1
|
|
531
|
+
];
|
|
532
|
+
var CreateDataIntegrationFlowRequest$ = [3, n0, _CDIFR,
|
|
533
|
+
0,
|
|
534
|
+
[_iI, _n, _so, _t, _ta, _tag],
|
|
535
|
+
[[0, 1], [0, 1], () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$, 128 | 0], 5
|
|
536
|
+
];
|
|
537
|
+
var CreateDataIntegrationFlowResponse$ = [3, n0, _CDIFRr,
|
|
538
|
+
0,
|
|
539
|
+
[_iI, _n],
|
|
540
|
+
[0, 0], 2
|
|
541
|
+
];
|
|
542
|
+
var CreateDataLakeDatasetRequest$ = [3, n0, _CDLDR,
|
|
543
|
+
0,
|
|
544
|
+
[_iI, _na, _n, _sc, _d, _pS, _tag],
|
|
545
|
+
[[0, 1], [0, 1], [0, 1], () => DataLakeDatasetSchema$, 0, () => DataLakeDatasetPartitionSpec$, 128 | 0], 3
|
|
546
|
+
];
|
|
547
|
+
var CreateDataLakeDatasetResponse$ = [3, n0, _CDLDRr,
|
|
548
|
+
0,
|
|
549
|
+
[_da],
|
|
550
|
+
[() => DataLakeDataset$], 1
|
|
551
|
+
];
|
|
552
|
+
var CreateDataLakeNamespaceRequest$ = [3, n0, _CDLNR,
|
|
553
|
+
0,
|
|
554
|
+
[_iI, _n, _d, _tag],
|
|
555
|
+
[[0, 1], [0, 1], 0, 128 | 0], 2
|
|
556
|
+
];
|
|
557
|
+
var CreateDataLakeNamespaceResponse$ = [3, n0, _CDLNRr,
|
|
558
|
+
0,
|
|
559
|
+
[_na],
|
|
560
|
+
[() => DataLakeNamespace$], 1
|
|
561
|
+
];
|
|
562
|
+
var CreateInstanceRequest$ = [3, n0, _CIR,
|
|
563
|
+
0,
|
|
564
|
+
[_iN, _iD, _kKA, _wADD, _tag, _cT],
|
|
565
|
+
[0, 0, 0, 0, 128 | 0, [0, 4]]
|
|
566
|
+
];
|
|
567
|
+
var CreateInstanceResponse$ = [3, n0, _CIRr,
|
|
568
|
+
0,
|
|
569
|
+
[_i],
|
|
570
|
+
[() => Instance$], 1
|
|
571
|
+
];
|
|
572
|
+
var DataIntegrationEvent$ = [3, n0, _DIE,
|
|
573
|
+
0,
|
|
574
|
+
[_iI, _eI, _eT, _eGI, _eTv, _dTD],
|
|
575
|
+
[0, 0, 0, 0, 4, () => DataIntegrationEventDatasetTargetDetails$], 5
|
|
576
|
+
];
|
|
577
|
+
var DataIntegrationEventDatasetLoadExecutionDetails$ = [3, n0, _DIEDLED,
|
|
578
|
+
0,
|
|
579
|
+
[_st, _m],
|
|
580
|
+
[0, 0], 1
|
|
581
|
+
];
|
|
582
|
+
var DataIntegrationEventDatasetTargetConfiguration$ = [3, n0, _DIEDTC,
|
|
583
|
+
0,
|
|
584
|
+
[_dI, _oT],
|
|
585
|
+
[0, 0], 2
|
|
586
|
+
];
|
|
587
|
+
var DataIntegrationEventDatasetTargetDetails$ = [3, n0, _DIEDTD,
|
|
588
|
+
0,
|
|
589
|
+
[_dI, _oT, _dLE],
|
|
590
|
+
[0, 0, () => DataIntegrationEventDatasetLoadExecutionDetails$], 3
|
|
591
|
+
];
|
|
592
|
+
var DataIntegrationFlow$ = [3, n0, _DIF,
|
|
593
|
+
0,
|
|
594
|
+
[_iI, _n, _so, _t, _ta, _cTr, _lMT],
|
|
595
|
+
[0, 0, () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$, 4, 4], 7
|
|
596
|
+
];
|
|
597
|
+
var DataIntegrationFlowDatasetOptions$ = [3, n0, _DIFDO,
|
|
598
|
+
0,
|
|
599
|
+
[_lT, _dR, _dS],
|
|
600
|
+
[0, 2, () => DataIntegrationFlowDedupeStrategy$]
|
|
601
|
+
];
|
|
602
|
+
var DataIntegrationFlowDatasetSource$ = [3, n0, _DIFDS,
|
|
603
|
+
0,
|
|
604
|
+
[_dI],
|
|
605
|
+
[0], 1
|
|
606
|
+
];
|
|
607
|
+
var DataIntegrationFlowDatasetSourceConfiguration$ = [3, n0, _DIFDSC,
|
|
608
|
+
0,
|
|
609
|
+
[_dI, _o],
|
|
610
|
+
[0, () => DataIntegrationFlowDatasetOptions$], 1
|
|
611
|
+
];
|
|
612
|
+
var DataIntegrationFlowDatasetTargetConfiguration$ = [3, n0, _DIFDTC,
|
|
613
|
+
0,
|
|
614
|
+
[_dI, _o],
|
|
615
|
+
[0, () => DataIntegrationFlowDatasetOptions$], 1
|
|
616
|
+
];
|
|
617
|
+
var DataIntegrationFlowDedupeStrategy$ = [3, n0, _DIFDSa,
|
|
618
|
+
0,
|
|
619
|
+
[_ty, _fP],
|
|
620
|
+
[0, () => DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$], 1
|
|
621
|
+
];
|
|
622
|
+
var DataIntegrationFlowExecution$ = [3, n0, _DIFE,
|
|
623
|
+
0,
|
|
624
|
+
[_iI, _fN, _eIx, _st, _sI, _m, _sT, _eTn, _oM],
|
|
625
|
+
[0, 0, 0, 0, () => DataIntegrationFlowExecutionSourceInfo$, 0, 4, 4, () => DataIntegrationFlowExecutionOutputMetadata$], 3
|
|
626
|
+
];
|
|
627
|
+
var DataIntegrationFlowExecutionOutputMetadata$ = [3, n0, _DIFEOM,
|
|
628
|
+
0,
|
|
629
|
+
[_dRRSURI],
|
|
630
|
+
[0]
|
|
631
|
+
];
|
|
632
|
+
var DataIntegrationFlowExecutionSourceInfo$ = [3, n0, _DIFESI,
|
|
633
|
+
0,
|
|
634
|
+
[_sTo, _sS, _dSa],
|
|
635
|
+
[0, () => DataIntegrationFlowS3Source$, () => DataIntegrationFlowDatasetSource$], 1
|
|
636
|
+
];
|
|
637
|
+
var DataIntegrationFlowFieldPriorityDedupeField$ = [3, n0, _DIFFPDF,
|
|
638
|
+
0,
|
|
639
|
+
[_n, _sO],
|
|
640
|
+
[0, 0], 2
|
|
641
|
+
];
|
|
642
|
+
var DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$ = [3, n0, _DIFFPDSC,
|
|
643
|
+
0,
|
|
644
|
+
[_f],
|
|
645
|
+
[() => DataIntegrationFlowFieldPriorityDedupeFieldList], 1
|
|
646
|
+
];
|
|
647
|
+
var DataIntegrationFlowS3Options$ = [3, n0, _DIFSO,
|
|
648
|
+
0,
|
|
649
|
+
[_fT],
|
|
650
|
+
[0]
|
|
651
|
+
];
|
|
652
|
+
var DataIntegrationFlowS3Source$ = [3, n0, _DIFSS,
|
|
653
|
+
0,
|
|
654
|
+
[_bN, _k],
|
|
655
|
+
[0, 0], 2
|
|
656
|
+
];
|
|
657
|
+
var DataIntegrationFlowS3SourceConfiguration$ = [3, n0, _DIFSSC,
|
|
658
|
+
0,
|
|
659
|
+
[_bN, _p, _o],
|
|
660
|
+
[0, 0, () => DataIntegrationFlowS3Options$], 2
|
|
661
|
+
];
|
|
662
|
+
var DataIntegrationFlowS3TargetConfiguration$ = [3, n0, _DIFSTC,
|
|
663
|
+
0,
|
|
664
|
+
[_bN, _p, _o],
|
|
665
|
+
[0, 0, () => DataIntegrationFlowS3Options$], 2
|
|
666
|
+
];
|
|
667
|
+
var DataIntegrationFlowSource$ = [3, n0, _DIFS,
|
|
668
|
+
0,
|
|
669
|
+
[_sTo, _sN, _sS, _dSa],
|
|
670
|
+
[0, 0, () => DataIntegrationFlowS3SourceConfiguration$, () => DataIntegrationFlowDatasetSourceConfiguration$], 2
|
|
671
|
+
];
|
|
672
|
+
var DataIntegrationFlowSQLTransformationConfiguration$ = [3, n0, _DIFSQLTC,
|
|
673
|
+
0,
|
|
674
|
+
[_q],
|
|
675
|
+
[[() => DataIntegrationFlowSQLQuery, 0]], 1
|
|
676
|
+
];
|
|
677
|
+
var DataIntegrationFlowTarget$ = [3, n0, _DIFT,
|
|
678
|
+
0,
|
|
679
|
+
[_tT, _sTa, _dT],
|
|
680
|
+
[0, () => DataIntegrationFlowS3TargetConfiguration$, () => DataIntegrationFlowDatasetTargetConfiguration$], 1
|
|
681
|
+
];
|
|
682
|
+
var DataIntegrationFlowTransformation$ = [3, n0, _DIFTa,
|
|
683
|
+
0,
|
|
684
|
+
[_tTr, _sTq],
|
|
685
|
+
[0, [() => DataIntegrationFlowSQLTransformationConfiguration$, 0]], 1
|
|
686
|
+
];
|
|
687
|
+
var DataLakeDataset$ = [3, n0, _DLD,
|
|
688
|
+
0,
|
|
689
|
+
[_iI, _na, _n, _a, _sc, _cTr, _lMT, _d, _pS],
|
|
690
|
+
[0, 0, 0, 0, () => DataLakeDatasetSchema$, 4, 4, 0, () => DataLakeDatasetPartitionSpec$], 7
|
|
691
|
+
];
|
|
692
|
+
var DataLakeDatasetPartitionField$ = [3, n0, _DLDPF,
|
|
693
|
+
0,
|
|
694
|
+
[_n, _tr],
|
|
695
|
+
[0, () => DataLakeDatasetPartitionFieldTransform$], 2
|
|
696
|
+
];
|
|
697
|
+
var DataLakeDatasetPartitionFieldTransform$ = [3, n0, _DLDPFT,
|
|
698
|
+
0,
|
|
699
|
+
[_ty],
|
|
700
|
+
[0], 1
|
|
701
|
+
];
|
|
702
|
+
var DataLakeDatasetPartitionSpec$ = [3, n0, _DLDPS,
|
|
703
|
+
0,
|
|
704
|
+
[_f],
|
|
705
|
+
[() => DataLakeDatasetPartitionFieldList], 1
|
|
706
|
+
];
|
|
707
|
+
var DataLakeDatasetPrimaryKeyField$ = [3, n0, _DLDPKF,
|
|
708
|
+
0,
|
|
709
|
+
[_n],
|
|
710
|
+
[0], 1
|
|
711
|
+
];
|
|
712
|
+
var DataLakeDatasetSchema$ = [3, n0, _DLDS,
|
|
713
|
+
0,
|
|
714
|
+
[_n, _f, _pK],
|
|
715
|
+
[0, () => DataLakeDatasetSchemaFieldList, () => DataLakeDatasetPrimaryKeyFieldList], 2
|
|
716
|
+
];
|
|
717
|
+
var DataLakeDatasetSchemaField$ = [3, n0, _DLDSF,
|
|
718
|
+
0,
|
|
719
|
+
[_n, _ty, _iR],
|
|
720
|
+
[0, 0, 2], 3
|
|
721
|
+
];
|
|
722
|
+
var DataLakeNamespace$ = [3, n0, _DLN,
|
|
723
|
+
0,
|
|
724
|
+
[_iI, _n, _a, _cTr, _lMT, _d],
|
|
725
|
+
[0, 0, 0, 4, 4, 0], 5
|
|
726
|
+
];
|
|
727
|
+
var DeleteDataIntegrationFlowRequest$ = [3, n0, _DDIFR,
|
|
728
|
+
0,
|
|
729
|
+
[_iI, _n],
|
|
730
|
+
[[0, 1], [0, 1]], 2
|
|
731
|
+
];
|
|
732
|
+
var DeleteDataIntegrationFlowResponse$ = [3, n0, _DDIFRe,
|
|
733
|
+
0,
|
|
734
|
+
[_iI, _n],
|
|
735
|
+
[0, 0], 2
|
|
736
|
+
];
|
|
737
|
+
var DeleteDataLakeDatasetRequest$ = [3, n0, _DDLDR,
|
|
738
|
+
0,
|
|
739
|
+
[_iI, _na, _n],
|
|
740
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
741
|
+
];
|
|
742
|
+
var DeleteDataLakeDatasetResponse$ = [3, n0, _DDLDRe,
|
|
743
|
+
0,
|
|
744
|
+
[_iI, _na, _n],
|
|
745
|
+
[0, 0, 0], 3
|
|
746
|
+
];
|
|
747
|
+
var DeleteDataLakeNamespaceRequest$ = [3, n0, _DDLNR,
|
|
748
|
+
0,
|
|
749
|
+
[_iI, _n],
|
|
750
|
+
[[0, 1], [0, 1]], 2
|
|
751
|
+
];
|
|
752
|
+
var DeleteDataLakeNamespaceResponse$ = [3, n0, _DDLNRe,
|
|
753
|
+
0,
|
|
754
|
+
[_iI, _n],
|
|
755
|
+
[0, 0], 2
|
|
756
|
+
];
|
|
757
|
+
var DeleteInstanceRequest$ = [3, n0, _DIR,
|
|
758
|
+
0,
|
|
759
|
+
[_iI],
|
|
760
|
+
[[0, 1]], 1
|
|
761
|
+
];
|
|
762
|
+
var DeleteInstanceResponse$ = [3, n0, _DIRe,
|
|
763
|
+
0,
|
|
764
|
+
[_i],
|
|
765
|
+
[() => Instance$], 1
|
|
766
|
+
];
|
|
767
|
+
var GetBillOfMaterialsImportJobRequest$ = [3, n0, _GBOMIJR,
|
|
768
|
+
0,
|
|
769
|
+
[_iI, _jI],
|
|
770
|
+
[[0, 1], [0, 1]], 2
|
|
771
|
+
];
|
|
772
|
+
var GetBillOfMaterialsImportJobResponse$ = [3, n0, _GBOMIJRe,
|
|
773
|
+
0,
|
|
774
|
+
[_j],
|
|
775
|
+
[() => BillOfMaterialsImportJob$], 1
|
|
776
|
+
];
|
|
777
|
+
var GetDataIntegrationEventRequest$ = [3, n0, _GDIER,
|
|
778
|
+
0,
|
|
779
|
+
[_iI, _eI],
|
|
780
|
+
[[0, 1], [0, 1]], 2
|
|
781
|
+
];
|
|
782
|
+
var GetDataIntegrationEventResponse$ = [3, n0, _GDIERe,
|
|
783
|
+
0,
|
|
784
|
+
[_ev],
|
|
785
|
+
[() => DataIntegrationEvent$], 1
|
|
786
|
+
];
|
|
787
|
+
var GetDataIntegrationFlowExecutionRequest$ = [3, n0, _GDIFER,
|
|
788
|
+
0,
|
|
789
|
+
[_iI, _fN, _eIx],
|
|
790
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
791
|
+
];
|
|
792
|
+
var GetDataIntegrationFlowExecutionResponse$ = [3, n0, _GDIFERe,
|
|
793
|
+
0,
|
|
794
|
+
[_fE],
|
|
795
|
+
[() => DataIntegrationFlowExecution$], 1
|
|
796
|
+
];
|
|
797
|
+
var GetDataIntegrationFlowRequest$ = [3, n0, _GDIFR,
|
|
798
|
+
0,
|
|
799
|
+
[_iI, _n],
|
|
800
|
+
[[0, 1], [0, 1]], 2
|
|
801
|
+
];
|
|
802
|
+
var GetDataIntegrationFlowResponse$ = [3, n0, _GDIFRe,
|
|
803
|
+
0,
|
|
804
|
+
[_fl],
|
|
805
|
+
[[() => DataIntegrationFlow$, 0]], 1
|
|
806
|
+
];
|
|
807
|
+
var GetDataLakeDatasetRequest$ = [3, n0, _GDLDR,
|
|
808
|
+
0,
|
|
809
|
+
[_iI, _na, _n],
|
|
810
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
811
|
+
];
|
|
812
|
+
var GetDataLakeDatasetResponse$ = [3, n0, _GDLDRe,
|
|
813
|
+
0,
|
|
814
|
+
[_da],
|
|
815
|
+
[() => DataLakeDataset$], 1
|
|
816
|
+
];
|
|
817
|
+
var GetDataLakeNamespaceRequest$ = [3, n0, _GDLNR,
|
|
818
|
+
0,
|
|
819
|
+
[_iI, _n],
|
|
820
|
+
[[0, 1], [0, 1]], 2
|
|
821
|
+
];
|
|
822
|
+
var GetDataLakeNamespaceResponse$ = [3, n0, _GDLNRe,
|
|
823
|
+
0,
|
|
824
|
+
[_na],
|
|
825
|
+
[() => DataLakeNamespace$], 1
|
|
826
|
+
];
|
|
827
|
+
var GetInstanceRequest$ = [3, n0, _GIR,
|
|
828
|
+
0,
|
|
829
|
+
[_iI],
|
|
830
|
+
[[0, 1]], 1
|
|
831
|
+
];
|
|
832
|
+
var GetInstanceResponse$ = [3, n0, _GIRe,
|
|
833
|
+
0,
|
|
834
|
+
[_i],
|
|
835
|
+
[() => Instance$], 1
|
|
836
|
+
];
|
|
837
|
+
var Instance$ = [3, n0, _I,
|
|
838
|
+
0,
|
|
839
|
+
[_iI, _aAI, _sta, _eM, _wADD, _cTr, _lMT, _iN, _iD, _kKA, _vN],
|
|
840
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1], 3
|
|
841
|
+
];
|
|
842
|
+
var ListDataIntegrationEventsRequest$ = [3, n0, _LDIER,
|
|
843
|
+
0,
|
|
844
|
+
[_iI, _eT, _nT, _mR],
|
|
845
|
+
[[0, 1], [0, { [_hQ]: _eT }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
846
|
+
];
|
|
847
|
+
var ListDataIntegrationEventsResponse$ = [3, n0, _LDIERi,
|
|
848
|
+
0,
|
|
849
|
+
[_eve, _nT],
|
|
850
|
+
[() => DataIntegrationEventList, 0], 1
|
|
851
|
+
];
|
|
852
|
+
var ListDataIntegrationFlowExecutionsRequest$ = [3, n0, _LDIFER,
|
|
853
|
+
0,
|
|
854
|
+
[_iI, _fN, _nT, _mR],
|
|
855
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
856
|
+
];
|
|
857
|
+
var ListDataIntegrationFlowExecutionsResponse$ = [3, n0, _LDIFERi,
|
|
858
|
+
0,
|
|
859
|
+
[_fEl, _nT],
|
|
860
|
+
[() => DataIntegrationFlowExecutionList, 0], 1
|
|
861
|
+
];
|
|
862
|
+
var ListDataIntegrationFlowsRequest$ = [3, n0, _LDIFR,
|
|
863
|
+
0,
|
|
864
|
+
[_iI, _nT, _mR],
|
|
865
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
866
|
+
];
|
|
867
|
+
var ListDataIntegrationFlowsResponse$ = [3, n0, _LDIFRi,
|
|
868
|
+
0,
|
|
869
|
+
[_flo, _nT],
|
|
870
|
+
[[() => DataIntegrationFlowList, 0], 0], 1
|
|
871
|
+
];
|
|
872
|
+
var ListDataLakeDatasetsRequest$ = [3, n0, _LDLDR,
|
|
873
|
+
0,
|
|
874
|
+
[_iI, _na, _nT, _mR],
|
|
875
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
876
|
+
];
|
|
877
|
+
var ListDataLakeDatasetsResponse$ = [3, n0, _LDLDRi,
|
|
878
|
+
0,
|
|
879
|
+
[_dat, _nT],
|
|
880
|
+
[() => DataLakeDatasetList, 0], 1
|
|
881
|
+
];
|
|
882
|
+
var ListDataLakeNamespacesRequest$ = [3, n0, _LDLNR,
|
|
883
|
+
0,
|
|
884
|
+
[_iI, _nT, _mR],
|
|
885
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
886
|
+
];
|
|
887
|
+
var ListDataLakeNamespacesResponse$ = [3, n0, _LDLNRi,
|
|
888
|
+
0,
|
|
889
|
+
[_nam, _nT],
|
|
890
|
+
[() => DataLakeNamespaceList, 0], 1
|
|
891
|
+
];
|
|
892
|
+
var ListInstancesRequest$ = [3, n0, _LIR,
|
|
893
|
+
0,
|
|
894
|
+
[_nT, _mR, _iNF, _iSF],
|
|
895
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _iNF }], [64 | 0, { [_hQ]: _iSF }]]
|
|
896
|
+
];
|
|
897
|
+
var ListInstancesResponse$ = [3, n0, _LIRi,
|
|
898
|
+
0,
|
|
899
|
+
[_in, _nT],
|
|
900
|
+
[() => InstanceList, 0], 1
|
|
901
|
+
];
|
|
902
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
903
|
+
0,
|
|
904
|
+
[_rA],
|
|
905
|
+
[[0, 1]], 1
|
|
906
|
+
];
|
|
907
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
908
|
+
0,
|
|
909
|
+
[_tag],
|
|
910
|
+
[128 | 0], 1
|
|
911
|
+
];
|
|
912
|
+
var SendDataIntegrationEventRequest$ = [3, n0, _SDIER,
|
|
913
|
+
0,
|
|
914
|
+
[_iI, _eT, _data, _eGI, _eTv, _cT, _dT],
|
|
915
|
+
[[0, 1], 0, [() => DataIntegrationEventData, 0], 0, 7, [0, 4], () => DataIntegrationEventDatasetTargetConfiguration$], 4
|
|
916
|
+
];
|
|
917
|
+
var SendDataIntegrationEventResponse$ = [3, n0, _SDIERe,
|
|
918
|
+
0,
|
|
919
|
+
[_eI],
|
|
920
|
+
[0], 1
|
|
921
|
+
];
|
|
922
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
923
|
+
0,
|
|
924
|
+
[_rA, _tag],
|
|
925
|
+
[[0, 1], 128 | 0], 2
|
|
926
|
+
];
|
|
927
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
928
|
+
0,
|
|
929
|
+
[],
|
|
930
|
+
[]
|
|
931
|
+
];
|
|
932
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
933
|
+
0,
|
|
934
|
+
[_rA, _tK],
|
|
935
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
936
|
+
];
|
|
937
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
938
|
+
0,
|
|
939
|
+
[],
|
|
940
|
+
[]
|
|
941
|
+
];
|
|
942
|
+
var UpdateDataIntegrationFlowRequest$ = [3, n0, _UDIFR,
|
|
943
|
+
0,
|
|
944
|
+
[_iI, _n, _so, _t, _ta],
|
|
945
|
+
[[0, 1], [0, 1], () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$], 2
|
|
946
|
+
];
|
|
947
|
+
var UpdateDataIntegrationFlowResponse$ = [3, n0, _UDIFRp,
|
|
948
|
+
0,
|
|
949
|
+
[_fl],
|
|
950
|
+
[[() => DataIntegrationFlow$, 0]], 1
|
|
951
|
+
];
|
|
952
|
+
var UpdateDataLakeDatasetRequest$ = [3, n0, _UDLDR,
|
|
953
|
+
0,
|
|
954
|
+
[_iI, _na, _n, _d],
|
|
955
|
+
[[0, 1], [0, 1], [0, 1], 0], 3
|
|
956
|
+
];
|
|
957
|
+
var UpdateDataLakeDatasetResponse$ = [3, n0, _UDLDRp,
|
|
958
|
+
0,
|
|
959
|
+
[_da],
|
|
960
|
+
[() => DataLakeDataset$], 1
|
|
961
|
+
];
|
|
962
|
+
var UpdateDataLakeNamespaceRequest$ = [3, n0, _UDLNR,
|
|
963
|
+
0,
|
|
964
|
+
[_iI, _n, _d],
|
|
965
|
+
[[0, 1], [0, 1], 0], 2
|
|
966
|
+
];
|
|
967
|
+
var UpdateDataLakeNamespaceResponse$ = [3, n0, _UDLNRp,
|
|
968
|
+
0,
|
|
969
|
+
[_na],
|
|
970
|
+
[() => DataLakeNamespace$], 1
|
|
971
|
+
];
|
|
972
|
+
var UpdateInstanceRequest$ = [3, n0, _UIR,
|
|
973
|
+
0,
|
|
974
|
+
[_iI, _iN, _iD],
|
|
975
|
+
[[0, 1], 0, 0], 1
|
|
976
|
+
];
|
|
977
|
+
var UpdateInstanceResponse$ = [3, n0, _UIRp,
|
|
978
|
+
0,
|
|
979
|
+
[_i],
|
|
980
|
+
[() => Instance$], 1
|
|
981
|
+
];
|
|
982
|
+
var DataIntegrationEventList = [1, n0, _DIEL,
|
|
983
|
+
0, () => DataIntegrationEvent$
|
|
984
|
+
];
|
|
985
|
+
var DataIntegrationFlowExecutionList = [1, n0, _DIFEL,
|
|
986
|
+
0, () => DataIntegrationFlowExecution$
|
|
987
|
+
];
|
|
988
|
+
var DataIntegrationFlowFieldPriorityDedupeFieldList = [1, n0, _DIFFPDFL,
|
|
989
|
+
0, () => DataIntegrationFlowFieldPriorityDedupeField$
|
|
990
|
+
];
|
|
991
|
+
var DataIntegrationFlowList = [1, n0, _DIFL,
|
|
992
|
+
0, [() => DataIntegrationFlow$,
|
|
993
|
+
0]
|
|
994
|
+
];
|
|
995
|
+
var DataIntegrationFlowSourceList = [1, n0, _DIFSL,
|
|
996
|
+
0, () => DataIntegrationFlowSource$
|
|
997
|
+
];
|
|
998
|
+
var DataLakeDatasetList = [1, n0, _DLDL,
|
|
999
|
+
0, () => DataLakeDataset$
|
|
1000
|
+
];
|
|
1001
|
+
var DataLakeDatasetPartitionFieldList = [1, n0, _DLDPFL,
|
|
1002
|
+
0, () => DataLakeDatasetPartitionField$
|
|
1003
|
+
];
|
|
1004
|
+
var DataLakeDatasetPrimaryKeyFieldList = [1, n0, _DLDPKFL,
|
|
1005
|
+
0, () => DataLakeDatasetPrimaryKeyField$
|
|
1006
|
+
];
|
|
1007
|
+
var DataLakeDatasetSchemaFieldList = [1, n0, _DLDSFL,
|
|
1008
|
+
0, () => DataLakeDatasetSchemaField$
|
|
1009
|
+
];
|
|
1010
|
+
var DataLakeNamespaceList = [1, n0, _DLNL,
|
|
1011
|
+
0, () => DataLakeNamespace$
|
|
1012
|
+
];
|
|
1013
|
+
var InstanceList = [1, n0, _IL,
|
|
1014
|
+
0, () => Instance$
|
|
1015
|
+
];
|
|
1016
|
+
var CreateBillOfMaterialsImportJob$ = [9, n0, _CBOMIJ,
|
|
1017
|
+
{ [_h]: ["POST", "/api/configuration/instances/{instanceId}/bill-of-materials-import-jobs", 200] }, () => CreateBillOfMaterialsImportJobRequest$, () => CreateBillOfMaterialsImportJobResponse$
|
|
1018
|
+
];
|
|
1019
|
+
var CreateDataIntegrationFlow$ = [9, n0, _CDIF,
|
|
1020
|
+
{ [_h]: ["PUT", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => CreateDataIntegrationFlowRequest$, () => CreateDataIntegrationFlowResponse$
|
|
1021
|
+
];
|
|
1022
|
+
var CreateDataLakeDataset$ = [9, n0, _CDLD,
|
|
1023
|
+
{ [_h]: ["PUT", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => CreateDataLakeDatasetRequest$, () => CreateDataLakeDatasetResponse$
|
|
1024
|
+
];
|
|
1025
|
+
var CreateDataLakeNamespace$ = [9, n0, _CDLN,
|
|
1026
|
+
{ [_h]: ["PUT", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => CreateDataLakeNamespaceRequest$, () => CreateDataLakeNamespaceResponse$
|
|
1027
|
+
];
|
|
1028
|
+
var CreateInstance$ = [9, n0, _CI,
|
|
1029
|
+
{ [_h]: ["POST", "/api/instance", 200] }, () => CreateInstanceRequest$, () => CreateInstanceResponse$
|
|
1030
|
+
];
|
|
1031
|
+
var DeleteDataIntegrationFlow$ = [9, n0, _DDIF,
|
|
1032
|
+
{ [_h]: ["DELETE", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => DeleteDataIntegrationFlowRequest$, () => DeleteDataIntegrationFlowResponse$
|
|
1033
|
+
];
|
|
1034
|
+
var DeleteDataLakeDataset$ = [9, n0, _DDLD,
|
|
1035
|
+
{ [_h]: ["DELETE", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => DeleteDataLakeDatasetRequest$, () => DeleteDataLakeDatasetResponse$
|
|
1036
|
+
];
|
|
1037
|
+
var DeleteDataLakeNamespace$ = [9, n0, _DDLN,
|
|
1038
|
+
{ [_h]: ["DELETE", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => DeleteDataLakeNamespaceRequest$, () => DeleteDataLakeNamespaceResponse$
|
|
1039
|
+
];
|
|
1040
|
+
var DeleteInstance$ = [9, n0, _DI,
|
|
1041
|
+
{ [_h]: ["DELETE", "/api/instance/{instanceId}", 200] }, () => DeleteInstanceRequest$, () => DeleteInstanceResponse$
|
|
1042
|
+
];
|
|
1043
|
+
var GetBillOfMaterialsImportJob$ = [9, n0, _GBOMIJ,
|
|
1044
|
+
{ [_h]: ["GET", "/api/configuration/instances/{instanceId}/bill-of-materials-import-jobs/{jobId}", 200] }, () => GetBillOfMaterialsImportJobRequest$, () => GetBillOfMaterialsImportJobResponse$
|
|
1045
|
+
];
|
|
1046
|
+
var GetDataIntegrationEvent$ = [9, n0, _GDIE,
|
|
1047
|
+
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-events/{eventId}", 200] }, () => GetDataIntegrationEventRequest$, () => GetDataIntegrationEventResponse$
|
|
1048
|
+
];
|
|
1049
|
+
var GetDataIntegrationFlow$ = [9, n0, _GDIF,
|
|
1050
|
+
{ [_h]: ["GET", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => GetDataIntegrationFlowRequest$, () => GetDataIntegrationFlowResponse$
|
|
1051
|
+
];
|
|
1052
|
+
var GetDataIntegrationFlowExecution$ = [9, n0, _GDIFE,
|
|
1053
|
+
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-flows/{flowName}/executions/{executionId}", 200] }, () => GetDataIntegrationFlowExecutionRequest$, () => GetDataIntegrationFlowExecutionResponse$
|
|
1054
|
+
];
|
|
1055
|
+
var GetDataLakeDataset$ = [9, n0, _GDLD,
|
|
1056
|
+
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => GetDataLakeDatasetRequest$, () => GetDataLakeDatasetResponse$
|
|
1057
|
+
];
|
|
1058
|
+
var GetDataLakeNamespace$ = [9, n0, _GDLN,
|
|
1059
|
+
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => GetDataLakeNamespaceRequest$, () => GetDataLakeNamespaceResponse$
|
|
1060
|
+
];
|
|
1061
|
+
var GetInstance$ = [9, n0, _GI,
|
|
1062
|
+
{ [_h]: ["GET", "/api/instance/{instanceId}", 200] }, () => GetInstanceRequest$, () => GetInstanceResponse$
|
|
1063
|
+
];
|
|
1064
|
+
var ListDataIntegrationEvents$ = [9, n0, _LDIE,
|
|
1065
|
+
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-events", 200] }, () => ListDataIntegrationEventsRequest$, () => ListDataIntegrationEventsResponse$
|
|
1066
|
+
];
|
|
1067
|
+
var ListDataIntegrationFlowExecutions$ = [9, n0, _LDIFE,
|
|
1068
|
+
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-flows/{flowName}/executions", 200] }, () => ListDataIntegrationFlowExecutionsRequest$, () => ListDataIntegrationFlowExecutionsResponse$
|
|
1069
|
+
];
|
|
1070
|
+
var ListDataIntegrationFlows$ = [9, n0, _LDIF,
|
|
1071
|
+
{ [_h]: ["GET", "/api/data-integration/instance/{instanceId}/data-integration-flows", 200] }, () => ListDataIntegrationFlowsRequest$, () => ListDataIntegrationFlowsResponse$
|
|
1072
|
+
];
|
|
1073
|
+
var ListDataLakeDatasets$ = [9, n0, _LDLD,
|
|
1074
|
+
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets", 200] }, () => ListDataLakeDatasetsRequest$, () => ListDataLakeDatasetsResponse$
|
|
1075
|
+
];
|
|
1076
|
+
var ListDataLakeNamespaces$ = [9, n0, _LDLN,
|
|
1077
|
+
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces", 200] }, () => ListDataLakeNamespacesRequest$, () => ListDataLakeNamespacesResponse$
|
|
1078
|
+
];
|
|
1079
|
+
var ListInstances$ = [9, n0, _LI,
|
|
1080
|
+
{ [_h]: ["GET", "/api/instance", 200] }, () => ListInstancesRequest$, () => ListInstancesResponse$
|
|
1081
|
+
];
|
|
1082
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1083
|
+
{ [_h]: ["GET", "/api/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1084
|
+
];
|
|
1085
|
+
var SendDataIntegrationEvent$ = [9, n0, _SDIE,
|
|
1086
|
+
{ [_h]: ["POST", "/api-data/data-integration/instance/{instanceId}/data-integration-events", 200] }, () => SendDataIntegrationEventRequest$, () => SendDataIntegrationEventResponse$
|
|
1087
|
+
];
|
|
1088
|
+
var TagResource$ = [9, n0, _TR,
|
|
1089
|
+
{ [_h]: ["POST", "/api/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1090
|
+
];
|
|
1091
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1092
|
+
{ [_h]: ["DELETE", "/api/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1093
|
+
];
|
|
1094
|
+
var UpdateDataIntegrationFlow$ = [9, n0, _UDIF,
|
|
1095
|
+
{ [_h]: ["PATCH", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => UpdateDataIntegrationFlowRequest$, () => UpdateDataIntegrationFlowResponse$
|
|
1096
|
+
];
|
|
1097
|
+
var UpdateDataLakeDataset$ = [9, n0, _UDLD,
|
|
1098
|
+
{ [_h]: ["PATCH", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => UpdateDataLakeDatasetRequest$, () => UpdateDataLakeDatasetResponse$
|
|
1099
|
+
];
|
|
1100
|
+
var UpdateDataLakeNamespace$ = [9, n0, _UDLN,
|
|
1101
|
+
{ [_h]: ["PATCH", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => UpdateDataLakeNamespaceRequest$, () => UpdateDataLakeNamespaceResponse$
|
|
1102
|
+
];
|
|
1103
|
+
var UpdateInstance$ = [9, n0, _UI,
|
|
1104
|
+
{ [_h]: ["PATCH", "/api/instance/{instanceId}", 200] }, () => UpdateInstanceRequest$, () => UpdateInstanceResponse$
|
|
1105
|
+
];
|
|
1106
|
+
|
|
1107
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1108
|
+
return {
|
|
1109
|
+
apiVersion: "2024-01-01",
|
|
1110
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1111
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1112
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1113
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1114
|
+
extensions: config?.extensions ?? [],
|
|
1115
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSupplyChainHttpAuthSchemeProvider,
|
|
1116
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1117
|
+
{
|
|
1118
|
+
schemeId: "aws.auth#sigv4",
|
|
1119
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1120
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1124
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1125
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1126
|
+
defaultNamespace: "com.amazonaws.supplychain",
|
|
1127
|
+
errorTypeRegistries,
|
|
1128
|
+
version: "2024-01-01",
|
|
1129
|
+
serviceTarget: "GalaxyPublicAPIGateway",
|
|
1130
|
+
},
|
|
1131
|
+
serviceId: config?.serviceId ?? "SupplyChain",
|
|
1132
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1133
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1134
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1135
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1136
|
+
};
|
|
1137
|
+
};
|
|
1138
|
+
|
|
1139
|
+
const getRuntimeConfig = (config) => {
|
|
1140
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1141
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1142
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1143
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1144
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1145
|
+
const loaderConfig = {
|
|
1146
|
+
profile: config?.profile,
|
|
1147
|
+
logger: clientSharedValues.logger,
|
|
1148
|
+
};
|
|
1149
|
+
return {
|
|
1150
|
+
...clientSharedValues,
|
|
1151
|
+
...config,
|
|
1152
|
+
runtime: "node",
|
|
1153
|
+
defaultsMode,
|
|
1154
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1155
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1156
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1157
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1158
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1159
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1160
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1161
|
+
retryMode: config?.retryMode ??
|
|
1162
|
+
loadConfig({
|
|
1163
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1164
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1165
|
+
}, config),
|
|
1166
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1167
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1168
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1169
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1170
|
+
};
|
|
1171
|
+
};
|
|
1172
|
+
|
|
34
1173
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1174
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1175
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -618,53 +1757,193 @@ const DataIntegrationFlowExecutionStatus = {
|
|
|
618
1757
|
SUCCEEDED: "SUCCEEDED",
|
|
619
1758
|
};
|
|
620
1759
|
|
|
1760
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1761
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1762
|
+
exports.BillOfMaterialsImportJob$ = BillOfMaterialsImportJob$;
|
|
621
1763
|
exports.ConfigurationJobStatus = ConfigurationJobStatus;
|
|
1764
|
+
exports.ConflictException = ConflictException;
|
|
1765
|
+
exports.ConflictException$ = ConflictException$;
|
|
1766
|
+
exports.CreateBillOfMaterialsImportJob$ = CreateBillOfMaterialsImportJob$;
|
|
622
1767
|
exports.CreateBillOfMaterialsImportJobCommand = CreateBillOfMaterialsImportJobCommand;
|
|
1768
|
+
exports.CreateBillOfMaterialsImportJobRequest$ = CreateBillOfMaterialsImportJobRequest$;
|
|
1769
|
+
exports.CreateBillOfMaterialsImportJobResponse$ = CreateBillOfMaterialsImportJobResponse$;
|
|
1770
|
+
exports.CreateDataIntegrationFlow$ = CreateDataIntegrationFlow$;
|
|
623
1771
|
exports.CreateDataIntegrationFlowCommand = CreateDataIntegrationFlowCommand;
|
|
1772
|
+
exports.CreateDataIntegrationFlowRequest$ = CreateDataIntegrationFlowRequest$;
|
|
1773
|
+
exports.CreateDataIntegrationFlowResponse$ = CreateDataIntegrationFlowResponse$;
|
|
1774
|
+
exports.CreateDataLakeDataset$ = CreateDataLakeDataset$;
|
|
624
1775
|
exports.CreateDataLakeDatasetCommand = CreateDataLakeDatasetCommand;
|
|
1776
|
+
exports.CreateDataLakeDatasetRequest$ = CreateDataLakeDatasetRequest$;
|
|
1777
|
+
exports.CreateDataLakeDatasetResponse$ = CreateDataLakeDatasetResponse$;
|
|
1778
|
+
exports.CreateDataLakeNamespace$ = CreateDataLakeNamespace$;
|
|
625
1779
|
exports.CreateDataLakeNamespaceCommand = CreateDataLakeNamespaceCommand;
|
|
1780
|
+
exports.CreateDataLakeNamespaceRequest$ = CreateDataLakeNamespaceRequest$;
|
|
1781
|
+
exports.CreateDataLakeNamespaceResponse$ = CreateDataLakeNamespaceResponse$;
|
|
1782
|
+
exports.CreateInstance$ = CreateInstance$;
|
|
626
1783
|
exports.CreateInstanceCommand = CreateInstanceCommand;
|
|
1784
|
+
exports.CreateInstanceRequest$ = CreateInstanceRequest$;
|
|
1785
|
+
exports.CreateInstanceResponse$ = CreateInstanceResponse$;
|
|
1786
|
+
exports.DataIntegrationEvent$ = DataIntegrationEvent$;
|
|
1787
|
+
exports.DataIntegrationEventDatasetLoadExecutionDetails$ = DataIntegrationEventDatasetLoadExecutionDetails$;
|
|
627
1788
|
exports.DataIntegrationEventDatasetLoadStatus = DataIntegrationEventDatasetLoadStatus;
|
|
628
1789
|
exports.DataIntegrationEventDatasetOperationType = DataIntegrationEventDatasetOperationType;
|
|
1790
|
+
exports.DataIntegrationEventDatasetTargetConfiguration$ = DataIntegrationEventDatasetTargetConfiguration$;
|
|
1791
|
+
exports.DataIntegrationEventDatasetTargetDetails$ = DataIntegrationEventDatasetTargetDetails$;
|
|
629
1792
|
exports.DataIntegrationEventType = DataIntegrationEventType;
|
|
1793
|
+
exports.DataIntegrationFlow$ = DataIntegrationFlow$;
|
|
1794
|
+
exports.DataIntegrationFlowDatasetOptions$ = DataIntegrationFlowDatasetOptions$;
|
|
1795
|
+
exports.DataIntegrationFlowDatasetSource$ = DataIntegrationFlowDatasetSource$;
|
|
1796
|
+
exports.DataIntegrationFlowDatasetSourceConfiguration$ = DataIntegrationFlowDatasetSourceConfiguration$;
|
|
1797
|
+
exports.DataIntegrationFlowDatasetTargetConfiguration$ = DataIntegrationFlowDatasetTargetConfiguration$;
|
|
1798
|
+
exports.DataIntegrationFlowDedupeStrategy$ = DataIntegrationFlowDedupeStrategy$;
|
|
630
1799
|
exports.DataIntegrationFlowDedupeStrategyType = DataIntegrationFlowDedupeStrategyType;
|
|
1800
|
+
exports.DataIntegrationFlowExecution$ = DataIntegrationFlowExecution$;
|
|
1801
|
+
exports.DataIntegrationFlowExecutionOutputMetadata$ = DataIntegrationFlowExecutionOutputMetadata$;
|
|
1802
|
+
exports.DataIntegrationFlowExecutionSourceInfo$ = DataIntegrationFlowExecutionSourceInfo$;
|
|
631
1803
|
exports.DataIntegrationFlowExecutionStatus = DataIntegrationFlowExecutionStatus;
|
|
1804
|
+
exports.DataIntegrationFlowFieldPriorityDedupeField$ = DataIntegrationFlowFieldPriorityDedupeField$;
|
|
632
1805
|
exports.DataIntegrationFlowFieldPriorityDedupeSortOrder = DataIntegrationFlowFieldPriorityDedupeSortOrder;
|
|
1806
|
+
exports.DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$ = DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$;
|
|
633
1807
|
exports.DataIntegrationFlowFileType = DataIntegrationFlowFileType;
|
|
634
1808
|
exports.DataIntegrationFlowLoadType = DataIntegrationFlowLoadType;
|
|
1809
|
+
exports.DataIntegrationFlowS3Options$ = DataIntegrationFlowS3Options$;
|
|
1810
|
+
exports.DataIntegrationFlowS3Source$ = DataIntegrationFlowS3Source$;
|
|
1811
|
+
exports.DataIntegrationFlowS3SourceConfiguration$ = DataIntegrationFlowS3SourceConfiguration$;
|
|
1812
|
+
exports.DataIntegrationFlowS3TargetConfiguration$ = DataIntegrationFlowS3TargetConfiguration$;
|
|
1813
|
+
exports.DataIntegrationFlowSQLTransformationConfiguration$ = DataIntegrationFlowSQLTransformationConfiguration$;
|
|
1814
|
+
exports.DataIntegrationFlowSource$ = DataIntegrationFlowSource$;
|
|
635
1815
|
exports.DataIntegrationFlowSourceType = DataIntegrationFlowSourceType;
|
|
1816
|
+
exports.DataIntegrationFlowTarget$ = DataIntegrationFlowTarget$;
|
|
636
1817
|
exports.DataIntegrationFlowTargetType = DataIntegrationFlowTargetType;
|
|
1818
|
+
exports.DataIntegrationFlowTransformation$ = DataIntegrationFlowTransformation$;
|
|
637
1819
|
exports.DataIntegrationFlowTransformationType = DataIntegrationFlowTransformationType;
|
|
1820
|
+
exports.DataLakeDataset$ = DataLakeDataset$;
|
|
1821
|
+
exports.DataLakeDatasetPartitionField$ = DataLakeDatasetPartitionField$;
|
|
1822
|
+
exports.DataLakeDatasetPartitionFieldTransform$ = DataLakeDatasetPartitionFieldTransform$;
|
|
1823
|
+
exports.DataLakeDatasetPartitionSpec$ = DataLakeDatasetPartitionSpec$;
|
|
638
1824
|
exports.DataLakeDatasetPartitionTransformType = DataLakeDatasetPartitionTransformType;
|
|
1825
|
+
exports.DataLakeDatasetPrimaryKeyField$ = DataLakeDatasetPrimaryKeyField$;
|
|
1826
|
+
exports.DataLakeDatasetSchema$ = DataLakeDatasetSchema$;
|
|
1827
|
+
exports.DataLakeDatasetSchemaField$ = DataLakeDatasetSchemaField$;
|
|
639
1828
|
exports.DataLakeDatasetSchemaFieldType = DataLakeDatasetSchemaFieldType;
|
|
1829
|
+
exports.DataLakeNamespace$ = DataLakeNamespace$;
|
|
1830
|
+
exports.DeleteDataIntegrationFlow$ = DeleteDataIntegrationFlow$;
|
|
640
1831
|
exports.DeleteDataIntegrationFlowCommand = DeleteDataIntegrationFlowCommand;
|
|
1832
|
+
exports.DeleteDataIntegrationFlowRequest$ = DeleteDataIntegrationFlowRequest$;
|
|
1833
|
+
exports.DeleteDataIntegrationFlowResponse$ = DeleteDataIntegrationFlowResponse$;
|
|
1834
|
+
exports.DeleteDataLakeDataset$ = DeleteDataLakeDataset$;
|
|
641
1835
|
exports.DeleteDataLakeDatasetCommand = DeleteDataLakeDatasetCommand;
|
|
1836
|
+
exports.DeleteDataLakeDatasetRequest$ = DeleteDataLakeDatasetRequest$;
|
|
1837
|
+
exports.DeleteDataLakeDatasetResponse$ = DeleteDataLakeDatasetResponse$;
|
|
1838
|
+
exports.DeleteDataLakeNamespace$ = DeleteDataLakeNamespace$;
|
|
642
1839
|
exports.DeleteDataLakeNamespaceCommand = DeleteDataLakeNamespaceCommand;
|
|
1840
|
+
exports.DeleteDataLakeNamespaceRequest$ = DeleteDataLakeNamespaceRequest$;
|
|
1841
|
+
exports.DeleteDataLakeNamespaceResponse$ = DeleteDataLakeNamespaceResponse$;
|
|
1842
|
+
exports.DeleteInstance$ = DeleteInstance$;
|
|
643
1843
|
exports.DeleteInstanceCommand = DeleteInstanceCommand;
|
|
1844
|
+
exports.DeleteInstanceRequest$ = DeleteInstanceRequest$;
|
|
1845
|
+
exports.DeleteInstanceResponse$ = DeleteInstanceResponse$;
|
|
1846
|
+
exports.GetBillOfMaterialsImportJob$ = GetBillOfMaterialsImportJob$;
|
|
644
1847
|
exports.GetBillOfMaterialsImportJobCommand = GetBillOfMaterialsImportJobCommand;
|
|
1848
|
+
exports.GetBillOfMaterialsImportJobRequest$ = GetBillOfMaterialsImportJobRequest$;
|
|
1849
|
+
exports.GetBillOfMaterialsImportJobResponse$ = GetBillOfMaterialsImportJobResponse$;
|
|
1850
|
+
exports.GetDataIntegrationEvent$ = GetDataIntegrationEvent$;
|
|
645
1851
|
exports.GetDataIntegrationEventCommand = GetDataIntegrationEventCommand;
|
|
1852
|
+
exports.GetDataIntegrationEventRequest$ = GetDataIntegrationEventRequest$;
|
|
1853
|
+
exports.GetDataIntegrationEventResponse$ = GetDataIntegrationEventResponse$;
|
|
1854
|
+
exports.GetDataIntegrationFlow$ = GetDataIntegrationFlow$;
|
|
646
1855
|
exports.GetDataIntegrationFlowCommand = GetDataIntegrationFlowCommand;
|
|
1856
|
+
exports.GetDataIntegrationFlowExecution$ = GetDataIntegrationFlowExecution$;
|
|
647
1857
|
exports.GetDataIntegrationFlowExecutionCommand = GetDataIntegrationFlowExecutionCommand;
|
|
1858
|
+
exports.GetDataIntegrationFlowExecutionRequest$ = GetDataIntegrationFlowExecutionRequest$;
|
|
1859
|
+
exports.GetDataIntegrationFlowExecutionResponse$ = GetDataIntegrationFlowExecutionResponse$;
|
|
1860
|
+
exports.GetDataIntegrationFlowRequest$ = GetDataIntegrationFlowRequest$;
|
|
1861
|
+
exports.GetDataIntegrationFlowResponse$ = GetDataIntegrationFlowResponse$;
|
|
1862
|
+
exports.GetDataLakeDataset$ = GetDataLakeDataset$;
|
|
648
1863
|
exports.GetDataLakeDatasetCommand = GetDataLakeDatasetCommand;
|
|
1864
|
+
exports.GetDataLakeDatasetRequest$ = GetDataLakeDatasetRequest$;
|
|
1865
|
+
exports.GetDataLakeDatasetResponse$ = GetDataLakeDatasetResponse$;
|
|
1866
|
+
exports.GetDataLakeNamespace$ = GetDataLakeNamespace$;
|
|
649
1867
|
exports.GetDataLakeNamespaceCommand = GetDataLakeNamespaceCommand;
|
|
1868
|
+
exports.GetDataLakeNamespaceRequest$ = GetDataLakeNamespaceRequest$;
|
|
1869
|
+
exports.GetDataLakeNamespaceResponse$ = GetDataLakeNamespaceResponse$;
|
|
1870
|
+
exports.GetInstance$ = GetInstance$;
|
|
650
1871
|
exports.GetInstanceCommand = GetInstanceCommand;
|
|
1872
|
+
exports.GetInstanceRequest$ = GetInstanceRequest$;
|
|
1873
|
+
exports.GetInstanceResponse$ = GetInstanceResponse$;
|
|
1874
|
+
exports.Instance$ = Instance$;
|
|
651
1875
|
exports.InstanceState = InstanceState;
|
|
1876
|
+
exports.InternalServerException = InternalServerException;
|
|
1877
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1878
|
+
exports.ListDataIntegrationEvents$ = ListDataIntegrationEvents$;
|
|
652
1879
|
exports.ListDataIntegrationEventsCommand = ListDataIntegrationEventsCommand;
|
|
1880
|
+
exports.ListDataIntegrationEventsRequest$ = ListDataIntegrationEventsRequest$;
|
|
1881
|
+
exports.ListDataIntegrationEventsResponse$ = ListDataIntegrationEventsResponse$;
|
|
1882
|
+
exports.ListDataIntegrationFlowExecutions$ = ListDataIntegrationFlowExecutions$;
|
|
653
1883
|
exports.ListDataIntegrationFlowExecutionsCommand = ListDataIntegrationFlowExecutionsCommand;
|
|
1884
|
+
exports.ListDataIntegrationFlowExecutionsRequest$ = ListDataIntegrationFlowExecutionsRequest$;
|
|
1885
|
+
exports.ListDataIntegrationFlowExecutionsResponse$ = ListDataIntegrationFlowExecutionsResponse$;
|
|
1886
|
+
exports.ListDataIntegrationFlows$ = ListDataIntegrationFlows$;
|
|
654
1887
|
exports.ListDataIntegrationFlowsCommand = ListDataIntegrationFlowsCommand;
|
|
1888
|
+
exports.ListDataIntegrationFlowsRequest$ = ListDataIntegrationFlowsRequest$;
|
|
1889
|
+
exports.ListDataIntegrationFlowsResponse$ = ListDataIntegrationFlowsResponse$;
|
|
1890
|
+
exports.ListDataLakeDatasets$ = ListDataLakeDatasets$;
|
|
655
1891
|
exports.ListDataLakeDatasetsCommand = ListDataLakeDatasetsCommand;
|
|
1892
|
+
exports.ListDataLakeDatasetsRequest$ = ListDataLakeDatasetsRequest$;
|
|
1893
|
+
exports.ListDataLakeDatasetsResponse$ = ListDataLakeDatasetsResponse$;
|
|
1894
|
+
exports.ListDataLakeNamespaces$ = ListDataLakeNamespaces$;
|
|
656
1895
|
exports.ListDataLakeNamespacesCommand = ListDataLakeNamespacesCommand;
|
|
1896
|
+
exports.ListDataLakeNamespacesRequest$ = ListDataLakeNamespacesRequest$;
|
|
1897
|
+
exports.ListDataLakeNamespacesResponse$ = ListDataLakeNamespacesResponse$;
|
|
1898
|
+
exports.ListInstances$ = ListInstances$;
|
|
657
1899
|
exports.ListInstancesCommand = ListInstancesCommand;
|
|
1900
|
+
exports.ListInstancesRequest$ = ListInstancesRequest$;
|
|
1901
|
+
exports.ListInstancesResponse$ = ListInstancesResponse$;
|
|
1902
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
658
1903
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1904
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1905
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1906
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1907
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1908
|
+
exports.SendDataIntegrationEvent$ = SendDataIntegrationEvent$;
|
|
659
1909
|
exports.SendDataIntegrationEventCommand = SendDataIntegrationEventCommand;
|
|
1910
|
+
exports.SendDataIntegrationEventRequest$ = SendDataIntegrationEventRequest$;
|
|
1911
|
+
exports.SendDataIntegrationEventResponse$ = SendDataIntegrationEventResponse$;
|
|
1912
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1913
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
660
1914
|
exports.SupplyChain = SupplyChain;
|
|
661
1915
|
exports.SupplyChainClient = SupplyChainClient;
|
|
1916
|
+
exports.SupplyChainServiceException = SupplyChainServiceException;
|
|
1917
|
+
exports.SupplyChainServiceException$ = SupplyChainServiceException$;
|
|
1918
|
+
exports.TagResource$ = TagResource$;
|
|
662
1919
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1920
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1921
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1922
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1923
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1924
|
+
exports.UntagResource$ = UntagResource$;
|
|
663
1925
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1926
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1927
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1928
|
+
exports.UpdateDataIntegrationFlow$ = UpdateDataIntegrationFlow$;
|
|
664
1929
|
exports.UpdateDataIntegrationFlowCommand = UpdateDataIntegrationFlowCommand;
|
|
1930
|
+
exports.UpdateDataIntegrationFlowRequest$ = UpdateDataIntegrationFlowRequest$;
|
|
1931
|
+
exports.UpdateDataIntegrationFlowResponse$ = UpdateDataIntegrationFlowResponse$;
|
|
1932
|
+
exports.UpdateDataLakeDataset$ = UpdateDataLakeDataset$;
|
|
665
1933
|
exports.UpdateDataLakeDatasetCommand = UpdateDataLakeDatasetCommand;
|
|
1934
|
+
exports.UpdateDataLakeDatasetRequest$ = UpdateDataLakeDatasetRequest$;
|
|
1935
|
+
exports.UpdateDataLakeDatasetResponse$ = UpdateDataLakeDatasetResponse$;
|
|
1936
|
+
exports.UpdateDataLakeNamespace$ = UpdateDataLakeNamespace$;
|
|
666
1937
|
exports.UpdateDataLakeNamespaceCommand = UpdateDataLakeNamespaceCommand;
|
|
1938
|
+
exports.UpdateDataLakeNamespaceRequest$ = UpdateDataLakeNamespaceRequest$;
|
|
1939
|
+
exports.UpdateDataLakeNamespaceResponse$ = UpdateDataLakeNamespaceResponse$;
|
|
1940
|
+
exports.UpdateInstance$ = UpdateInstance$;
|
|
667
1941
|
exports.UpdateInstanceCommand = UpdateInstanceCommand;
|
|
1942
|
+
exports.UpdateInstanceRequest$ = UpdateInstanceRequest$;
|
|
1943
|
+
exports.UpdateInstanceResponse$ = UpdateInstanceResponse$;
|
|
1944
|
+
exports.ValidationException = ValidationException;
|
|
1945
|
+
exports.ValidationException$ = ValidationException$;
|
|
1946
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
668
1947
|
exports.paginateListDataIntegrationEvents = paginateListDataIntegrationEvents;
|
|
669
1948
|
exports.paginateListDataIntegrationFlowExecutions = paginateListDataIntegrationFlowExecutions;
|
|
670
1949
|
exports.paginateListDataIntegrationFlows = paginateListDataIntegrationFlows;
|