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