@aws-sdk/client-supplychain 3.987.0 → 3.988.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 +49 -1137
- package/dist-cjs/models/SupplyChainServiceException.js +12 -0
- package/dist-cjs/models/errors.js +99 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +889 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SupplyChainServiceException = require('./models/SupplyChainServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,974 +113,6 @@ class SupplyChainClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SupplyChainServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SupplyChainServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends SupplyChainServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends SupplyChainServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InternalServerException extends SupplyChainServiceException {
|
|
145
|
-
name = "InternalServerException";
|
|
146
|
-
$fault = "server";
|
|
147
|
-
$retryable = {};
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "InternalServerException",
|
|
151
|
-
$fault: "server",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class ResourceNotFoundException extends SupplyChainServiceException {
|
|
158
|
-
name = "ResourceNotFoundException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "ResourceNotFoundException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class ServiceQuotaExceededException extends SupplyChainServiceException {
|
|
170
|
-
name = "ServiceQuotaExceededException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "ServiceQuotaExceededException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class ThrottlingException extends SupplyChainServiceException {
|
|
182
|
-
name = "ThrottlingException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
$retryable = {
|
|
185
|
-
throttling: true,
|
|
186
|
-
};
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "ThrottlingException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class ValidationException extends SupplyChainServiceException {
|
|
197
|
-
name = "ValidationException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "ValidationException",
|
|
202
|
-
$fault: "client",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const _ADE = "AccessDeniedException";
|
|
210
|
-
const _BOMIJ = "BillOfMaterialsImportJob";
|
|
211
|
-
const _CBOMIJ = "CreateBillOfMaterialsImportJob";
|
|
212
|
-
const _CBOMIJR = "CreateBillOfMaterialsImportJobRequest";
|
|
213
|
-
const _CBOMIJRr = "CreateBillOfMaterialsImportJobResponse";
|
|
214
|
-
const _CDIF = "CreateDataIntegrationFlow";
|
|
215
|
-
const _CDIFR = "CreateDataIntegrationFlowRequest";
|
|
216
|
-
const _CDIFRr = "CreateDataIntegrationFlowResponse";
|
|
217
|
-
const _CDLD = "CreateDataLakeDataset";
|
|
218
|
-
const _CDLDR = "CreateDataLakeDatasetRequest";
|
|
219
|
-
const _CDLDRr = "CreateDataLakeDatasetResponse";
|
|
220
|
-
const _CDLN = "CreateDataLakeNamespace";
|
|
221
|
-
const _CDLNR = "CreateDataLakeNamespaceRequest";
|
|
222
|
-
const _CDLNRr = "CreateDataLakeNamespaceResponse";
|
|
223
|
-
const _CE = "ConflictException";
|
|
224
|
-
const _CI = "CreateInstance";
|
|
225
|
-
const _CIR = "CreateInstanceRequest";
|
|
226
|
-
const _CIRr = "CreateInstanceResponse";
|
|
227
|
-
const _DDIF = "DeleteDataIntegrationFlow";
|
|
228
|
-
const _DDIFR = "DeleteDataIntegrationFlowRequest";
|
|
229
|
-
const _DDIFRe = "DeleteDataIntegrationFlowResponse";
|
|
230
|
-
const _DDLD = "DeleteDataLakeDataset";
|
|
231
|
-
const _DDLDR = "DeleteDataLakeDatasetRequest";
|
|
232
|
-
const _DDLDRe = "DeleteDataLakeDatasetResponse";
|
|
233
|
-
const _DDLN = "DeleteDataLakeNamespace";
|
|
234
|
-
const _DDLNR = "DeleteDataLakeNamespaceRequest";
|
|
235
|
-
const _DDLNRe = "DeleteDataLakeNamespaceResponse";
|
|
236
|
-
const _DI = "DeleteInstance";
|
|
237
|
-
const _DIE = "DataIntegrationEvent";
|
|
238
|
-
const _DIED = "DataIntegrationEventData";
|
|
239
|
-
const _DIEDLED = "DataIntegrationEventDatasetLoadExecutionDetails";
|
|
240
|
-
const _DIEDTC = "DataIntegrationEventDatasetTargetConfiguration";
|
|
241
|
-
const _DIEDTD = "DataIntegrationEventDatasetTargetDetails";
|
|
242
|
-
const _DIEL = "DataIntegrationEventList";
|
|
243
|
-
const _DIF = "DataIntegrationFlow";
|
|
244
|
-
const _DIFDO = "DataIntegrationFlowDatasetOptions";
|
|
245
|
-
const _DIFDS = "DataIntegrationFlowDatasetSource";
|
|
246
|
-
const _DIFDSC = "DataIntegrationFlowDatasetSourceConfiguration";
|
|
247
|
-
const _DIFDSa = "DataIntegrationFlowDedupeStrategy";
|
|
248
|
-
const _DIFDTC = "DataIntegrationFlowDatasetTargetConfiguration";
|
|
249
|
-
const _DIFE = "DataIntegrationFlowExecution";
|
|
250
|
-
const _DIFEL = "DataIntegrationFlowExecutionList";
|
|
251
|
-
const _DIFEOM = "DataIntegrationFlowExecutionOutputMetadata";
|
|
252
|
-
const _DIFESI = "DataIntegrationFlowExecutionSourceInfo";
|
|
253
|
-
const _DIFFPDF = "DataIntegrationFlowFieldPriorityDedupeField";
|
|
254
|
-
const _DIFFPDFL = "DataIntegrationFlowFieldPriorityDedupeFieldList";
|
|
255
|
-
const _DIFFPDSC = "DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration";
|
|
256
|
-
const _DIFL = "DataIntegrationFlowList";
|
|
257
|
-
const _DIFS = "DataIntegrationFlowSource";
|
|
258
|
-
const _DIFSL = "DataIntegrationFlowSourceList";
|
|
259
|
-
const _DIFSO = "DataIntegrationFlowS3Options";
|
|
260
|
-
const _DIFSQLQ = "DataIntegrationFlowSQLQuery";
|
|
261
|
-
const _DIFSQLTC = "DataIntegrationFlowSQLTransformationConfiguration";
|
|
262
|
-
const _DIFSS = "DataIntegrationFlowS3Source";
|
|
263
|
-
const _DIFSSC = "DataIntegrationFlowS3SourceConfiguration";
|
|
264
|
-
const _DIFSTC = "DataIntegrationFlowS3TargetConfiguration";
|
|
265
|
-
const _DIFT = "DataIntegrationFlowTarget";
|
|
266
|
-
const _DIFTa = "DataIntegrationFlowTransformation";
|
|
267
|
-
const _DIR = "DeleteInstanceRequest";
|
|
268
|
-
const _DIRe = "DeleteInstanceResponse";
|
|
269
|
-
const _DLD = "DataLakeDataset";
|
|
270
|
-
const _DLDL = "DataLakeDatasetList";
|
|
271
|
-
const _DLDPF = "DataLakeDatasetPartitionField";
|
|
272
|
-
const _DLDPFL = "DataLakeDatasetPartitionFieldList";
|
|
273
|
-
const _DLDPFT = "DataLakeDatasetPartitionFieldTransform";
|
|
274
|
-
const _DLDPKF = "DataLakeDatasetPrimaryKeyField";
|
|
275
|
-
const _DLDPKFL = "DataLakeDatasetPrimaryKeyFieldList";
|
|
276
|
-
const _DLDPS = "DataLakeDatasetPartitionSpec";
|
|
277
|
-
const _DLDS = "DataLakeDatasetSchema";
|
|
278
|
-
const _DLDSF = "DataLakeDatasetSchemaField";
|
|
279
|
-
const _DLDSFL = "DataLakeDatasetSchemaFieldList";
|
|
280
|
-
const _DLN = "DataLakeNamespace";
|
|
281
|
-
const _DLNL = "DataLakeNamespaceList";
|
|
282
|
-
const _GBOMIJ = "GetBillOfMaterialsImportJob";
|
|
283
|
-
const _GBOMIJR = "GetBillOfMaterialsImportJobRequest";
|
|
284
|
-
const _GBOMIJRe = "GetBillOfMaterialsImportJobResponse";
|
|
285
|
-
const _GDIE = "GetDataIntegrationEvent";
|
|
286
|
-
const _GDIER = "GetDataIntegrationEventRequest";
|
|
287
|
-
const _GDIERe = "GetDataIntegrationEventResponse";
|
|
288
|
-
const _GDIF = "GetDataIntegrationFlow";
|
|
289
|
-
const _GDIFE = "GetDataIntegrationFlowExecution";
|
|
290
|
-
const _GDIFER = "GetDataIntegrationFlowExecutionRequest";
|
|
291
|
-
const _GDIFERe = "GetDataIntegrationFlowExecutionResponse";
|
|
292
|
-
const _GDIFR = "GetDataIntegrationFlowRequest";
|
|
293
|
-
const _GDIFRe = "GetDataIntegrationFlowResponse";
|
|
294
|
-
const _GDLD = "GetDataLakeDataset";
|
|
295
|
-
const _GDLDR = "GetDataLakeDatasetRequest";
|
|
296
|
-
const _GDLDRe = "GetDataLakeDatasetResponse";
|
|
297
|
-
const _GDLN = "GetDataLakeNamespace";
|
|
298
|
-
const _GDLNR = "GetDataLakeNamespaceRequest";
|
|
299
|
-
const _GDLNRe = "GetDataLakeNamespaceResponse";
|
|
300
|
-
const _GI = "GetInstance";
|
|
301
|
-
const _GIR = "GetInstanceRequest";
|
|
302
|
-
const _GIRe = "GetInstanceResponse";
|
|
303
|
-
const _I = "Instance";
|
|
304
|
-
const _IL = "InstanceList";
|
|
305
|
-
const _ISE = "InternalServerException";
|
|
306
|
-
const _LDIE = "ListDataIntegrationEvents";
|
|
307
|
-
const _LDIER = "ListDataIntegrationEventsRequest";
|
|
308
|
-
const _LDIERi = "ListDataIntegrationEventsResponse";
|
|
309
|
-
const _LDIF = "ListDataIntegrationFlows";
|
|
310
|
-
const _LDIFE = "ListDataIntegrationFlowExecutions";
|
|
311
|
-
const _LDIFER = "ListDataIntegrationFlowExecutionsRequest";
|
|
312
|
-
const _LDIFERi = "ListDataIntegrationFlowExecutionsResponse";
|
|
313
|
-
const _LDIFR = "ListDataIntegrationFlowsRequest";
|
|
314
|
-
const _LDIFRi = "ListDataIntegrationFlowsResponse";
|
|
315
|
-
const _LDLD = "ListDataLakeDatasets";
|
|
316
|
-
const _LDLDR = "ListDataLakeDatasetsRequest";
|
|
317
|
-
const _LDLDRi = "ListDataLakeDatasetsResponse";
|
|
318
|
-
const _LDLN = "ListDataLakeNamespaces";
|
|
319
|
-
const _LDLNR = "ListDataLakeNamespacesRequest";
|
|
320
|
-
const _LDLNRi = "ListDataLakeNamespacesResponse";
|
|
321
|
-
const _LI = "ListInstances";
|
|
322
|
-
const _LIR = "ListInstancesRequest";
|
|
323
|
-
const _LIRi = "ListInstancesResponse";
|
|
324
|
-
const _LTFR = "ListTagsForResource";
|
|
325
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
326
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
327
|
-
const _RNFE = "ResourceNotFoundException";
|
|
328
|
-
const _SDIE = "SendDataIntegrationEvent";
|
|
329
|
-
const _SDIER = "SendDataIntegrationEventRequest";
|
|
330
|
-
const _SDIERe = "SendDataIntegrationEventResponse";
|
|
331
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
332
|
-
const _TE = "ThrottlingException";
|
|
333
|
-
const _TR = "TagResource";
|
|
334
|
-
const _TRR = "TagResourceRequest";
|
|
335
|
-
const _TRRa = "TagResourceResponse";
|
|
336
|
-
const _UDIF = "UpdateDataIntegrationFlow";
|
|
337
|
-
const _UDIFR = "UpdateDataIntegrationFlowRequest";
|
|
338
|
-
const _UDIFRp = "UpdateDataIntegrationFlowResponse";
|
|
339
|
-
const _UDLD = "UpdateDataLakeDataset";
|
|
340
|
-
const _UDLDR = "UpdateDataLakeDatasetRequest";
|
|
341
|
-
const _UDLDRp = "UpdateDataLakeDatasetResponse";
|
|
342
|
-
const _UDLN = "UpdateDataLakeNamespace";
|
|
343
|
-
const _UDLNR = "UpdateDataLakeNamespaceRequest";
|
|
344
|
-
const _UDLNRp = "UpdateDataLakeNamespaceResponse";
|
|
345
|
-
const _UI = "UpdateInstance";
|
|
346
|
-
const _UIR = "UpdateInstanceRequest";
|
|
347
|
-
const _UIRp = "UpdateInstanceResponse";
|
|
348
|
-
const _UR = "UntagResource";
|
|
349
|
-
const _URR = "UntagResourceRequest";
|
|
350
|
-
const _URRn = "UntagResourceResponse";
|
|
351
|
-
const _VE = "ValidationException";
|
|
352
|
-
const _a = "arn";
|
|
353
|
-
const _aAI = "awsAccountId";
|
|
354
|
-
const _bN = "bucketName";
|
|
355
|
-
const _c = "client";
|
|
356
|
-
const _cT = "clientToken";
|
|
357
|
-
const _cTr = "createdTime";
|
|
358
|
-
const _d = "description";
|
|
359
|
-
const _dI = "datasetIdentifier";
|
|
360
|
-
const _dLE = "datasetLoadExecution";
|
|
361
|
-
const _dR = "dedupeRecords";
|
|
362
|
-
const _dRRSURI = "diagnosticReportsRootS3URI";
|
|
363
|
-
const _dS = "dedupeStrategy";
|
|
364
|
-
const _dSa = "datasetSource";
|
|
365
|
-
const _dT = "datasetTarget";
|
|
366
|
-
const _dTD = "datasetTargetDetails";
|
|
367
|
-
const _da = "dataset";
|
|
368
|
-
const _dat = "datasets";
|
|
369
|
-
const _data = "data";
|
|
370
|
-
const _e = "error";
|
|
371
|
-
const _eGI = "eventGroupId";
|
|
372
|
-
const _eI = "eventId";
|
|
373
|
-
const _eIx = "executionId";
|
|
374
|
-
const _eM = "errorMessage";
|
|
375
|
-
const _eT = "eventType";
|
|
376
|
-
const _eTn = "endTime";
|
|
377
|
-
const _eTv = "eventTimestamp";
|
|
378
|
-
const _ev = "event";
|
|
379
|
-
const _eve = "events";
|
|
380
|
-
const _f = "fields";
|
|
381
|
-
const _fE = "flowExecution";
|
|
382
|
-
const _fEl = "flowExecutions";
|
|
383
|
-
const _fN = "flowName";
|
|
384
|
-
const _fP = "fieldPriority";
|
|
385
|
-
const _fT = "fileType";
|
|
386
|
-
const _fl = "flow";
|
|
387
|
-
const _flo = "flows";
|
|
388
|
-
const _h = "http";
|
|
389
|
-
const _hE = "httpError";
|
|
390
|
-
const _hQ = "httpQuery";
|
|
391
|
-
const _i = "instance";
|
|
392
|
-
const _iD = "instanceDescription";
|
|
393
|
-
const _iI = "instanceId";
|
|
394
|
-
const _iN = "instanceName";
|
|
395
|
-
const _iNF = "instanceNameFilter";
|
|
396
|
-
const _iR = "isRequired";
|
|
397
|
-
const _iSF = "instanceStateFilter";
|
|
398
|
-
const _in = "instances";
|
|
399
|
-
const _j = "job";
|
|
400
|
-
const _jI = "jobId";
|
|
401
|
-
const _k = "key";
|
|
402
|
-
const _kKA = "kmsKeyArn";
|
|
403
|
-
const _lMT = "lastModifiedTime";
|
|
404
|
-
const _lT = "loadType";
|
|
405
|
-
const _m = "message";
|
|
406
|
-
const _mR = "maxResults";
|
|
407
|
-
const _n = "name";
|
|
408
|
-
const _nT = "nextToken";
|
|
409
|
-
const _na = "namespace";
|
|
410
|
-
const _nam = "namespaces";
|
|
411
|
-
const _o = "options";
|
|
412
|
-
const _oM = "outputMetadata";
|
|
413
|
-
const _oT = "operationType";
|
|
414
|
-
const _p = "prefix";
|
|
415
|
-
const _pK = "primaryKeys";
|
|
416
|
-
const _pS = "partitionSpec";
|
|
417
|
-
const _q = "query";
|
|
418
|
-
const _rA = "resourceArn";
|
|
419
|
-
const _s = "status";
|
|
420
|
-
const _sI = "sourceInfo";
|
|
421
|
-
const _sN = "sourceName";
|
|
422
|
-
const _sO = "sortOrder";
|
|
423
|
-
const _sS = "s3Source";
|
|
424
|
-
const _sT = "startTime";
|
|
425
|
-
const _sTa = "s3Target";
|
|
426
|
-
const _sTo = "sourceType";
|
|
427
|
-
const _sTq = "sqlTransformation";
|
|
428
|
-
const _sc = "schema";
|
|
429
|
-
const _se = "server";
|
|
430
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.supplychain";
|
|
431
|
-
const _so = "sources";
|
|
432
|
-
const _st = "state";
|
|
433
|
-
const _su = "s3uri";
|
|
434
|
-
const _t = "transformation";
|
|
435
|
-
const _tK = "tagKeys";
|
|
436
|
-
const _tT = "targetType";
|
|
437
|
-
const _tTr = "transformationType";
|
|
438
|
-
const _ta = "target";
|
|
439
|
-
const _tag = "tags";
|
|
440
|
-
const _tr = "transform";
|
|
441
|
-
const _ty = "type";
|
|
442
|
-
const _vN = "versionNumber";
|
|
443
|
-
const _wADD = "webAppDnsDomain";
|
|
444
|
-
const n0 = "com.amazonaws.supplychain";
|
|
445
|
-
var DataIntegrationEventData = [0, n0, _DIED, 8, 0];
|
|
446
|
-
var DataIntegrationFlowSQLQuery = [0, n0, _DIFSQLQ, 8, 0];
|
|
447
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
448
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
449
|
-
[_m],
|
|
450
|
-
[0]
|
|
451
|
-
];
|
|
452
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
453
|
-
var BillOfMaterialsImportJob$ = [3, n0, _BOMIJ,
|
|
454
|
-
0,
|
|
455
|
-
[_iI, _jI, _s, _su, _m],
|
|
456
|
-
[0, 0, 0, 0, 0], 4
|
|
457
|
-
];
|
|
458
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
459
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
460
|
-
[_m],
|
|
461
|
-
[0]
|
|
462
|
-
];
|
|
463
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
464
|
-
var CreateBillOfMaterialsImportJobRequest$ = [3, n0, _CBOMIJR,
|
|
465
|
-
0,
|
|
466
|
-
[_iI, _su, _cT],
|
|
467
|
-
[[0, 1], 0, [0, 4]], 2
|
|
468
|
-
];
|
|
469
|
-
var CreateBillOfMaterialsImportJobResponse$ = [3, n0, _CBOMIJRr,
|
|
470
|
-
0,
|
|
471
|
-
[_jI],
|
|
472
|
-
[0], 1
|
|
473
|
-
];
|
|
474
|
-
var CreateDataIntegrationFlowRequest$ = [3, n0, _CDIFR,
|
|
475
|
-
0,
|
|
476
|
-
[_iI, _n, _so, _t, _ta, _tag],
|
|
477
|
-
[[0, 1], [0, 1], () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$, 128 | 0], 5
|
|
478
|
-
];
|
|
479
|
-
var CreateDataIntegrationFlowResponse$ = [3, n0, _CDIFRr,
|
|
480
|
-
0,
|
|
481
|
-
[_iI, _n],
|
|
482
|
-
[0, 0], 2
|
|
483
|
-
];
|
|
484
|
-
var CreateDataLakeDatasetRequest$ = [3, n0, _CDLDR,
|
|
485
|
-
0,
|
|
486
|
-
[_iI, _na, _n, _sc, _d, _pS, _tag],
|
|
487
|
-
[[0, 1], [0, 1], [0, 1], () => DataLakeDatasetSchema$, 0, () => DataLakeDatasetPartitionSpec$, 128 | 0], 3
|
|
488
|
-
];
|
|
489
|
-
var CreateDataLakeDatasetResponse$ = [3, n0, _CDLDRr,
|
|
490
|
-
0,
|
|
491
|
-
[_da],
|
|
492
|
-
[() => DataLakeDataset$], 1
|
|
493
|
-
];
|
|
494
|
-
var CreateDataLakeNamespaceRequest$ = [3, n0, _CDLNR,
|
|
495
|
-
0,
|
|
496
|
-
[_iI, _n, _d, _tag],
|
|
497
|
-
[[0, 1], [0, 1], 0, 128 | 0], 2
|
|
498
|
-
];
|
|
499
|
-
var CreateDataLakeNamespaceResponse$ = [3, n0, _CDLNRr,
|
|
500
|
-
0,
|
|
501
|
-
[_na],
|
|
502
|
-
[() => DataLakeNamespace$], 1
|
|
503
|
-
];
|
|
504
|
-
var CreateInstanceRequest$ = [3, n0, _CIR,
|
|
505
|
-
0,
|
|
506
|
-
[_iN, _iD, _kKA, _wADD, _tag, _cT],
|
|
507
|
-
[0, 0, 0, 0, 128 | 0, [0, 4]]
|
|
508
|
-
];
|
|
509
|
-
var CreateInstanceResponse$ = [3, n0, _CIRr,
|
|
510
|
-
0,
|
|
511
|
-
[_i],
|
|
512
|
-
[() => Instance$], 1
|
|
513
|
-
];
|
|
514
|
-
var DataIntegrationEvent$ = [3, n0, _DIE,
|
|
515
|
-
0,
|
|
516
|
-
[_iI, _eI, _eT, _eGI, _eTv, _dTD],
|
|
517
|
-
[0, 0, 0, 0, 4, () => DataIntegrationEventDatasetTargetDetails$], 5
|
|
518
|
-
];
|
|
519
|
-
var DataIntegrationEventDatasetLoadExecutionDetails$ = [3, n0, _DIEDLED,
|
|
520
|
-
0,
|
|
521
|
-
[_s, _m],
|
|
522
|
-
[0, 0], 1
|
|
523
|
-
];
|
|
524
|
-
var DataIntegrationEventDatasetTargetConfiguration$ = [3, n0, _DIEDTC,
|
|
525
|
-
0,
|
|
526
|
-
[_dI, _oT],
|
|
527
|
-
[0, 0], 2
|
|
528
|
-
];
|
|
529
|
-
var DataIntegrationEventDatasetTargetDetails$ = [3, n0, _DIEDTD,
|
|
530
|
-
0,
|
|
531
|
-
[_dI, _oT, _dLE],
|
|
532
|
-
[0, 0, () => DataIntegrationEventDatasetLoadExecutionDetails$], 3
|
|
533
|
-
];
|
|
534
|
-
var DataIntegrationFlow$ = [3, n0, _DIF,
|
|
535
|
-
0,
|
|
536
|
-
[_iI, _n, _so, _t, _ta, _cTr, _lMT],
|
|
537
|
-
[0, 0, () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$, 4, 4], 7
|
|
538
|
-
];
|
|
539
|
-
var DataIntegrationFlowDatasetOptions$ = [3, n0, _DIFDO,
|
|
540
|
-
0,
|
|
541
|
-
[_lT, _dR, _dS],
|
|
542
|
-
[0, 2, () => DataIntegrationFlowDedupeStrategy$]
|
|
543
|
-
];
|
|
544
|
-
var DataIntegrationFlowDatasetSource$ = [3, n0, _DIFDS,
|
|
545
|
-
0,
|
|
546
|
-
[_dI],
|
|
547
|
-
[0], 1
|
|
548
|
-
];
|
|
549
|
-
var DataIntegrationFlowDatasetSourceConfiguration$ = [3, n0, _DIFDSC,
|
|
550
|
-
0,
|
|
551
|
-
[_dI, _o],
|
|
552
|
-
[0, () => DataIntegrationFlowDatasetOptions$], 1
|
|
553
|
-
];
|
|
554
|
-
var DataIntegrationFlowDatasetTargetConfiguration$ = [3, n0, _DIFDTC,
|
|
555
|
-
0,
|
|
556
|
-
[_dI, _o],
|
|
557
|
-
[0, () => DataIntegrationFlowDatasetOptions$], 1
|
|
558
|
-
];
|
|
559
|
-
var DataIntegrationFlowDedupeStrategy$ = [3, n0, _DIFDSa,
|
|
560
|
-
0,
|
|
561
|
-
[_ty, _fP],
|
|
562
|
-
[0, () => DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$], 1
|
|
563
|
-
];
|
|
564
|
-
var DataIntegrationFlowExecution$ = [3, n0, _DIFE,
|
|
565
|
-
0,
|
|
566
|
-
[_iI, _fN, _eIx, _s, _sI, _m, _sT, _eTn, _oM],
|
|
567
|
-
[0, 0, 0, 0, () => DataIntegrationFlowExecutionSourceInfo$, 0, 4, 4, () => DataIntegrationFlowExecutionOutputMetadata$], 3
|
|
568
|
-
];
|
|
569
|
-
var DataIntegrationFlowExecutionOutputMetadata$ = [3, n0, _DIFEOM,
|
|
570
|
-
0,
|
|
571
|
-
[_dRRSURI],
|
|
572
|
-
[0]
|
|
573
|
-
];
|
|
574
|
-
var DataIntegrationFlowExecutionSourceInfo$ = [3, n0, _DIFESI,
|
|
575
|
-
0,
|
|
576
|
-
[_sTo, _sS, _dSa],
|
|
577
|
-
[0, () => DataIntegrationFlowS3Source$, () => DataIntegrationFlowDatasetSource$], 1
|
|
578
|
-
];
|
|
579
|
-
var DataIntegrationFlowFieldPriorityDedupeField$ = [3, n0, _DIFFPDF,
|
|
580
|
-
0,
|
|
581
|
-
[_n, _sO],
|
|
582
|
-
[0, 0], 2
|
|
583
|
-
];
|
|
584
|
-
var DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$ = [3, n0, _DIFFPDSC,
|
|
585
|
-
0,
|
|
586
|
-
[_f],
|
|
587
|
-
[() => DataIntegrationFlowFieldPriorityDedupeFieldList], 1
|
|
588
|
-
];
|
|
589
|
-
var DataIntegrationFlowS3Options$ = [3, n0, _DIFSO,
|
|
590
|
-
0,
|
|
591
|
-
[_fT],
|
|
592
|
-
[0]
|
|
593
|
-
];
|
|
594
|
-
var DataIntegrationFlowS3Source$ = [3, n0, _DIFSS,
|
|
595
|
-
0,
|
|
596
|
-
[_bN, _k],
|
|
597
|
-
[0, 0], 2
|
|
598
|
-
];
|
|
599
|
-
var DataIntegrationFlowS3SourceConfiguration$ = [3, n0, _DIFSSC,
|
|
600
|
-
0,
|
|
601
|
-
[_bN, _p, _o],
|
|
602
|
-
[0, 0, () => DataIntegrationFlowS3Options$], 2
|
|
603
|
-
];
|
|
604
|
-
var DataIntegrationFlowS3TargetConfiguration$ = [3, n0, _DIFSTC,
|
|
605
|
-
0,
|
|
606
|
-
[_bN, _p, _o],
|
|
607
|
-
[0, 0, () => DataIntegrationFlowS3Options$], 2
|
|
608
|
-
];
|
|
609
|
-
var DataIntegrationFlowSource$ = [3, n0, _DIFS,
|
|
610
|
-
0,
|
|
611
|
-
[_sTo, _sN, _sS, _dSa],
|
|
612
|
-
[0, 0, () => DataIntegrationFlowS3SourceConfiguration$, () => DataIntegrationFlowDatasetSourceConfiguration$], 2
|
|
613
|
-
];
|
|
614
|
-
var DataIntegrationFlowSQLTransformationConfiguration$ = [3, n0, _DIFSQLTC,
|
|
615
|
-
0,
|
|
616
|
-
[_q],
|
|
617
|
-
[[() => DataIntegrationFlowSQLQuery, 0]], 1
|
|
618
|
-
];
|
|
619
|
-
var DataIntegrationFlowTarget$ = [3, n0, _DIFT,
|
|
620
|
-
0,
|
|
621
|
-
[_tT, _sTa, _dT],
|
|
622
|
-
[0, () => DataIntegrationFlowS3TargetConfiguration$, () => DataIntegrationFlowDatasetTargetConfiguration$], 1
|
|
623
|
-
];
|
|
624
|
-
var DataIntegrationFlowTransformation$ = [3, n0, _DIFTa,
|
|
625
|
-
0,
|
|
626
|
-
[_tTr, _sTq],
|
|
627
|
-
[0, [() => DataIntegrationFlowSQLTransformationConfiguration$, 0]], 1
|
|
628
|
-
];
|
|
629
|
-
var DataLakeDataset$ = [3, n0, _DLD,
|
|
630
|
-
0,
|
|
631
|
-
[_iI, _na, _n, _a, _sc, _cTr, _lMT, _d, _pS],
|
|
632
|
-
[0, 0, 0, 0, () => DataLakeDatasetSchema$, 4, 4, 0, () => DataLakeDatasetPartitionSpec$], 7
|
|
633
|
-
];
|
|
634
|
-
var DataLakeDatasetPartitionField$ = [3, n0, _DLDPF,
|
|
635
|
-
0,
|
|
636
|
-
[_n, _tr],
|
|
637
|
-
[0, () => DataLakeDatasetPartitionFieldTransform$], 2
|
|
638
|
-
];
|
|
639
|
-
var DataLakeDatasetPartitionFieldTransform$ = [3, n0, _DLDPFT,
|
|
640
|
-
0,
|
|
641
|
-
[_ty],
|
|
642
|
-
[0], 1
|
|
643
|
-
];
|
|
644
|
-
var DataLakeDatasetPartitionSpec$ = [3, n0, _DLDPS,
|
|
645
|
-
0,
|
|
646
|
-
[_f],
|
|
647
|
-
[() => DataLakeDatasetPartitionFieldList], 1
|
|
648
|
-
];
|
|
649
|
-
var DataLakeDatasetPrimaryKeyField$ = [3, n0, _DLDPKF,
|
|
650
|
-
0,
|
|
651
|
-
[_n],
|
|
652
|
-
[0], 1
|
|
653
|
-
];
|
|
654
|
-
var DataLakeDatasetSchema$ = [3, n0, _DLDS,
|
|
655
|
-
0,
|
|
656
|
-
[_n, _f, _pK],
|
|
657
|
-
[0, () => DataLakeDatasetSchemaFieldList, () => DataLakeDatasetPrimaryKeyFieldList], 2
|
|
658
|
-
];
|
|
659
|
-
var DataLakeDatasetSchemaField$ = [3, n0, _DLDSF,
|
|
660
|
-
0,
|
|
661
|
-
[_n, _ty, _iR],
|
|
662
|
-
[0, 0, 2], 3
|
|
663
|
-
];
|
|
664
|
-
var DataLakeNamespace$ = [3, n0, _DLN,
|
|
665
|
-
0,
|
|
666
|
-
[_iI, _n, _a, _cTr, _lMT, _d],
|
|
667
|
-
[0, 0, 0, 4, 4, 0], 5
|
|
668
|
-
];
|
|
669
|
-
var DeleteDataIntegrationFlowRequest$ = [3, n0, _DDIFR,
|
|
670
|
-
0,
|
|
671
|
-
[_iI, _n],
|
|
672
|
-
[[0, 1], [0, 1]], 2
|
|
673
|
-
];
|
|
674
|
-
var DeleteDataIntegrationFlowResponse$ = [3, n0, _DDIFRe,
|
|
675
|
-
0,
|
|
676
|
-
[_iI, _n],
|
|
677
|
-
[0, 0], 2
|
|
678
|
-
];
|
|
679
|
-
var DeleteDataLakeDatasetRequest$ = [3, n0, _DDLDR,
|
|
680
|
-
0,
|
|
681
|
-
[_iI, _na, _n],
|
|
682
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
683
|
-
];
|
|
684
|
-
var DeleteDataLakeDatasetResponse$ = [3, n0, _DDLDRe,
|
|
685
|
-
0,
|
|
686
|
-
[_iI, _na, _n],
|
|
687
|
-
[0, 0, 0], 3
|
|
688
|
-
];
|
|
689
|
-
var DeleteDataLakeNamespaceRequest$ = [3, n0, _DDLNR,
|
|
690
|
-
0,
|
|
691
|
-
[_iI, _n],
|
|
692
|
-
[[0, 1], [0, 1]], 2
|
|
693
|
-
];
|
|
694
|
-
var DeleteDataLakeNamespaceResponse$ = [3, n0, _DDLNRe,
|
|
695
|
-
0,
|
|
696
|
-
[_iI, _n],
|
|
697
|
-
[0, 0], 2
|
|
698
|
-
];
|
|
699
|
-
var DeleteInstanceRequest$ = [3, n0, _DIR,
|
|
700
|
-
0,
|
|
701
|
-
[_iI],
|
|
702
|
-
[[0, 1]], 1
|
|
703
|
-
];
|
|
704
|
-
var DeleteInstanceResponse$ = [3, n0, _DIRe,
|
|
705
|
-
0,
|
|
706
|
-
[_i],
|
|
707
|
-
[() => Instance$], 1
|
|
708
|
-
];
|
|
709
|
-
var GetBillOfMaterialsImportJobRequest$ = [3, n0, _GBOMIJR,
|
|
710
|
-
0,
|
|
711
|
-
[_iI, _jI],
|
|
712
|
-
[[0, 1], [0, 1]], 2
|
|
713
|
-
];
|
|
714
|
-
var GetBillOfMaterialsImportJobResponse$ = [3, n0, _GBOMIJRe,
|
|
715
|
-
0,
|
|
716
|
-
[_j],
|
|
717
|
-
[() => BillOfMaterialsImportJob$], 1
|
|
718
|
-
];
|
|
719
|
-
var GetDataIntegrationEventRequest$ = [3, n0, _GDIER,
|
|
720
|
-
0,
|
|
721
|
-
[_iI, _eI],
|
|
722
|
-
[[0, 1], [0, 1]], 2
|
|
723
|
-
];
|
|
724
|
-
var GetDataIntegrationEventResponse$ = [3, n0, _GDIERe,
|
|
725
|
-
0,
|
|
726
|
-
[_ev],
|
|
727
|
-
[() => DataIntegrationEvent$], 1
|
|
728
|
-
];
|
|
729
|
-
var GetDataIntegrationFlowExecutionRequest$ = [3, n0, _GDIFER,
|
|
730
|
-
0,
|
|
731
|
-
[_iI, _fN, _eIx],
|
|
732
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
733
|
-
];
|
|
734
|
-
var GetDataIntegrationFlowExecutionResponse$ = [3, n0, _GDIFERe,
|
|
735
|
-
0,
|
|
736
|
-
[_fE],
|
|
737
|
-
[() => DataIntegrationFlowExecution$], 1
|
|
738
|
-
];
|
|
739
|
-
var GetDataIntegrationFlowRequest$ = [3, n0, _GDIFR,
|
|
740
|
-
0,
|
|
741
|
-
[_iI, _n],
|
|
742
|
-
[[0, 1], [0, 1]], 2
|
|
743
|
-
];
|
|
744
|
-
var GetDataIntegrationFlowResponse$ = [3, n0, _GDIFRe,
|
|
745
|
-
0,
|
|
746
|
-
[_fl],
|
|
747
|
-
[[() => DataIntegrationFlow$, 0]], 1
|
|
748
|
-
];
|
|
749
|
-
var GetDataLakeDatasetRequest$ = [3, n0, _GDLDR,
|
|
750
|
-
0,
|
|
751
|
-
[_iI, _na, _n],
|
|
752
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
753
|
-
];
|
|
754
|
-
var GetDataLakeDatasetResponse$ = [3, n0, _GDLDRe,
|
|
755
|
-
0,
|
|
756
|
-
[_da],
|
|
757
|
-
[() => DataLakeDataset$], 1
|
|
758
|
-
];
|
|
759
|
-
var GetDataLakeNamespaceRequest$ = [3, n0, _GDLNR,
|
|
760
|
-
0,
|
|
761
|
-
[_iI, _n],
|
|
762
|
-
[[0, 1], [0, 1]], 2
|
|
763
|
-
];
|
|
764
|
-
var GetDataLakeNamespaceResponse$ = [3, n0, _GDLNRe,
|
|
765
|
-
0,
|
|
766
|
-
[_na],
|
|
767
|
-
[() => DataLakeNamespace$], 1
|
|
768
|
-
];
|
|
769
|
-
var GetInstanceRequest$ = [3, n0, _GIR,
|
|
770
|
-
0,
|
|
771
|
-
[_iI],
|
|
772
|
-
[[0, 1]], 1
|
|
773
|
-
];
|
|
774
|
-
var GetInstanceResponse$ = [3, n0, _GIRe,
|
|
775
|
-
0,
|
|
776
|
-
[_i],
|
|
777
|
-
[() => Instance$], 1
|
|
778
|
-
];
|
|
779
|
-
var Instance$ = [3, n0, _I,
|
|
780
|
-
0,
|
|
781
|
-
[_iI, _aAI, _st, _eM, _wADD, _cTr, _lMT, _iN, _iD, _kKA, _vN],
|
|
782
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1], 3
|
|
783
|
-
];
|
|
784
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
785
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
786
|
-
[_m],
|
|
787
|
-
[0]
|
|
788
|
-
];
|
|
789
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
790
|
-
var ListDataIntegrationEventsRequest$ = [3, n0, _LDIER,
|
|
791
|
-
0,
|
|
792
|
-
[_iI, _eT, _nT, _mR],
|
|
793
|
-
[[0, 1], [0, { [_hQ]: _eT }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
794
|
-
];
|
|
795
|
-
var ListDataIntegrationEventsResponse$ = [3, n0, _LDIERi,
|
|
796
|
-
0,
|
|
797
|
-
[_eve, _nT],
|
|
798
|
-
[() => DataIntegrationEventList, 0], 1
|
|
799
|
-
];
|
|
800
|
-
var ListDataIntegrationFlowExecutionsRequest$ = [3, n0, _LDIFER,
|
|
801
|
-
0,
|
|
802
|
-
[_iI, _fN, _nT, _mR],
|
|
803
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
804
|
-
];
|
|
805
|
-
var ListDataIntegrationFlowExecutionsResponse$ = [3, n0, _LDIFERi,
|
|
806
|
-
0,
|
|
807
|
-
[_fEl, _nT],
|
|
808
|
-
[() => DataIntegrationFlowExecutionList, 0], 1
|
|
809
|
-
];
|
|
810
|
-
var ListDataIntegrationFlowsRequest$ = [3, n0, _LDIFR,
|
|
811
|
-
0,
|
|
812
|
-
[_iI, _nT, _mR],
|
|
813
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
814
|
-
];
|
|
815
|
-
var ListDataIntegrationFlowsResponse$ = [3, n0, _LDIFRi,
|
|
816
|
-
0,
|
|
817
|
-
[_flo, _nT],
|
|
818
|
-
[[() => DataIntegrationFlowList, 0], 0], 1
|
|
819
|
-
];
|
|
820
|
-
var ListDataLakeDatasetsRequest$ = [3, n0, _LDLDR,
|
|
821
|
-
0,
|
|
822
|
-
[_iI, _na, _nT, _mR],
|
|
823
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
824
|
-
];
|
|
825
|
-
var ListDataLakeDatasetsResponse$ = [3, n0, _LDLDRi,
|
|
826
|
-
0,
|
|
827
|
-
[_dat, _nT],
|
|
828
|
-
[() => DataLakeDatasetList, 0], 1
|
|
829
|
-
];
|
|
830
|
-
var ListDataLakeNamespacesRequest$ = [3, n0, _LDLNR,
|
|
831
|
-
0,
|
|
832
|
-
[_iI, _nT, _mR],
|
|
833
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
834
|
-
];
|
|
835
|
-
var ListDataLakeNamespacesResponse$ = [3, n0, _LDLNRi,
|
|
836
|
-
0,
|
|
837
|
-
[_nam, _nT],
|
|
838
|
-
[() => DataLakeNamespaceList, 0], 1
|
|
839
|
-
];
|
|
840
|
-
var ListInstancesRequest$ = [3, n0, _LIR,
|
|
841
|
-
0,
|
|
842
|
-
[_nT, _mR, _iNF, _iSF],
|
|
843
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _iNF }], [64 | 0, { [_hQ]: _iSF }]]
|
|
844
|
-
];
|
|
845
|
-
var ListInstancesResponse$ = [3, n0, _LIRi,
|
|
846
|
-
0,
|
|
847
|
-
[_in, _nT],
|
|
848
|
-
[() => InstanceList, 0], 1
|
|
849
|
-
];
|
|
850
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
851
|
-
0,
|
|
852
|
-
[_rA],
|
|
853
|
-
[[0, 1]], 1
|
|
854
|
-
];
|
|
855
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
856
|
-
0,
|
|
857
|
-
[_tag],
|
|
858
|
-
[128 | 0], 1
|
|
859
|
-
];
|
|
860
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
861
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
862
|
-
[_m],
|
|
863
|
-
[0]
|
|
864
|
-
];
|
|
865
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
866
|
-
var SendDataIntegrationEventRequest$ = [3, n0, _SDIER,
|
|
867
|
-
0,
|
|
868
|
-
[_iI, _eT, _data, _eGI, _eTv, _cT, _dT],
|
|
869
|
-
[[0, 1], 0, [() => DataIntegrationEventData, 0], 0, 7, [0, 4], () => DataIntegrationEventDatasetTargetConfiguration$], 4
|
|
870
|
-
];
|
|
871
|
-
var SendDataIntegrationEventResponse$ = [3, n0, _SDIERe,
|
|
872
|
-
0,
|
|
873
|
-
[_eI],
|
|
874
|
-
[0], 1
|
|
875
|
-
];
|
|
876
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
877
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
878
|
-
[_m],
|
|
879
|
-
[0]
|
|
880
|
-
];
|
|
881
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
882
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
883
|
-
0,
|
|
884
|
-
[_rA, _tag],
|
|
885
|
-
[[0, 1], 128 | 0], 2
|
|
886
|
-
];
|
|
887
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
888
|
-
0,
|
|
889
|
-
[],
|
|
890
|
-
[]
|
|
891
|
-
];
|
|
892
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
893
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
894
|
-
[_m],
|
|
895
|
-
[0]
|
|
896
|
-
];
|
|
897
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
898
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
899
|
-
0,
|
|
900
|
-
[_rA, _tK],
|
|
901
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
902
|
-
];
|
|
903
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
904
|
-
0,
|
|
905
|
-
[],
|
|
906
|
-
[]
|
|
907
|
-
];
|
|
908
|
-
var UpdateDataIntegrationFlowRequest$ = [3, n0, _UDIFR,
|
|
909
|
-
0,
|
|
910
|
-
[_iI, _n, _so, _t, _ta],
|
|
911
|
-
[[0, 1], [0, 1], () => DataIntegrationFlowSourceList, [() => DataIntegrationFlowTransformation$, 0], () => DataIntegrationFlowTarget$], 2
|
|
912
|
-
];
|
|
913
|
-
var UpdateDataIntegrationFlowResponse$ = [3, n0, _UDIFRp,
|
|
914
|
-
0,
|
|
915
|
-
[_fl],
|
|
916
|
-
[[() => DataIntegrationFlow$, 0]], 1
|
|
917
|
-
];
|
|
918
|
-
var UpdateDataLakeDatasetRequest$ = [3, n0, _UDLDR,
|
|
919
|
-
0,
|
|
920
|
-
[_iI, _na, _n, _d],
|
|
921
|
-
[[0, 1], [0, 1], [0, 1], 0], 3
|
|
922
|
-
];
|
|
923
|
-
var UpdateDataLakeDatasetResponse$ = [3, n0, _UDLDRp,
|
|
924
|
-
0,
|
|
925
|
-
[_da],
|
|
926
|
-
[() => DataLakeDataset$], 1
|
|
927
|
-
];
|
|
928
|
-
var UpdateDataLakeNamespaceRequest$ = [3, n0, _UDLNR,
|
|
929
|
-
0,
|
|
930
|
-
[_iI, _n, _d],
|
|
931
|
-
[[0, 1], [0, 1], 0], 2
|
|
932
|
-
];
|
|
933
|
-
var UpdateDataLakeNamespaceResponse$ = [3, n0, _UDLNRp,
|
|
934
|
-
0,
|
|
935
|
-
[_na],
|
|
936
|
-
[() => DataLakeNamespace$], 1
|
|
937
|
-
];
|
|
938
|
-
var UpdateInstanceRequest$ = [3, n0, _UIR,
|
|
939
|
-
0,
|
|
940
|
-
[_iI, _iN, _iD],
|
|
941
|
-
[[0, 1], 0, 0], 1
|
|
942
|
-
];
|
|
943
|
-
var UpdateInstanceResponse$ = [3, n0, _UIRp,
|
|
944
|
-
0,
|
|
945
|
-
[_i],
|
|
946
|
-
[() => Instance$], 1
|
|
947
|
-
];
|
|
948
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
949
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
950
|
-
[_m],
|
|
951
|
-
[0]
|
|
952
|
-
];
|
|
953
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
954
|
-
var SupplyChainServiceException$ = [-3, _sm, "SupplyChainServiceException", 0, [], []];
|
|
955
|
-
schema.TypeRegistry.for(_sm).registerError(SupplyChainServiceException$, SupplyChainServiceException);
|
|
956
|
-
var DataIntegrationEventList = [1, n0, _DIEL,
|
|
957
|
-
0, () => DataIntegrationEvent$
|
|
958
|
-
];
|
|
959
|
-
var DataIntegrationFlowExecutionList = [1, n0, _DIFEL,
|
|
960
|
-
0, () => DataIntegrationFlowExecution$
|
|
961
|
-
];
|
|
962
|
-
var DataIntegrationFlowFieldPriorityDedupeFieldList = [1, n0, _DIFFPDFL,
|
|
963
|
-
0, () => DataIntegrationFlowFieldPriorityDedupeField$
|
|
964
|
-
];
|
|
965
|
-
var DataIntegrationFlowList = [1, n0, _DIFL,
|
|
966
|
-
0, [() => DataIntegrationFlow$,
|
|
967
|
-
0]
|
|
968
|
-
];
|
|
969
|
-
var DataIntegrationFlowSourceList = [1, n0, _DIFSL,
|
|
970
|
-
0, () => DataIntegrationFlowSource$
|
|
971
|
-
];
|
|
972
|
-
var DataLakeDatasetList = [1, n0, _DLDL,
|
|
973
|
-
0, () => DataLakeDataset$
|
|
974
|
-
];
|
|
975
|
-
var DataLakeDatasetPartitionFieldList = [1, n0, _DLDPFL,
|
|
976
|
-
0, () => DataLakeDatasetPartitionField$
|
|
977
|
-
];
|
|
978
|
-
var DataLakeDatasetPrimaryKeyFieldList = [1, n0, _DLDPKFL,
|
|
979
|
-
0, () => DataLakeDatasetPrimaryKeyField$
|
|
980
|
-
];
|
|
981
|
-
var DataLakeDatasetSchemaFieldList = [1, n0, _DLDSFL,
|
|
982
|
-
0, () => DataLakeDatasetSchemaField$
|
|
983
|
-
];
|
|
984
|
-
var DataLakeNamespaceList = [1, n0, _DLNL,
|
|
985
|
-
0, () => DataLakeNamespace$
|
|
986
|
-
];
|
|
987
|
-
var InstanceList = [1, n0, _IL,
|
|
988
|
-
0, () => Instance$
|
|
989
|
-
];
|
|
990
|
-
var CreateBillOfMaterialsImportJob$ = [9, n0, _CBOMIJ,
|
|
991
|
-
{ [_h]: ["POST", "/api/configuration/instances/{instanceId}/bill-of-materials-import-jobs", 200] }, () => CreateBillOfMaterialsImportJobRequest$, () => CreateBillOfMaterialsImportJobResponse$
|
|
992
|
-
];
|
|
993
|
-
var CreateDataIntegrationFlow$ = [9, n0, _CDIF,
|
|
994
|
-
{ [_h]: ["PUT", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => CreateDataIntegrationFlowRequest$, () => CreateDataIntegrationFlowResponse$
|
|
995
|
-
];
|
|
996
|
-
var CreateDataLakeDataset$ = [9, n0, _CDLD,
|
|
997
|
-
{ [_h]: ["PUT", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => CreateDataLakeDatasetRequest$, () => CreateDataLakeDatasetResponse$
|
|
998
|
-
];
|
|
999
|
-
var CreateDataLakeNamespace$ = [9, n0, _CDLN,
|
|
1000
|
-
{ [_h]: ["PUT", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => CreateDataLakeNamespaceRequest$, () => CreateDataLakeNamespaceResponse$
|
|
1001
|
-
];
|
|
1002
|
-
var CreateInstance$ = [9, n0, _CI,
|
|
1003
|
-
{ [_h]: ["POST", "/api/instance", 200] }, () => CreateInstanceRequest$, () => CreateInstanceResponse$
|
|
1004
|
-
];
|
|
1005
|
-
var DeleteDataIntegrationFlow$ = [9, n0, _DDIF,
|
|
1006
|
-
{ [_h]: ["DELETE", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => DeleteDataIntegrationFlowRequest$, () => DeleteDataIntegrationFlowResponse$
|
|
1007
|
-
];
|
|
1008
|
-
var DeleteDataLakeDataset$ = [9, n0, _DDLD,
|
|
1009
|
-
{ [_h]: ["DELETE", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => DeleteDataLakeDatasetRequest$, () => DeleteDataLakeDatasetResponse$
|
|
1010
|
-
];
|
|
1011
|
-
var DeleteDataLakeNamespace$ = [9, n0, _DDLN,
|
|
1012
|
-
{ [_h]: ["DELETE", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => DeleteDataLakeNamespaceRequest$, () => DeleteDataLakeNamespaceResponse$
|
|
1013
|
-
];
|
|
1014
|
-
var DeleteInstance$ = [9, n0, _DI,
|
|
1015
|
-
{ [_h]: ["DELETE", "/api/instance/{instanceId}", 200] }, () => DeleteInstanceRequest$, () => DeleteInstanceResponse$
|
|
1016
|
-
];
|
|
1017
|
-
var GetBillOfMaterialsImportJob$ = [9, n0, _GBOMIJ,
|
|
1018
|
-
{ [_h]: ["GET", "/api/configuration/instances/{instanceId}/bill-of-materials-import-jobs/{jobId}", 200] }, () => GetBillOfMaterialsImportJobRequest$, () => GetBillOfMaterialsImportJobResponse$
|
|
1019
|
-
];
|
|
1020
|
-
var GetDataIntegrationEvent$ = [9, n0, _GDIE,
|
|
1021
|
-
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-events/{eventId}", 200] }, () => GetDataIntegrationEventRequest$, () => GetDataIntegrationEventResponse$
|
|
1022
|
-
];
|
|
1023
|
-
var GetDataIntegrationFlow$ = [9, n0, _GDIF,
|
|
1024
|
-
{ [_h]: ["GET", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => GetDataIntegrationFlowRequest$, () => GetDataIntegrationFlowResponse$
|
|
1025
|
-
];
|
|
1026
|
-
var GetDataIntegrationFlowExecution$ = [9, n0, _GDIFE,
|
|
1027
|
-
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-flows/{flowName}/executions/{executionId}", 200] }, () => GetDataIntegrationFlowExecutionRequest$, () => GetDataIntegrationFlowExecutionResponse$
|
|
1028
|
-
];
|
|
1029
|
-
var GetDataLakeDataset$ = [9, n0, _GDLD,
|
|
1030
|
-
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => GetDataLakeDatasetRequest$, () => GetDataLakeDatasetResponse$
|
|
1031
|
-
];
|
|
1032
|
-
var GetDataLakeNamespace$ = [9, n0, _GDLN,
|
|
1033
|
-
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => GetDataLakeNamespaceRequest$, () => GetDataLakeNamespaceResponse$
|
|
1034
|
-
];
|
|
1035
|
-
var GetInstance$ = [9, n0, _GI,
|
|
1036
|
-
{ [_h]: ["GET", "/api/instance/{instanceId}", 200] }, () => GetInstanceRequest$, () => GetInstanceResponse$
|
|
1037
|
-
];
|
|
1038
|
-
var ListDataIntegrationEvents$ = [9, n0, _LDIE,
|
|
1039
|
-
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-events", 200] }, () => ListDataIntegrationEventsRequest$, () => ListDataIntegrationEventsResponse$
|
|
1040
|
-
];
|
|
1041
|
-
var ListDataIntegrationFlowExecutions$ = [9, n0, _LDIFE,
|
|
1042
|
-
{ [_h]: ["GET", "/api-data/data-integration/instance/{instanceId}/data-integration-flows/{flowName}/executions", 200] }, () => ListDataIntegrationFlowExecutionsRequest$, () => ListDataIntegrationFlowExecutionsResponse$
|
|
1043
|
-
];
|
|
1044
|
-
var ListDataIntegrationFlows$ = [9, n0, _LDIF,
|
|
1045
|
-
{ [_h]: ["GET", "/api/data-integration/instance/{instanceId}/data-integration-flows", 200] }, () => ListDataIntegrationFlowsRequest$, () => ListDataIntegrationFlowsResponse$
|
|
1046
|
-
];
|
|
1047
|
-
var ListDataLakeDatasets$ = [9, n0, _LDLD,
|
|
1048
|
-
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets", 200] }, () => ListDataLakeDatasetsRequest$, () => ListDataLakeDatasetsResponse$
|
|
1049
|
-
];
|
|
1050
|
-
var ListDataLakeNamespaces$ = [9, n0, _LDLN,
|
|
1051
|
-
{ [_h]: ["GET", "/api/datalake/instance/{instanceId}/namespaces", 200] }, () => ListDataLakeNamespacesRequest$, () => ListDataLakeNamespacesResponse$
|
|
1052
|
-
];
|
|
1053
|
-
var ListInstances$ = [9, n0, _LI,
|
|
1054
|
-
{ [_h]: ["GET", "/api/instance", 200] }, () => ListInstancesRequest$, () => ListInstancesResponse$
|
|
1055
|
-
];
|
|
1056
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1057
|
-
{ [_h]: ["GET", "/api/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1058
|
-
];
|
|
1059
|
-
var SendDataIntegrationEvent$ = [9, n0, _SDIE,
|
|
1060
|
-
{ [_h]: ["POST", "/api-data/data-integration/instance/{instanceId}/data-integration-events", 200] }, () => SendDataIntegrationEventRequest$, () => SendDataIntegrationEventResponse$
|
|
1061
|
-
];
|
|
1062
|
-
var TagResource$ = [9, n0, _TR,
|
|
1063
|
-
{ [_h]: ["POST", "/api/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1064
|
-
];
|
|
1065
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1066
|
-
{ [_h]: ["DELETE", "/api/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1067
|
-
];
|
|
1068
|
-
var UpdateDataIntegrationFlow$ = [9, n0, _UDIF,
|
|
1069
|
-
{ [_h]: ["PATCH", "/api/data-integration/instance/{instanceId}/data-integration-flows/{name}", 200] }, () => UpdateDataIntegrationFlowRequest$, () => UpdateDataIntegrationFlowResponse$
|
|
1070
|
-
];
|
|
1071
|
-
var UpdateDataLakeDataset$ = [9, n0, _UDLD,
|
|
1072
|
-
{ [_h]: ["PATCH", "/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}", 200] }, () => UpdateDataLakeDatasetRequest$, () => UpdateDataLakeDatasetResponse$
|
|
1073
|
-
];
|
|
1074
|
-
var UpdateDataLakeNamespace$ = [9, n0, _UDLN,
|
|
1075
|
-
{ [_h]: ["PATCH", "/api/datalake/instance/{instanceId}/namespaces/{name}", 200] }, () => UpdateDataLakeNamespaceRequest$, () => UpdateDataLakeNamespaceResponse$
|
|
1076
|
-
];
|
|
1077
|
-
var UpdateInstance$ = [9, n0, _UI,
|
|
1078
|
-
{ [_h]: ["PATCH", "/api/instance/{instanceId}", 200] }, () => UpdateInstanceRequest$, () => UpdateInstanceResponse$
|
|
1079
|
-
];
|
|
1080
|
-
|
|
1081
116
|
class CreateBillOfMaterialsImportJobCommand extends smithyClient.Command
|
|
1082
117
|
.classBuilder()
|
|
1083
118
|
.ep(commonParams)
|
|
@@ -1086,7 +121,7 @@ class CreateBillOfMaterialsImportJobCommand extends smithyClient.Command
|
|
|
1086
121
|
})
|
|
1087
122
|
.s("GalaxyPublicAPIGateway", "CreateBillOfMaterialsImportJob", {})
|
|
1088
123
|
.n("SupplyChainClient", "CreateBillOfMaterialsImportJobCommand")
|
|
1089
|
-
.sc(CreateBillOfMaterialsImportJob$)
|
|
124
|
+
.sc(schemas_0.CreateBillOfMaterialsImportJob$)
|
|
1090
125
|
.build() {
|
|
1091
126
|
}
|
|
1092
127
|
|
|
@@ -1098,7 +133,7 @@ class CreateDataIntegrationFlowCommand extends smithyClient.Command
|
|
|
1098
133
|
})
|
|
1099
134
|
.s("GalaxyPublicAPIGateway", "CreateDataIntegrationFlow", {})
|
|
1100
135
|
.n("SupplyChainClient", "CreateDataIntegrationFlowCommand")
|
|
1101
|
-
.sc(CreateDataIntegrationFlow$)
|
|
136
|
+
.sc(schemas_0.CreateDataIntegrationFlow$)
|
|
1102
137
|
.build() {
|
|
1103
138
|
}
|
|
1104
139
|
|
|
@@ -1110,7 +145,7 @@ class CreateDataLakeDatasetCommand extends smithyClient.Command
|
|
|
1110
145
|
})
|
|
1111
146
|
.s("GalaxyPublicAPIGateway", "CreateDataLakeDataset", {})
|
|
1112
147
|
.n("SupplyChainClient", "CreateDataLakeDatasetCommand")
|
|
1113
|
-
.sc(CreateDataLakeDataset$)
|
|
148
|
+
.sc(schemas_0.CreateDataLakeDataset$)
|
|
1114
149
|
.build() {
|
|
1115
150
|
}
|
|
1116
151
|
|
|
@@ -1122,7 +157,7 @@ class CreateDataLakeNamespaceCommand extends smithyClient.Command
|
|
|
1122
157
|
})
|
|
1123
158
|
.s("GalaxyPublicAPIGateway", "CreateDataLakeNamespace", {})
|
|
1124
159
|
.n("SupplyChainClient", "CreateDataLakeNamespaceCommand")
|
|
1125
|
-
.sc(CreateDataLakeNamespace$)
|
|
160
|
+
.sc(schemas_0.CreateDataLakeNamespace$)
|
|
1126
161
|
.build() {
|
|
1127
162
|
}
|
|
1128
163
|
|
|
@@ -1134,7 +169,7 @@ class CreateInstanceCommand extends smithyClient.Command
|
|
|
1134
169
|
})
|
|
1135
170
|
.s("GalaxyPublicAPIGateway", "CreateInstance", {})
|
|
1136
171
|
.n("SupplyChainClient", "CreateInstanceCommand")
|
|
1137
|
-
.sc(CreateInstance$)
|
|
172
|
+
.sc(schemas_0.CreateInstance$)
|
|
1138
173
|
.build() {
|
|
1139
174
|
}
|
|
1140
175
|
|
|
@@ -1146,7 +181,7 @@ class DeleteDataIntegrationFlowCommand extends smithyClient.Command
|
|
|
1146
181
|
})
|
|
1147
182
|
.s("GalaxyPublicAPIGateway", "DeleteDataIntegrationFlow", {})
|
|
1148
183
|
.n("SupplyChainClient", "DeleteDataIntegrationFlowCommand")
|
|
1149
|
-
.sc(DeleteDataIntegrationFlow$)
|
|
184
|
+
.sc(schemas_0.DeleteDataIntegrationFlow$)
|
|
1150
185
|
.build() {
|
|
1151
186
|
}
|
|
1152
187
|
|
|
@@ -1158,7 +193,7 @@ class DeleteDataLakeDatasetCommand extends smithyClient.Command
|
|
|
1158
193
|
})
|
|
1159
194
|
.s("GalaxyPublicAPIGateway", "DeleteDataLakeDataset", {})
|
|
1160
195
|
.n("SupplyChainClient", "DeleteDataLakeDatasetCommand")
|
|
1161
|
-
.sc(DeleteDataLakeDataset$)
|
|
196
|
+
.sc(schemas_0.DeleteDataLakeDataset$)
|
|
1162
197
|
.build() {
|
|
1163
198
|
}
|
|
1164
199
|
|
|
@@ -1170,7 +205,7 @@ class DeleteDataLakeNamespaceCommand extends smithyClient.Command
|
|
|
1170
205
|
})
|
|
1171
206
|
.s("GalaxyPublicAPIGateway", "DeleteDataLakeNamespace", {})
|
|
1172
207
|
.n("SupplyChainClient", "DeleteDataLakeNamespaceCommand")
|
|
1173
|
-
.sc(DeleteDataLakeNamespace$)
|
|
208
|
+
.sc(schemas_0.DeleteDataLakeNamespace$)
|
|
1174
209
|
.build() {
|
|
1175
210
|
}
|
|
1176
211
|
|
|
@@ -1182,7 +217,7 @@ class DeleteInstanceCommand extends smithyClient.Command
|
|
|
1182
217
|
})
|
|
1183
218
|
.s("GalaxyPublicAPIGateway", "DeleteInstance", {})
|
|
1184
219
|
.n("SupplyChainClient", "DeleteInstanceCommand")
|
|
1185
|
-
.sc(DeleteInstance$)
|
|
220
|
+
.sc(schemas_0.DeleteInstance$)
|
|
1186
221
|
.build() {
|
|
1187
222
|
}
|
|
1188
223
|
|
|
@@ -1194,7 +229,7 @@ class GetBillOfMaterialsImportJobCommand extends smithyClient.Command
|
|
|
1194
229
|
})
|
|
1195
230
|
.s("GalaxyPublicAPIGateway", "GetBillOfMaterialsImportJob", {})
|
|
1196
231
|
.n("SupplyChainClient", "GetBillOfMaterialsImportJobCommand")
|
|
1197
|
-
.sc(GetBillOfMaterialsImportJob$)
|
|
232
|
+
.sc(schemas_0.GetBillOfMaterialsImportJob$)
|
|
1198
233
|
.build() {
|
|
1199
234
|
}
|
|
1200
235
|
|
|
@@ -1206,7 +241,7 @@ class GetDataIntegrationEventCommand extends smithyClient.Command
|
|
|
1206
241
|
})
|
|
1207
242
|
.s("GalaxyPublicAPIGateway", "GetDataIntegrationEvent", {})
|
|
1208
243
|
.n("SupplyChainClient", "GetDataIntegrationEventCommand")
|
|
1209
|
-
.sc(GetDataIntegrationEvent$)
|
|
244
|
+
.sc(schemas_0.GetDataIntegrationEvent$)
|
|
1210
245
|
.build() {
|
|
1211
246
|
}
|
|
1212
247
|
|
|
@@ -1218,7 +253,7 @@ class GetDataIntegrationFlowCommand extends smithyClient.Command
|
|
|
1218
253
|
})
|
|
1219
254
|
.s("GalaxyPublicAPIGateway", "GetDataIntegrationFlow", {})
|
|
1220
255
|
.n("SupplyChainClient", "GetDataIntegrationFlowCommand")
|
|
1221
|
-
.sc(GetDataIntegrationFlow$)
|
|
256
|
+
.sc(schemas_0.GetDataIntegrationFlow$)
|
|
1222
257
|
.build() {
|
|
1223
258
|
}
|
|
1224
259
|
|
|
@@ -1230,7 +265,7 @@ class GetDataIntegrationFlowExecutionCommand extends smithyClient.Command
|
|
|
1230
265
|
})
|
|
1231
266
|
.s("GalaxyPublicAPIGateway", "GetDataIntegrationFlowExecution", {})
|
|
1232
267
|
.n("SupplyChainClient", "GetDataIntegrationFlowExecutionCommand")
|
|
1233
|
-
.sc(GetDataIntegrationFlowExecution$)
|
|
268
|
+
.sc(schemas_0.GetDataIntegrationFlowExecution$)
|
|
1234
269
|
.build() {
|
|
1235
270
|
}
|
|
1236
271
|
|
|
@@ -1242,7 +277,7 @@ class GetDataLakeDatasetCommand extends smithyClient.Command
|
|
|
1242
277
|
})
|
|
1243
278
|
.s("GalaxyPublicAPIGateway", "GetDataLakeDataset", {})
|
|
1244
279
|
.n("SupplyChainClient", "GetDataLakeDatasetCommand")
|
|
1245
|
-
.sc(GetDataLakeDataset$)
|
|
280
|
+
.sc(schemas_0.GetDataLakeDataset$)
|
|
1246
281
|
.build() {
|
|
1247
282
|
}
|
|
1248
283
|
|
|
@@ -1254,7 +289,7 @@ class GetDataLakeNamespaceCommand extends smithyClient.Command
|
|
|
1254
289
|
})
|
|
1255
290
|
.s("GalaxyPublicAPIGateway", "GetDataLakeNamespace", {})
|
|
1256
291
|
.n("SupplyChainClient", "GetDataLakeNamespaceCommand")
|
|
1257
|
-
.sc(GetDataLakeNamespace$)
|
|
292
|
+
.sc(schemas_0.GetDataLakeNamespace$)
|
|
1258
293
|
.build() {
|
|
1259
294
|
}
|
|
1260
295
|
|
|
@@ -1266,7 +301,7 @@ class GetInstanceCommand extends smithyClient.Command
|
|
|
1266
301
|
})
|
|
1267
302
|
.s("GalaxyPublicAPIGateway", "GetInstance", {})
|
|
1268
303
|
.n("SupplyChainClient", "GetInstanceCommand")
|
|
1269
|
-
.sc(GetInstance$)
|
|
304
|
+
.sc(schemas_0.GetInstance$)
|
|
1270
305
|
.build() {
|
|
1271
306
|
}
|
|
1272
307
|
|
|
@@ -1278,7 +313,7 @@ class ListDataIntegrationEventsCommand extends smithyClient.Command
|
|
|
1278
313
|
})
|
|
1279
314
|
.s("GalaxyPublicAPIGateway", "ListDataIntegrationEvents", {})
|
|
1280
315
|
.n("SupplyChainClient", "ListDataIntegrationEventsCommand")
|
|
1281
|
-
.sc(ListDataIntegrationEvents$)
|
|
316
|
+
.sc(schemas_0.ListDataIntegrationEvents$)
|
|
1282
317
|
.build() {
|
|
1283
318
|
}
|
|
1284
319
|
|
|
@@ -1290,7 +325,7 @@ class ListDataIntegrationFlowExecutionsCommand extends smithyClient.Command
|
|
|
1290
325
|
})
|
|
1291
326
|
.s("GalaxyPublicAPIGateway", "ListDataIntegrationFlowExecutions", {})
|
|
1292
327
|
.n("SupplyChainClient", "ListDataIntegrationFlowExecutionsCommand")
|
|
1293
|
-
.sc(ListDataIntegrationFlowExecutions$)
|
|
328
|
+
.sc(schemas_0.ListDataIntegrationFlowExecutions$)
|
|
1294
329
|
.build() {
|
|
1295
330
|
}
|
|
1296
331
|
|
|
@@ -1302,7 +337,7 @@ class ListDataIntegrationFlowsCommand extends smithyClient.Command
|
|
|
1302
337
|
})
|
|
1303
338
|
.s("GalaxyPublicAPIGateway", "ListDataIntegrationFlows", {})
|
|
1304
339
|
.n("SupplyChainClient", "ListDataIntegrationFlowsCommand")
|
|
1305
|
-
.sc(ListDataIntegrationFlows$)
|
|
340
|
+
.sc(schemas_0.ListDataIntegrationFlows$)
|
|
1306
341
|
.build() {
|
|
1307
342
|
}
|
|
1308
343
|
|
|
@@ -1314,7 +349,7 @@ class ListDataLakeDatasetsCommand extends smithyClient.Command
|
|
|
1314
349
|
})
|
|
1315
350
|
.s("GalaxyPublicAPIGateway", "ListDataLakeDatasets", {})
|
|
1316
351
|
.n("SupplyChainClient", "ListDataLakeDatasetsCommand")
|
|
1317
|
-
.sc(ListDataLakeDatasets$)
|
|
352
|
+
.sc(schemas_0.ListDataLakeDatasets$)
|
|
1318
353
|
.build() {
|
|
1319
354
|
}
|
|
1320
355
|
|
|
@@ -1326,7 +361,7 @@ class ListDataLakeNamespacesCommand extends smithyClient.Command
|
|
|
1326
361
|
})
|
|
1327
362
|
.s("GalaxyPublicAPIGateway", "ListDataLakeNamespaces", {})
|
|
1328
363
|
.n("SupplyChainClient", "ListDataLakeNamespacesCommand")
|
|
1329
|
-
.sc(ListDataLakeNamespaces$)
|
|
364
|
+
.sc(schemas_0.ListDataLakeNamespaces$)
|
|
1330
365
|
.build() {
|
|
1331
366
|
}
|
|
1332
367
|
|
|
@@ -1338,7 +373,7 @@ class ListInstancesCommand extends smithyClient.Command
|
|
|
1338
373
|
})
|
|
1339
374
|
.s("GalaxyPublicAPIGateway", "ListInstances", {})
|
|
1340
375
|
.n("SupplyChainClient", "ListInstancesCommand")
|
|
1341
|
-
.sc(ListInstances$)
|
|
376
|
+
.sc(schemas_0.ListInstances$)
|
|
1342
377
|
.build() {
|
|
1343
378
|
}
|
|
1344
379
|
|
|
@@ -1350,7 +385,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1350
385
|
})
|
|
1351
386
|
.s("GalaxyPublicAPIGateway", "ListTagsForResource", {})
|
|
1352
387
|
.n("SupplyChainClient", "ListTagsForResourceCommand")
|
|
1353
|
-
.sc(ListTagsForResource$)
|
|
388
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1354
389
|
.build() {
|
|
1355
390
|
}
|
|
1356
391
|
|
|
@@ -1362,7 +397,7 @@ class SendDataIntegrationEventCommand extends smithyClient.Command
|
|
|
1362
397
|
})
|
|
1363
398
|
.s("GalaxyPublicAPIGateway", "SendDataIntegrationEvent", {})
|
|
1364
399
|
.n("SupplyChainClient", "SendDataIntegrationEventCommand")
|
|
1365
|
-
.sc(SendDataIntegrationEvent$)
|
|
400
|
+
.sc(schemas_0.SendDataIntegrationEvent$)
|
|
1366
401
|
.build() {
|
|
1367
402
|
}
|
|
1368
403
|
|
|
@@ -1374,7 +409,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1374
409
|
})
|
|
1375
410
|
.s("GalaxyPublicAPIGateway", "TagResource", {})
|
|
1376
411
|
.n("SupplyChainClient", "TagResourceCommand")
|
|
1377
|
-
.sc(TagResource$)
|
|
412
|
+
.sc(schemas_0.TagResource$)
|
|
1378
413
|
.build() {
|
|
1379
414
|
}
|
|
1380
415
|
|
|
@@ -1386,7 +421,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1386
421
|
})
|
|
1387
422
|
.s("GalaxyPublicAPIGateway", "UntagResource", {})
|
|
1388
423
|
.n("SupplyChainClient", "UntagResourceCommand")
|
|
1389
|
-
.sc(UntagResource$)
|
|
424
|
+
.sc(schemas_0.UntagResource$)
|
|
1390
425
|
.build() {
|
|
1391
426
|
}
|
|
1392
427
|
|
|
@@ -1398,7 +433,7 @@ class UpdateDataIntegrationFlowCommand extends smithyClient.Command
|
|
|
1398
433
|
})
|
|
1399
434
|
.s("GalaxyPublicAPIGateway", "UpdateDataIntegrationFlow", {})
|
|
1400
435
|
.n("SupplyChainClient", "UpdateDataIntegrationFlowCommand")
|
|
1401
|
-
.sc(UpdateDataIntegrationFlow$)
|
|
436
|
+
.sc(schemas_0.UpdateDataIntegrationFlow$)
|
|
1402
437
|
.build() {
|
|
1403
438
|
}
|
|
1404
439
|
|
|
@@ -1410,7 +445,7 @@ class UpdateDataLakeDatasetCommand extends smithyClient.Command
|
|
|
1410
445
|
})
|
|
1411
446
|
.s("GalaxyPublicAPIGateway", "UpdateDataLakeDataset", {})
|
|
1412
447
|
.n("SupplyChainClient", "UpdateDataLakeDatasetCommand")
|
|
1413
|
-
.sc(UpdateDataLakeDataset$)
|
|
448
|
+
.sc(schemas_0.UpdateDataLakeDataset$)
|
|
1414
449
|
.build() {
|
|
1415
450
|
}
|
|
1416
451
|
|
|
@@ -1422,7 +457,7 @@ class UpdateDataLakeNamespaceCommand extends smithyClient.Command
|
|
|
1422
457
|
})
|
|
1423
458
|
.s("GalaxyPublicAPIGateway", "UpdateDataLakeNamespace", {})
|
|
1424
459
|
.n("SupplyChainClient", "UpdateDataLakeNamespaceCommand")
|
|
1425
|
-
.sc(UpdateDataLakeNamespace$)
|
|
460
|
+
.sc(schemas_0.UpdateDataLakeNamespace$)
|
|
1426
461
|
.build() {
|
|
1427
462
|
}
|
|
1428
463
|
|
|
@@ -1434,7 +469,7 @@ class UpdateInstanceCommand extends smithyClient.Command
|
|
|
1434
469
|
})
|
|
1435
470
|
.s("GalaxyPublicAPIGateway", "UpdateInstance", {})
|
|
1436
471
|
.n("SupplyChainClient", "UpdateInstanceCommand")
|
|
1437
|
-
.sc(UpdateInstance$)
|
|
472
|
+
.sc(schemas_0.UpdateInstance$)
|
|
1438
473
|
.build() {
|
|
1439
474
|
}
|
|
1440
475
|
|
|
@@ -1593,195 +628,72 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1593
628
|
enumerable: true,
|
|
1594
629
|
get: function () { return smithyClient.Client; }
|
|
1595
630
|
});
|
|
1596
|
-
exports
|
|
1597
|
-
|
|
1598
|
-
|
|
631
|
+
Object.defineProperty(exports, "SupplyChainServiceException", {
|
|
632
|
+
enumerable: true,
|
|
633
|
+
get: function () { return SupplyChainServiceException.SupplyChainServiceException; }
|
|
634
|
+
});
|
|
1599
635
|
exports.ConfigurationJobStatus = ConfigurationJobStatus;
|
|
1600
|
-
exports.ConflictException = ConflictException;
|
|
1601
|
-
exports.ConflictException$ = ConflictException$;
|
|
1602
|
-
exports.CreateBillOfMaterialsImportJob$ = CreateBillOfMaterialsImportJob$;
|
|
1603
636
|
exports.CreateBillOfMaterialsImportJobCommand = CreateBillOfMaterialsImportJobCommand;
|
|
1604
|
-
exports.CreateBillOfMaterialsImportJobRequest$ = CreateBillOfMaterialsImportJobRequest$;
|
|
1605
|
-
exports.CreateBillOfMaterialsImportJobResponse$ = CreateBillOfMaterialsImportJobResponse$;
|
|
1606
|
-
exports.CreateDataIntegrationFlow$ = CreateDataIntegrationFlow$;
|
|
1607
637
|
exports.CreateDataIntegrationFlowCommand = CreateDataIntegrationFlowCommand;
|
|
1608
|
-
exports.CreateDataIntegrationFlowRequest$ = CreateDataIntegrationFlowRequest$;
|
|
1609
|
-
exports.CreateDataIntegrationFlowResponse$ = CreateDataIntegrationFlowResponse$;
|
|
1610
|
-
exports.CreateDataLakeDataset$ = CreateDataLakeDataset$;
|
|
1611
638
|
exports.CreateDataLakeDatasetCommand = CreateDataLakeDatasetCommand;
|
|
1612
|
-
exports.CreateDataLakeDatasetRequest$ = CreateDataLakeDatasetRequest$;
|
|
1613
|
-
exports.CreateDataLakeDatasetResponse$ = CreateDataLakeDatasetResponse$;
|
|
1614
|
-
exports.CreateDataLakeNamespace$ = CreateDataLakeNamespace$;
|
|
1615
639
|
exports.CreateDataLakeNamespaceCommand = CreateDataLakeNamespaceCommand;
|
|
1616
|
-
exports.CreateDataLakeNamespaceRequest$ = CreateDataLakeNamespaceRequest$;
|
|
1617
|
-
exports.CreateDataLakeNamespaceResponse$ = CreateDataLakeNamespaceResponse$;
|
|
1618
|
-
exports.CreateInstance$ = CreateInstance$;
|
|
1619
640
|
exports.CreateInstanceCommand = CreateInstanceCommand;
|
|
1620
|
-
exports.CreateInstanceRequest$ = CreateInstanceRequest$;
|
|
1621
|
-
exports.CreateInstanceResponse$ = CreateInstanceResponse$;
|
|
1622
|
-
exports.DataIntegrationEvent$ = DataIntegrationEvent$;
|
|
1623
|
-
exports.DataIntegrationEventDatasetLoadExecutionDetails$ = DataIntegrationEventDatasetLoadExecutionDetails$;
|
|
1624
641
|
exports.DataIntegrationEventDatasetLoadStatus = DataIntegrationEventDatasetLoadStatus;
|
|
1625
642
|
exports.DataIntegrationEventDatasetOperationType = DataIntegrationEventDatasetOperationType;
|
|
1626
|
-
exports.DataIntegrationEventDatasetTargetConfiguration$ = DataIntegrationEventDatasetTargetConfiguration$;
|
|
1627
|
-
exports.DataIntegrationEventDatasetTargetDetails$ = DataIntegrationEventDatasetTargetDetails$;
|
|
1628
643
|
exports.DataIntegrationEventType = DataIntegrationEventType;
|
|
1629
|
-
exports.DataIntegrationFlow$ = DataIntegrationFlow$;
|
|
1630
|
-
exports.DataIntegrationFlowDatasetOptions$ = DataIntegrationFlowDatasetOptions$;
|
|
1631
|
-
exports.DataIntegrationFlowDatasetSource$ = DataIntegrationFlowDatasetSource$;
|
|
1632
|
-
exports.DataIntegrationFlowDatasetSourceConfiguration$ = DataIntegrationFlowDatasetSourceConfiguration$;
|
|
1633
|
-
exports.DataIntegrationFlowDatasetTargetConfiguration$ = DataIntegrationFlowDatasetTargetConfiguration$;
|
|
1634
|
-
exports.DataIntegrationFlowDedupeStrategy$ = DataIntegrationFlowDedupeStrategy$;
|
|
1635
644
|
exports.DataIntegrationFlowDedupeStrategyType = DataIntegrationFlowDedupeStrategyType;
|
|
1636
|
-
exports.DataIntegrationFlowExecution$ = DataIntegrationFlowExecution$;
|
|
1637
|
-
exports.DataIntegrationFlowExecutionOutputMetadata$ = DataIntegrationFlowExecutionOutputMetadata$;
|
|
1638
|
-
exports.DataIntegrationFlowExecutionSourceInfo$ = DataIntegrationFlowExecutionSourceInfo$;
|
|
1639
645
|
exports.DataIntegrationFlowExecutionStatus = DataIntegrationFlowExecutionStatus;
|
|
1640
|
-
exports.DataIntegrationFlowFieldPriorityDedupeField$ = DataIntegrationFlowFieldPriorityDedupeField$;
|
|
1641
646
|
exports.DataIntegrationFlowFieldPriorityDedupeSortOrder = DataIntegrationFlowFieldPriorityDedupeSortOrder;
|
|
1642
|
-
exports.DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$ = DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration$;
|
|
1643
647
|
exports.DataIntegrationFlowFileType = DataIntegrationFlowFileType;
|
|
1644
648
|
exports.DataIntegrationFlowLoadType = DataIntegrationFlowLoadType;
|
|
1645
|
-
exports.DataIntegrationFlowS3Options$ = DataIntegrationFlowS3Options$;
|
|
1646
|
-
exports.DataIntegrationFlowS3Source$ = DataIntegrationFlowS3Source$;
|
|
1647
|
-
exports.DataIntegrationFlowS3SourceConfiguration$ = DataIntegrationFlowS3SourceConfiguration$;
|
|
1648
|
-
exports.DataIntegrationFlowS3TargetConfiguration$ = DataIntegrationFlowS3TargetConfiguration$;
|
|
1649
|
-
exports.DataIntegrationFlowSQLTransformationConfiguration$ = DataIntegrationFlowSQLTransformationConfiguration$;
|
|
1650
|
-
exports.DataIntegrationFlowSource$ = DataIntegrationFlowSource$;
|
|
1651
649
|
exports.DataIntegrationFlowSourceType = DataIntegrationFlowSourceType;
|
|
1652
|
-
exports.DataIntegrationFlowTarget$ = DataIntegrationFlowTarget$;
|
|
1653
650
|
exports.DataIntegrationFlowTargetType = DataIntegrationFlowTargetType;
|
|
1654
|
-
exports.DataIntegrationFlowTransformation$ = DataIntegrationFlowTransformation$;
|
|
1655
651
|
exports.DataIntegrationFlowTransformationType = DataIntegrationFlowTransformationType;
|
|
1656
|
-
exports.DataLakeDataset$ = DataLakeDataset$;
|
|
1657
|
-
exports.DataLakeDatasetPartitionField$ = DataLakeDatasetPartitionField$;
|
|
1658
|
-
exports.DataLakeDatasetPartitionFieldTransform$ = DataLakeDatasetPartitionFieldTransform$;
|
|
1659
|
-
exports.DataLakeDatasetPartitionSpec$ = DataLakeDatasetPartitionSpec$;
|
|
1660
652
|
exports.DataLakeDatasetPartitionTransformType = DataLakeDatasetPartitionTransformType;
|
|
1661
|
-
exports.DataLakeDatasetPrimaryKeyField$ = DataLakeDatasetPrimaryKeyField$;
|
|
1662
|
-
exports.DataLakeDatasetSchema$ = DataLakeDatasetSchema$;
|
|
1663
|
-
exports.DataLakeDatasetSchemaField$ = DataLakeDatasetSchemaField$;
|
|
1664
653
|
exports.DataLakeDatasetSchemaFieldType = DataLakeDatasetSchemaFieldType;
|
|
1665
|
-
exports.DataLakeNamespace$ = DataLakeNamespace$;
|
|
1666
|
-
exports.DeleteDataIntegrationFlow$ = DeleteDataIntegrationFlow$;
|
|
1667
654
|
exports.DeleteDataIntegrationFlowCommand = DeleteDataIntegrationFlowCommand;
|
|
1668
|
-
exports.DeleteDataIntegrationFlowRequest$ = DeleteDataIntegrationFlowRequest$;
|
|
1669
|
-
exports.DeleteDataIntegrationFlowResponse$ = DeleteDataIntegrationFlowResponse$;
|
|
1670
|
-
exports.DeleteDataLakeDataset$ = DeleteDataLakeDataset$;
|
|
1671
655
|
exports.DeleteDataLakeDatasetCommand = DeleteDataLakeDatasetCommand;
|
|
1672
|
-
exports.DeleteDataLakeDatasetRequest$ = DeleteDataLakeDatasetRequest$;
|
|
1673
|
-
exports.DeleteDataLakeDatasetResponse$ = DeleteDataLakeDatasetResponse$;
|
|
1674
|
-
exports.DeleteDataLakeNamespace$ = DeleteDataLakeNamespace$;
|
|
1675
656
|
exports.DeleteDataLakeNamespaceCommand = DeleteDataLakeNamespaceCommand;
|
|
1676
|
-
exports.DeleteDataLakeNamespaceRequest$ = DeleteDataLakeNamespaceRequest$;
|
|
1677
|
-
exports.DeleteDataLakeNamespaceResponse$ = DeleteDataLakeNamespaceResponse$;
|
|
1678
|
-
exports.DeleteInstance$ = DeleteInstance$;
|
|
1679
657
|
exports.DeleteInstanceCommand = DeleteInstanceCommand;
|
|
1680
|
-
exports.DeleteInstanceRequest$ = DeleteInstanceRequest$;
|
|
1681
|
-
exports.DeleteInstanceResponse$ = DeleteInstanceResponse$;
|
|
1682
|
-
exports.GetBillOfMaterialsImportJob$ = GetBillOfMaterialsImportJob$;
|
|
1683
658
|
exports.GetBillOfMaterialsImportJobCommand = GetBillOfMaterialsImportJobCommand;
|
|
1684
|
-
exports.GetBillOfMaterialsImportJobRequest$ = GetBillOfMaterialsImportJobRequest$;
|
|
1685
|
-
exports.GetBillOfMaterialsImportJobResponse$ = GetBillOfMaterialsImportJobResponse$;
|
|
1686
|
-
exports.GetDataIntegrationEvent$ = GetDataIntegrationEvent$;
|
|
1687
659
|
exports.GetDataIntegrationEventCommand = GetDataIntegrationEventCommand;
|
|
1688
|
-
exports.GetDataIntegrationEventRequest$ = GetDataIntegrationEventRequest$;
|
|
1689
|
-
exports.GetDataIntegrationEventResponse$ = GetDataIntegrationEventResponse$;
|
|
1690
|
-
exports.GetDataIntegrationFlow$ = GetDataIntegrationFlow$;
|
|
1691
660
|
exports.GetDataIntegrationFlowCommand = GetDataIntegrationFlowCommand;
|
|
1692
|
-
exports.GetDataIntegrationFlowExecution$ = GetDataIntegrationFlowExecution$;
|
|
1693
661
|
exports.GetDataIntegrationFlowExecutionCommand = GetDataIntegrationFlowExecutionCommand;
|
|
1694
|
-
exports.GetDataIntegrationFlowExecutionRequest$ = GetDataIntegrationFlowExecutionRequest$;
|
|
1695
|
-
exports.GetDataIntegrationFlowExecutionResponse$ = GetDataIntegrationFlowExecutionResponse$;
|
|
1696
|
-
exports.GetDataIntegrationFlowRequest$ = GetDataIntegrationFlowRequest$;
|
|
1697
|
-
exports.GetDataIntegrationFlowResponse$ = GetDataIntegrationFlowResponse$;
|
|
1698
|
-
exports.GetDataLakeDataset$ = GetDataLakeDataset$;
|
|
1699
662
|
exports.GetDataLakeDatasetCommand = GetDataLakeDatasetCommand;
|
|
1700
|
-
exports.GetDataLakeDatasetRequest$ = GetDataLakeDatasetRequest$;
|
|
1701
|
-
exports.GetDataLakeDatasetResponse$ = GetDataLakeDatasetResponse$;
|
|
1702
|
-
exports.GetDataLakeNamespace$ = GetDataLakeNamespace$;
|
|
1703
663
|
exports.GetDataLakeNamespaceCommand = GetDataLakeNamespaceCommand;
|
|
1704
|
-
exports.GetDataLakeNamespaceRequest$ = GetDataLakeNamespaceRequest$;
|
|
1705
|
-
exports.GetDataLakeNamespaceResponse$ = GetDataLakeNamespaceResponse$;
|
|
1706
|
-
exports.GetInstance$ = GetInstance$;
|
|
1707
664
|
exports.GetInstanceCommand = GetInstanceCommand;
|
|
1708
|
-
exports.GetInstanceRequest$ = GetInstanceRequest$;
|
|
1709
|
-
exports.GetInstanceResponse$ = GetInstanceResponse$;
|
|
1710
|
-
exports.Instance$ = Instance$;
|
|
1711
665
|
exports.InstanceState = InstanceState;
|
|
1712
|
-
exports.InternalServerException = InternalServerException;
|
|
1713
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1714
|
-
exports.ListDataIntegrationEvents$ = ListDataIntegrationEvents$;
|
|
1715
666
|
exports.ListDataIntegrationEventsCommand = ListDataIntegrationEventsCommand;
|
|
1716
|
-
exports.ListDataIntegrationEventsRequest$ = ListDataIntegrationEventsRequest$;
|
|
1717
|
-
exports.ListDataIntegrationEventsResponse$ = ListDataIntegrationEventsResponse$;
|
|
1718
|
-
exports.ListDataIntegrationFlowExecutions$ = ListDataIntegrationFlowExecutions$;
|
|
1719
667
|
exports.ListDataIntegrationFlowExecutionsCommand = ListDataIntegrationFlowExecutionsCommand;
|
|
1720
|
-
exports.ListDataIntegrationFlowExecutionsRequest$ = ListDataIntegrationFlowExecutionsRequest$;
|
|
1721
|
-
exports.ListDataIntegrationFlowExecutionsResponse$ = ListDataIntegrationFlowExecutionsResponse$;
|
|
1722
|
-
exports.ListDataIntegrationFlows$ = ListDataIntegrationFlows$;
|
|
1723
668
|
exports.ListDataIntegrationFlowsCommand = ListDataIntegrationFlowsCommand;
|
|
1724
|
-
exports.ListDataIntegrationFlowsRequest$ = ListDataIntegrationFlowsRequest$;
|
|
1725
|
-
exports.ListDataIntegrationFlowsResponse$ = ListDataIntegrationFlowsResponse$;
|
|
1726
|
-
exports.ListDataLakeDatasets$ = ListDataLakeDatasets$;
|
|
1727
669
|
exports.ListDataLakeDatasetsCommand = ListDataLakeDatasetsCommand;
|
|
1728
|
-
exports.ListDataLakeDatasetsRequest$ = ListDataLakeDatasetsRequest$;
|
|
1729
|
-
exports.ListDataLakeDatasetsResponse$ = ListDataLakeDatasetsResponse$;
|
|
1730
|
-
exports.ListDataLakeNamespaces$ = ListDataLakeNamespaces$;
|
|
1731
670
|
exports.ListDataLakeNamespacesCommand = ListDataLakeNamespacesCommand;
|
|
1732
|
-
exports.ListDataLakeNamespacesRequest$ = ListDataLakeNamespacesRequest$;
|
|
1733
|
-
exports.ListDataLakeNamespacesResponse$ = ListDataLakeNamespacesResponse$;
|
|
1734
|
-
exports.ListInstances$ = ListInstances$;
|
|
1735
671
|
exports.ListInstancesCommand = ListInstancesCommand;
|
|
1736
|
-
exports.ListInstancesRequest$ = ListInstancesRequest$;
|
|
1737
|
-
exports.ListInstancesResponse$ = ListInstancesResponse$;
|
|
1738
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1739
672
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1740
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1741
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1742
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1743
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1744
|
-
exports.SendDataIntegrationEvent$ = SendDataIntegrationEvent$;
|
|
1745
673
|
exports.SendDataIntegrationEventCommand = SendDataIntegrationEventCommand;
|
|
1746
|
-
exports.SendDataIntegrationEventRequest$ = SendDataIntegrationEventRequest$;
|
|
1747
|
-
exports.SendDataIntegrationEventResponse$ = SendDataIntegrationEventResponse$;
|
|
1748
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1749
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1750
674
|
exports.SupplyChain = SupplyChain;
|
|
1751
675
|
exports.SupplyChainClient = SupplyChainClient;
|
|
1752
|
-
exports.SupplyChainServiceException = SupplyChainServiceException;
|
|
1753
|
-
exports.SupplyChainServiceException$ = SupplyChainServiceException$;
|
|
1754
|
-
exports.TagResource$ = TagResource$;
|
|
1755
676
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1756
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1757
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1758
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1759
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1760
|
-
exports.UntagResource$ = UntagResource$;
|
|
1761
677
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1762
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1763
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1764
|
-
exports.UpdateDataIntegrationFlow$ = UpdateDataIntegrationFlow$;
|
|
1765
678
|
exports.UpdateDataIntegrationFlowCommand = UpdateDataIntegrationFlowCommand;
|
|
1766
|
-
exports.UpdateDataIntegrationFlowRequest$ = UpdateDataIntegrationFlowRequest$;
|
|
1767
|
-
exports.UpdateDataIntegrationFlowResponse$ = UpdateDataIntegrationFlowResponse$;
|
|
1768
|
-
exports.UpdateDataLakeDataset$ = UpdateDataLakeDataset$;
|
|
1769
679
|
exports.UpdateDataLakeDatasetCommand = UpdateDataLakeDatasetCommand;
|
|
1770
|
-
exports.UpdateDataLakeDatasetRequest$ = UpdateDataLakeDatasetRequest$;
|
|
1771
|
-
exports.UpdateDataLakeDatasetResponse$ = UpdateDataLakeDatasetResponse$;
|
|
1772
|
-
exports.UpdateDataLakeNamespace$ = UpdateDataLakeNamespace$;
|
|
1773
680
|
exports.UpdateDataLakeNamespaceCommand = UpdateDataLakeNamespaceCommand;
|
|
1774
|
-
exports.UpdateDataLakeNamespaceRequest$ = UpdateDataLakeNamespaceRequest$;
|
|
1775
|
-
exports.UpdateDataLakeNamespaceResponse$ = UpdateDataLakeNamespaceResponse$;
|
|
1776
|
-
exports.UpdateInstance$ = UpdateInstance$;
|
|
1777
681
|
exports.UpdateInstanceCommand = UpdateInstanceCommand;
|
|
1778
|
-
exports.UpdateInstanceRequest$ = UpdateInstanceRequest$;
|
|
1779
|
-
exports.UpdateInstanceResponse$ = UpdateInstanceResponse$;
|
|
1780
|
-
exports.ValidationException = ValidationException;
|
|
1781
|
-
exports.ValidationException$ = ValidationException$;
|
|
1782
682
|
exports.paginateListDataIntegrationEvents = paginateListDataIntegrationEvents;
|
|
1783
683
|
exports.paginateListDataIntegrationFlowExecutions = paginateListDataIntegrationFlowExecutions;
|
|
1784
684
|
exports.paginateListDataIntegrationFlows = paginateListDataIntegrationFlows;
|
|
1785
685
|
exports.paginateListDataLakeDatasets = paginateListDataLakeDatasets;
|
|
1786
686
|
exports.paginateListDataLakeNamespaces = paginateListDataLakeNamespaces;
|
|
1787
687
|
exports.paginateListInstances = paginateListInstances;
|
|
688
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
689
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
690
|
+
enumerable: true,
|
|
691
|
+
get: function () { return schemas_0[k]; }
|
|
692
|
+
});
|
|
693
|
+
});
|
|
694
|
+
Object.keys(errors).forEach(function (k) {
|
|
695
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
696
|
+
enumerable: true,
|
|
697
|
+
get: function () { return errors[k]; }
|
|
698
|
+
});
|
|
699
|
+
});
|