@aws-sdk/client-bcm-data-exports 3.927.0 → 3.929.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 +361 -508
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/BCMDataExportsClient.js +2 -0
- package/dist-es/commands/CreateExportCommand.js +3 -9
- package/dist-es/commands/DeleteExportCommand.js +3 -9
- package/dist-es/commands/GetExecutionCommand.js +3 -9
- package/dist-es/commands/GetExportCommand.js +3 -9
- package/dist-es/commands/GetTableCommand.js +3 -9
- package/dist-es/commands/ListExecutionsCommand.js +3 -9
- package/dist-es/commands/ListExportsCommand.js +3 -9
- package/dist-es/commands/ListTablesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateExportCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +325 -0
- package/dist-types/BCMDataExportsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +70 -0
- package/dist-types/ts3.4/BCMDataExportsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -413
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -110
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -149
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -89,6 +88,7 @@ class BCMDataExportsClient extends smithyClient.Client {
|
|
|
89
88
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
90
89
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
91
90
|
this.config = _config_8;
|
|
91
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
92
92
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
93
93
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -108,12 +108,12 @@ class BCMDataExportsClient extends smithyClient.Client {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
class BCMDataExportsServiceException extends smithyClient.ServiceException {
|
|
111
|
+
let BCMDataExportsServiceException$1 = class BCMDataExportsServiceException extends smithyClient.ServiceException {
|
|
112
112
|
constructor(options) {
|
|
113
113
|
super(options);
|
|
114
114
|
Object.setPrototypeOf(this, BCMDataExportsServiceException.prototype);
|
|
115
115
|
}
|
|
116
|
-
}
|
|
116
|
+
};
|
|
117
117
|
|
|
118
118
|
const CompressionOption = {
|
|
119
119
|
GZIP: "GZIP",
|
|
@@ -133,7 +133,7 @@ const OverwriteOption = {
|
|
|
133
133
|
const FrequencyOption = {
|
|
134
134
|
SYNCHRONOUS: "SYNCHRONOUS",
|
|
135
135
|
};
|
|
136
|
-
class InternalServerException extends BCMDataExportsServiceException {
|
|
136
|
+
let InternalServerException$1 = class InternalServerException extends BCMDataExportsServiceException$1 {
|
|
137
137
|
name = "InternalServerException";
|
|
138
138
|
$fault = "server";
|
|
139
139
|
Message;
|
|
@@ -146,8 +146,8 @@ class InternalServerException extends BCMDataExportsServiceException {
|
|
|
146
146
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
147
147
|
this.Message = opts.Message;
|
|
148
148
|
}
|
|
149
|
-
}
|
|
150
|
-
class ServiceQuotaExceededException extends BCMDataExportsServiceException {
|
|
149
|
+
};
|
|
150
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BCMDataExportsServiceException$1 {
|
|
151
151
|
name = "ServiceQuotaExceededException";
|
|
152
152
|
$fault = "client";
|
|
153
153
|
Message;
|
|
@@ -168,8 +168,8 @@ class ServiceQuotaExceededException extends BCMDataExportsServiceException {
|
|
|
168
168
|
this.QuotaCode = opts.QuotaCode;
|
|
169
169
|
this.ServiceCode = opts.ServiceCode;
|
|
170
170
|
}
|
|
171
|
-
}
|
|
172
|
-
class ThrottlingException extends BCMDataExportsServiceException {
|
|
171
|
+
};
|
|
172
|
+
let ThrottlingException$1 = class ThrottlingException extends BCMDataExportsServiceException$1 {
|
|
173
173
|
name = "ThrottlingException";
|
|
174
174
|
$fault = "client";
|
|
175
175
|
Message;
|
|
@@ -186,14 +186,14 @@ class ThrottlingException extends BCMDataExportsServiceException {
|
|
|
186
186
|
this.QuotaCode = opts.QuotaCode;
|
|
187
187
|
this.ServiceCode = opts.ServiceCode;
|
|
188
188
|
}
|
|
189
|
-
}
|
|
189
|
+
};
|
|
190
190
|
const ValidationExceptionReason = {
|
|
191
191
|
CANNOT_PARSE: "cannotParse",
|
|
192
192
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
193
193
|
OTHER: "other",
|
|
194
194
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
195
195
|
};
|
|
196
|
-
class ValidationException extends BCMDataExportsServiceException {
|
|
196
|
+
let ValidationException$1 = class ValidationException extends BCMDataExportsServiceException$1 {
|
|
197
197
|
name = "ValidationException";
|
|
198
198
|
$fault = "client";
|
|
199
199
|
Message;
|
|
@@ -210,8 +210,8 @@ class ValidationException extends BCMDataExportsServiceException {
|
|
|
210
210
|
this.Reason = opts.Reason;
|
|
211
211
|
this.Fields = opts.Fields;
|
|
212
212
|
}
|
|
213
|
-
}
|
|
214
|
-
class ResourceNotFoundException extends BCMDataExportsServiceException {
|
|
213
|
+
};
|
|
214
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends BCMDataExportsServiceException$1 {
|
|
215
215
|
name = "ResourceNotFoundException";
|
|
216
216
|
$fault = "client";
|
|
217
217
|
Message;
|
|
@@ -228,7 +228,7 @@ class ResourceNotFoundException extends BCMDataExportsServiceException {
|
|
|
228
228
|
this.ResourceId = opts.ResourceId;
|
|
229
229
|
this.ResourceType = opts.ResourceType;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
231
|
+
};
|
|
232
232
|
const ExecutionStatusCode = {
|
|
233
233
|
DELIVERY_FAILURE: "DELIVERY_FAILURE",
|
|
234
234
|
DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
|
|
@@ -248,425 +248,333 @@ const ExportStatusCode = {
|
|
|
248
248
|
UNHEALTHY: "UNHEALTHY",
|
|
249
249
|
};
|
|
250
250
|
|
|
251
|
-
const
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
const
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
const
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
const
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
const
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
const
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
const
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
const
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
const
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
const
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
const
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
const
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
const
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
const
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
const
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
const
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
};
|
|
569
|
-
const de_ExecutionStatus = (output, context) => {
|
|
570
|
-
return smithyClient.take(output, {
|
|
571
|
-
CompletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
572
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
573
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
574
|
-
StatusCode: smithyClient.expectString,
|
|
575
|
-
StatusReason: smithyClient.expectString,
|
|
576
|
-
});
|
|
577
|
-
};
|
|
578
|
-
const de_ExportReference = (output, context) => {
|
|
579
|
-
return smithyClient.take(output, {
|
|
580
|
-
ExportArn: smithyClient.expectString,
|
|
581
|
-
ExportName: smithyClient.expectString,
|
|
582
|
-
ExportStatus: (_) => de_ExportStatus(_),
|
|
583
|
-
});
|
|
584
|
-
};
|
|
585
|
-
const de_ExportReferenceList = (output, context) => {
|
|
586
|
-
const retVal = (output || [])
|
|
587
|
-
.filter((e) => e != null)
|
|
588
|
-
.map((entry) => {
|
|
589
|
-
return de_ExportReference(entry);
|
|
590
|
-
});
|
|
591
|
-
return retVal;
|
|
592
|
-
};
|
|
593
|
-
const de_ExportStatus = (output, context) => {
|
|
594
|
-
return smithyClient.take(output, {
|
|
595
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
596
|
-
LastRefreshedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
597
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
598
|
-
StatusCode: smithyClient.expectString,
|
|
599
|
-
StatusReason: smithyClient.expectString,
|
|
600
|
-
});
|
|
601
|
-
};
|
|
602
|
-
const de_GetExecutionResponse = (output, context) => {
|
|
603
|
-
return smithyClient.take(output, {
|
|
604
|
-
ExecutionId: smithyClient.expectString,
|
|
605
|
-
ExecutionStatus: (_) => de_ExecutionStatus(_),
|
|
606
|
-
Export: smithyClient._json,
|
|
607
|
-
});
|
|
608
|
-
};
|
|
609
|
-
const de_GetExportResponse = (output, context) => {
|
|
610
|
-
return smithyClient.take(output, {
|
|
611
|
-
Export: smithyClient._json,
|
|
612
|
-
ExportStatus: (_) => de_ExportStatus(_),
|
|
613
|
-
});
|
|
614
|
-
};
|
|
615
|
-
const de_ListExecutionsResponse = (output, context) => {
|
|
616
|
-
return smithyClient.take(output, {
|
|
617
|
-
Executions: (_) => de_ExecutionReferenceList(_),
|
|
618
|
-
NextToken: smithyClient.expectString,
|
|
619
|
-
});
|
|
620
|
-
};
|
|
621
|
-
const de_ListExportsResponse = (output, context) => {
|
|
622
|
-
return smithyClient.take(output, {
|
|
623
|
-
Exports: (_) => de_ExportReferenceList(_),
|
|
624
|
-
NextToken: smithyClient.expectString,
|
|
625
|
-
});
|
|
626
|
-
};
|
|
627
|
-
const deserializeMetadata = (output) => ({
|
|
628
|
-
httpStatusCode: output.statusCode,
|
|
629
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
630
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
631
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
632
|
-
});
|
|
633
|
-
const throwDefaultError = smithyClient.withBaseException(BCMDataExportsServiceException);
|
|
634
|
-
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
635
|
-
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
636
|
-
const contents = {
|
|
637
|
-
protocol,
|
|
638
|
-
hostname,
|
|
639
|
-
port,
|
|
640
|
-
method: "POST",
|
|
641
|
-
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
642
|
-
headers,
|
|
643
|
-
};
|
|
644
|
-
if (body !== undefined) {
|
|
645
|
-
contents.body = body;
|
|
646
|
-
}
|
|
647
|
-
return new protocolHttp.HttpRequest(contents);
|
|
648
|
-
};
|
|
649
|
-
function sharedHeaders(operation) {
|
|
650
|
-
return {
|
|
651
|
-
"content-type": "application/x-amz-json-1.1",
|
|
652
|
-
"x-amz-target": `AWSBillingAndCostManagementDataExports.${operation}`,
|
|
653
|
-
};
|
|
654
|
-
}
|
|
251
|
+
const _C = "Column";
|
|
252
|
+
const _CA = "CreatedAt";
|
|
253
|
+
const _CAo = "CompletedAt";
|
|
254
|
+
const _CE = "CreateExport";
|
|
255
|
+
const _CER = "CreateExportRequest";
|
|
256
|
+
const _CERr = "CreateExportResponse";
|
|
257
|
+
const _CL = "ColumnList";
|
|
258
|
+
const _Co = "Compression";
|
|
259
|
+
const _D = "Description";
|
|
260
|
+
const _DC = "DestinationConfigurations";
|
|
261
|
+
const _DE = "DeleteExport";
|
|
262
|
+
const _DER = "DeleteExportRequest";
|
|
263
|
+
const _DERe = "DeleteExportResponse";
|
|
264
|
+
const _DQ = "DataQuery";
|
|
265
|
+
const _DV = "DefaultValue";
|
|
266
|
+
const _E = "Export";
|
|
267
|
+
const _EA = "ExportArn";
|
|
268
|
+
const _EI = "ExecutionId";
|
|
269
|
+
const _EN = "ExportName";
|
|
270
|
+
const _ER = "ExecutionReference";
|
|
271
|
+
const _ERL = "ExecutionReferenceList";
|
|
272
|
+
const _ERLx = "ExportReferenceList";
|
|
273
|
+
const _ERx = "ExportReference";
|
|
274
|
+
const _ES = "ExecutionStatus";
|
|
275
|
+
const _ESx = "ExportStatus";
|
|
276
|
+
const _Ex = "Executions";
|
|
277
|
+
const _Exp = "Exports";
|
|
278
|
+
const _F = "Frequency";
|
|
279
|
+
const _Fi = "Fields";
|
|
280
|
+
const _Fo = "Format";
|
|
281
|
+
const _GE = "GetExecution";
|
|
282
|
+
const _GER = "GetExecutionRequest";
|
|
283
|
+
const _GERe = "GetExecutionResponse";
|
|
284
|
+
const _GERet = "GetExportRequest";
|
|
285
|
+
const _GERetx = "GetExportResponse";
|
|
286
|
+
const _GEe = "GetExport";
|
|
287
|
+
const _GT = "GetTable";
|
|
288
|
+
const _GTR = "GetTableRequest";
|
|
289
|
+
const _GTRe = "GetTableResponse";
|
|
290
|
+
const _ISE = "InternalServerException";
|
|
291
|
+
const _K = "Key";
|
|
292
|
+
const _LE = "ListExecutions";
|
|
293
|
+
const _LER = "ListExecutionsRequest";
|
|
294
|
+
const _LERi = "ListExecutionsResponse";
|
|
295
|
+
const _LERis = "ListExportsRequest";
|
|
296
|
+
const _LERist = "ListExportsResponse";
|
|
297
|
+
const _LEi = "ListExports";
|
|
298
|
+
const _LRA = "LastRefreshedAt";
|
|
299
|
+
const _LT = "ListTables";
|
|
300
|
+
const _LTFR = "ListTagsForResource";
|
|
301
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
302
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
303
|
+
const _LTR = "ListTablesRequest";
|
|
304
|
+
const _LTRi = "ListTablesResponse";
|
|
305
|
+
const _LUA = "LastUpdatedAt";
|
|
306
|
+
const _M = "Message";
|
|
307
|
+
const _MR = "MaxResults";
|
|
308
|
+
const _N = "Name";
|
|
309
|
+
const _NT = "NextToken";
|
|
310
|
+
const _O = "Overwrite";
|
|
311
|
+
const _OT = "OutputType";
|
|
312
|
+
const _QC = "QuotaCode";
|
|
313
|
+
const _QS = "QueryStatement";
|
|
314
|
+
const _R = "Reason";
|
|
315
|
+
const _RA = "ResourceArn";
|
|
316
|
+
const _RC = "RefreshCadence";
|
|
317
|
+
const _RI = "ResourceId";
|
|
318
|
+
const _RNFE = "ResourceNotFoundException";
|
|
319
|
+
const _RT = "ResourceTags";
|
|
320
|
+
const _RTK = "ResourceTagKeys";
|
|
321
|
+
const _RTL = "ResourceTagList";
|
|
322
|
+
const _RTe = "ResourceType";
|
|
323
|
+
const _RTes = "ResourceTag";
|
|
324
|
+
const _S = "Schema";
|
|
325
|
+
const _SB = "S3Bucket";
|
|
326
|
+
const _SC = "StatusCode";
|
|
327
|
+
const _SCe = "ServiceCode";
|
|
328
|
+
const _SD = "S3Destination";
|
|
329
|
+
const _SOC = "S3OutputConfigurations";
|
|
330
|
+
const _SP = "S3Prefix";
|
|
331
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
332
|
+
const _SR = "StatusReason";
|
|
333
|
+
const _SRe = "S3Region";
|
|
334
|
+
const _T = "Type";
|
|
335
|
+
const _TC = "TableConfigurations";
|
|
336
|
+
const _TE = "ThrottlingException";
|
|
337
|
+
const _TL = "TableList";
|
|
338
|
+
const _TN = "TableName";
|
|
339
|
+
const _TP = "TableProperties";
|
|
340
|
+
const _TPD = "TablePropertyDescription";
|
|
341
|
+
const _TPDL = "TablePropertyDescriptionList";
|
|
342
|
+
const _TR = "TagResource";
|
|
343
|
+
const _TRR = "TagResourceRequest";
|
|
344
|
+
const _TRRa = "TagResourceResponse";
|
|
345
|
+
const _Ta = "Tables";
|
|
346
|
+
const _Tab = "Table";
|
|
347
|
+
const _UE = "UpdateExport";
|
|
348
|
+
const _UER = "UpdateExportRequest";
|
|
349
|
+
const _UERp = "UpdateExportResponse";
|
|
350
|
+
const _UR = "UntagResource";
|
|
351
|
+
const _URR = "UntagResourceRequest";
|
|
352
|
+
const _URRn = "UntagResourceResponse";
|
|
353
|
+
const _V = "Value";
|
|
354
|
+
const _VE = "ValidationException";
|
|
355
|
+
const _VEF = "ValidationExceptionField";
|
|
356
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
357
|
+
const _VV = "ValidValues";
|
|
358
|
+
const _c = "client";
|
|
359
|
+
const _e = "error";
|
|
360
|
+
const _hE = "httpError";
|
|
361
|
+
const _s = "server";
|
|
362
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdataexports";
|
|
363
|
+
const n0 = "com.amazonaws.bcmdataexports";
|
|
364
|
+
var Column = [3, n0, _C, 0, [_N, _T, _D], [0, 0, 0]];
|
|
365
|
+
var CreateExportRequest = [
|
|
366
|
+
3,
|
|
367
|
+
n0,
|
|
368
|
+
_CER,
|
|
369
|
+
0,
|
|
370
|
+
[_E, _RT],
|
|
371
|
+
[() => Export, () => ResourceTagList],
|
|
372
|
+
];
|
|
373
|
+
var CreateExportResponse = [3, n0, _CERr, 0, [_EA], [0]];
|
|
374
|
+
var DataQuery = [3, n0, _DQ, 0, [_QS, _TC], [0, [2, n0, _TC, 0, 0, 128 | 0]]];
|
|
375
|
+
var DeleteExportRequest = [3, n0, _DER, 0, [_EA], [0]];
|
|
376
|
+
var DeleteExportResponse = [3, n0, _DERe, 0, [_EA], [0]];
|
|
377
|
+
var DestinationConfigurations = [3, n0, _DC, 0, [_SD], [() => S3Destination]];
|
|
378
|
+
var ExecutionReference = [3, n0, _ER, 0, [_EI, _ES], [0, () => ExecutionStatus]];
|
|
379
|
+
var ExecutionStatus = [3, n0, _ES, 0, [_SC, _SR, _CA, _CAo, _LUA], [0, 0, 5, 5, 5]];
|
|
380
|
+
var Export = [
|
|
381
|
+
3,
|
|
382
|
+
n0,
|
|
383
|
+
_E,
|
|
384
|
+
0,
|
|
385
|
+
[_EA, _N, _D, _DQ, _DC, _RC],
|
|
386
|
+
[0, 0, 0, () => DataQuery, () => DestinationConfigurations, () => RefreshCadence],
|
|
387
|
+
];
|
|
388
|
+
var ExportReference = [3, n0, _ERx, 0, [_EA, _EN, _ESx], [0, 0, () => ExportStatus]];
|
|
389
|
+
var ExportStatus = [3, n0, _ESx, 0, [_SC, _SR, _CA, _LUA, _LRA], [0, 0, 5, 5, 5]];
|
|
390
|
+
var GetExecutionRequest = [3, n0, _GER, 0, [_EA, _EI], [0, 0]];
|
|
391
|
+
var GetExecutionResponse = [
|
|
392
|
+
3,
|
|
393
|
+
n0,
|
|
394
|
+
_GERe,
|
|
395
|
+
0,
|
|
396
|
+
[_EI, _E, _ES],
|
|
397
|
+
[0, () => Export, () => ExecutionStatus],
|
|
398
|
+
];
|
|
399
|
+
var GetExportRequest = [3, n0, _GERet, 0, [_EA], [0]];
|
|
400
|
+
var GetExportResponse = [
|
|
401
|
+
3,
|
|
402
|
+
n0,
|
|
403
|
+
_GERetx,
|
|
404
|
+
0,
|
|
405
|
+
[_E, _ESx],
|
|
406
|
+
[() => Export, () => ExportStatus],
|
|
407
|
+
];
|
|
408
|
+
var GetTableRequest = [3, n0, _GTR, 0, [_TN, _TP], [0, 128 | 0]];
|
|
409
|
+
var GetTableResponse = [
|
|
410
|
+
3,
|
|
411
|
+
n0,
|
|
412
|
+
_GTRe,
|
|
413
|
+
0,
|
|
414
|
+
[_TN, _D, _TP, _S],
|
|
415
|
+
[0, 0, 128 | 0, () => ColumnList],
|
|
416
|
+
];
|
|
417
|
+
var InternalServerException = [
|
|
418
|
+
-3,
|
|
419
|
+
n0,
|
|
420
|
+
_ISE,
|
|
421
|
+
{
|
|
422
|
+
[_e]: _s,
|
|
423
|
+
[_hE]: 500,
|
|
424
|
+
},
|
|
425
|
+
[_M],
|
|
426
|
+
[0],
|
|
427
|
+
];
|
|
428
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
429
|
+
var ListExecutionsRequest = [3, n0, _LER, 0, [_EA, _MR, _NT], [0, 1, 0]];
|
|
430
|
+
var ListExecutionsResponse = [
|
|
431
|
+
3,
|
|
432
|
+
n0,
|
|
433
|
+
_LERi,
|
|
434
|
+
0,
|
|
435
|
+
[_Ex, _NT],
|
|
436
|
+
[() => ExecutionReferenceList, 0],
|
|
437
|
+
];
|
|
438
|
+
var ListExportsRequest = [3, n0, _LERis, 0, [_MR, _NT], [1, 0]];
|
|
439
|
+
var ListExportsResponse = [
|
|
440
|
+
3,
|
|
441
|
+
n0,
|
|
442
|
+
_LERist,
|
|
443
|
+
0,
|
|
444
|
+
[_Exp, _NT],
|
|
445
|
+
[() => ExportReferenceList, 0],
|
|
446
|
+
];
|
|
447
|
+
var ListTablesRequest = [3, n0, _LTR, 0, [_NT, _MR], [0, 1]];
|
|
448
|
+
var ListTablesResponse = [3, n0, _LTRi, 0, [_Ta, _NT], [() => TableList, 0]];
|
|
449
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA, _MR, _NT], [0, 1, 0]];
|
|
450
|
+
var ListTagsForResourceResponse = [
|
|
451
|
+
3,
|
|
452
|
+
n0,
|
|
453
|
+
_LTFRRi,
|
|
454
|
+
0,
|
|
455
|
+
[_RT, _NT],
|
|
456
|
+
[() => ResourceTagList, 0],
|
|
457
|
+
];
|
|
458
|
+
var RefreshCadence = [3, n0, _RC, 0, [_F], [0]];
|
|
459
|
+
var ResourceNotFoundException = [
|
|
460
|
+
-3,
|
|
461
|
+
n0,
|
|
462
|
+
_RNFE,
|
|
463
|
+
{
|
|
464
|
+
[_e]: _c,
|
|
465
|
+
[_hE]: 404,
|
|
466
|
+
},
|
|
467
|
+
[_M, _RI, _RTe],
|
|
468
|
+
[0, 0, 0],
|
|
469
|
+
];
|
|
470
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
471
|
+
var ResourceTag = [3, n0, _RTes, 0, [_K, _V], [0, 0]];
|
|
472
|
+
var S3Destination = [
|
|
473
|
+
3,
|
|
474
|
+
n0,
|
|
475
|
+
_SD,
|
|
476
|
+
0,
|
|
477
|
+
[_SB, _SP, _SRe, _SOC],
|
|
478
|
+
[0, 0, 0, () => S3OutputConfigurations],
|
|
479
|
+
];
|
|
480
|
+
var S3OutputConfigurations = [3, n0, _SOC, 0, [_OT, _Fo, _Co, _O], [0, 0, 0, 0]];
|
|
481
|
+
var ServiceQuotaExceededException = [
|
|
482
|
+
-3,
|
|
483
|
+
n0,
|
|
484
|
+
_SQEE,
|
|
485
|
+
{
|
|
486
|
+
[_e]: _c,
|
|
487
|
+
[_hE]: 402,
|
|
488
|
+
},
|
|
489
|
+
[_M, _RI, _RTe, _QC, _SCe],
|
|
490
|
+
[0, 0, 0, 0, 0],
|
|
491
|
+
];
|
|
492
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
493
|
+
var Table = [3, n0, _Tab, 0, [_TN, _D, _TP], [0, 0, () => TablePropertyDescriptionList]];
|
|
494
|
+
var TablePropertyDescription = [3, n0, _TPD, 0, [_N, _VV, _DV, _D], [0, 64 | 0, 0, 0]];
|
|
495
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _RT], [0, () => ResourceTagList]];
|
|
496
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
497
|
+
var ThrottlingException = [
|
|
498
|
+
-3,
|
|
499
|
+
n0,
|
|
500
|
+
_TE,
|
|
501
|
+
{
|
|
502
|
+
[_e]: _c,
|
|
503
|
+
[_hE]: 429,
|
|
504
|
+
},
|
|
505
|
+
[_M, _QC, _SCe],
|
|
506
|
+
[0, 0, 0],
|
|
507
|
+
];
|
|
508
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
509
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _RTK], [0, 64 | 0]];
|
|
510
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
511
|
+
var UpdateExportRequest = [3, n0, _UER, 0, [_EA, _E], [0, () => Export]];
|
|
512
|
+
var UpdateExportResponse = [3, n0, _UERp, 0, [_EA], [0]];
|
|
513
|
+
var ValidationException = [
|
|
514
|
+
-3,
|
|
515
|
+
n0,
|
|
516
|
+
_VE,
|
|
517
|
+
{
|
|
518
|
+
[_e]: _c,
|
|
519
|
+
[_hE]: 400,
|
|
520
|
+
},
|
|
521
|
+
[_M, _R, _Fi],
|
|
522
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
523
|
+
];
|
|
524
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
525
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
526
|
+
var BCMDataExportsServiceException = [-3, _sm, "BCMDataExportsServiceException", 0, [], []];
|
|
527
|
+
schema.TypeRegistry.for(_sm).registerError(BCMDataExportsServiceException, BCMDataExportsServiceException$1);
|
|
528
|
+
var ColumnList = [1, n0, _CL, 0, () => Column];
|
|
529
|
+
var ExecutionReferenceList = [1, n0, _ERL, 0, () => ExecutionReference];
|
|
530
|
+
var ExportReferenceList = [1, n0, _ERLx, 0, () => ExportReference];
|
|
531
|
+
var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag];
|
|
532
|
+
var TableList = [1, n0, _TL, 0, () => Table];
|
|
533
|
+
var TablePropertyDescriptionList = [1, n0, _TPDL, 0, () => TablePropertyDescription];
|
|
534
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
535
|
+
var CreateExport = [9, n0, _CE, 0, () => CreateExportRequest, () => CreateExportResponse];
|
|
536
|
+
var DeleteExport = [9, n0, _DE, 2, () => DeleteExportRequest, () => DeleteExportResponse];
|
|
537
|
+
var GetExecution = [9, n0, _GE, 0, () => GetExecutionRequest, () => GetExecutionResponse];
|
|
538
|
+
var GetExport = [9, n0, _GEe, 0, () => GetExportRequest, () => GetExportResponse];
|
|
539
|
+
var GetTable = [9, n0, _GT, 0, () => GetTableRequest, () => GetTableResponse];
|
|
540
|
+
var ListExecutions = [
|
|
541
|
+
9,
|
|
542
|
+
n0,
|
|
543
|
+
_LE,
|
|
544
|
+
0,
|
|
545
|
+
() => ListExecutionsRequest,
|
|
546
|
+
() => ListExecutionsResponse,
|
|
547
|
+
];
|
|
548
|
+
var ListExports = [9, n0, _LEi, 0, () => ListExportsRequest, () => ListExportsResponse];
|
|
549
|
+
var ListTables = [9, n0, _LT, 0, () => ListTablesRequest, () => ListTablesResponse];
|
|
550
|
+
var ListTagsForResource = [
|
|
551
|
+
9,
|
|
552
|
+
n0,
|
|
553
|
+
_LTFR,
|
|
554
|
+
0,
|
|
555
|
+
() => ListTagsForResourceRequest,
|
|
556
|
+
() => ListTagsForResourceResponse,
|
|
557
|
+
];
|
|
558
|
+
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
|
|
559
|
+
var UntagResource = [
|
|
560
|
+
9,
|
|
561
|
+
n0,
|
|
562
|
+
_UR,
|
|
563
|
+
0,
|
|
564
|
+
() => UntagResourceRequest,
|
|
565
|
+
() => UntagResourceResponse,
|
|
566
|
+
];
|
|
567
|
+
var UpdateExport = [9, n0, _UE, 0, () => UpdateExportRequest, () => UpdateExportResponse];
|
|
655
568
|
|
|
656
569
|
class CreateExportCommand extends smithyClient.Command
|
|
657
570
|
.classBuilder()
|
|
658
571
|
.ep(commonParams)
|
|
659
572
|
.m(function (Command, cs, config, o) {
|
|
660
|
-
return [
|
|
661
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
662
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
663
|
-
];
|
|
573
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
664
574
|
})
|
|
665
575
|
.s("AWSBillingAndCostManagementDataExports", "CreateExport", {})
|
|
666
576
|
.n("BCMDataExportsClient", "CreateExportCommand")
|
|
667
|
-
.
|
|
668
|
-
.ser(se_CreateExportCommand)
|
|
669
|
-
.de(de_CreateExportCommand)
|
|
577
|
+
.sc(CreateExport)
|
|
670
578
|
.build() {
|
|
671
579
|
}
|
|
672
580
|
|
|
@@ -674,16 +582,11 @@ class DeleteExportCommand extends smithyClient.Command
|
|
|
674
582
|
.classBuilder()
|
|
675
583
|
.ep(commonParams)
|
|
676
584
|
.m(function (Command, cs, config, o) {
|
|
677
|
-
return [
|
|
678
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
679
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
680
|
-
];
|
|
585
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
681
586
|
})
|
|
682
587
|
.s("AWSBillingAndCostManagementDataExports", "DeleteExport", {})
|
|
683
588
|
.n("BCMDataExportsClient", "DeleteExportCommand")
|
|
684
|
-
.
|
|
685
|
-
.ser(se_DeleteExportCommand)
|
|
686
|
-
.de(de_DeleteExportCommand)
|
|
589
|
+
.sc(DeleteExport)
|
|
687
590
|
.build() {
|
|
688
591
|
}
|
|
689
592
|
|
|
@@ -691,16 +594,11 @@ class GetExecutionCommand extends smithyClient.Command
|
|
|
691
594
|
.classBuilder()
|
|
692
595
|
.ep(commonParams)
|
|
693
596
|
.m(function (Command, cs, config, o) {
|
|
694
|
-
return [
|
|
695
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
696
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
697
|
-
];
|
|
597
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
698
598
|
})
|
|
699
599
|
.s("AWSBillingAndCostManagementDataExports", "GetExecution", {})
|
|
700
600
|
.n("BCMDataExportsClient", "GetExecutionCommand")
|
|
701
|
-
.
|
|
702
|
-
.ser(se_GetExecutionCommand)
|
|
703
|
-
.de(de_GetExecutionCommand)
|
|
601
|
+
.sc(GetExecution)
|
|
704
602
|
.build() {
|
|
705
603
|
}
|
|
706
604
|
|
|
@@ -708,16 +606,11 @@ class GetExportCommand extends smithyClient.Command
|
|
|
708
606
|
.classBuilder()
|
|
709
607
|
.ep(commonParams)
|
|
710
608
|
.m(function (Command, cs, config, o) {
|
|
711
|
-
return [
|
|
712
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
713
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
714
|
-
];
|
|
609
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
715
610
|
})
|
|
716
611
|
.s("AWSBillingAndCostManagementDataExports", "GetExport", {})
|
|
717
612
|
.n("BCMDataExportsClient", "GetExportCommand")
|
|
718
|
-
.
|
|
719
|
-
.ser(se_GetExportCommand)
|
|
720
|
-
.de(de_GetExportCommand)
|
|
613
|
+
.sc(GetExport)
|
|
721
614
|
.build() {
|
|
722
615
|
}
|
|
723
616
|
|
|
@@ -725,16 +618,11 @@ class GetTableCommand extends smithyClient.Command
|
|
|
725
618
|
.classBuilder()
|
|
726
619
|
.ep(commonParams)
|
|
727
620
|
.m(function (Command, cs, config, o) {
|
|
728
|
-
return [
|
|
729
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
730
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
731
|
-
];
|
|
621
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
732
622
|
})
|
|
733
623
|
.s("AWSBillingAndCostManagementDataExports", "GetTable", {})
|
|
734
624
|
.n("BCMDataExportsClient", "GetTableCommand")
|
|
735
|
-
.
|
|
736
|
-
.ser(se_GetTableCommand)
|
|
737
|
-
.de(de_GetTableCommand)
|
|
625
|
+
.sc(GetTable)
|
|
738
626
|
.build() {
|
|
739
627
|
}
|
|
740
628
|
|
|
@@ -742,16 +630,11 @@ class ListExecutionsCommand extends smithyClient.Command
|
|
|
742
630
|
.classBuilder()
|
|
743
631
|
.ep(commonParams)
|
|
744
632
|
.m(function (Command, cs, config, o) {
|
|
745
|
-
return [
|
|
746
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
747
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
748
|
-
];
|
|
633
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
749
634
|
})
|
|
750
635
|
.s("AWSBillingAndCostManagementDataExports", "ListExecutions", {})
|
|
751
636
|
.n("BCMDataExportsClient", "ListExecutionsCommand")
|
|
752
|
-
.
|
|
753
|
-
.ser(se_ListExecutionsCommand)
|
|
754
|
-
.de(de_ListExecutionsCommand)
|
|
637
|
+
.sc(ListExecutions)
|
|
755
638
|
.build() {
|
|
756
639
|
}
|
|
757
640
|
|
|
@@ -759,16 +642,11 @@ class ListExportsCommand extends smithyClient.Command
|
|
|
759
642
|
.classBuilder()
|
|
760
643
|
.ep(commonParams)
|
|
761
644
|
.m(function (Command, cs, config, o) {
|
|
762
|
-
return [
|
|
763
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
764
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
765
|
-
];
|
|
645
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
766
646
|
})
|
|
767
647
|
.s("AWSBillingAndCostManagementDataExports", "ListExports", {})
|
|
768
648
|
.n("BCMDataExportsClient", "ListExportsCommand")
|
|
769
|
-
.
|
|
770
|
-
.ser(se_ListExportsCommand)
|
|
771
|
-
.de(de_ListExportsCommand)
|
|
649
|
+
.sc(ListExports)
|
|
772
650
|
.build() {
|
|
773
651
|
}
|
|
774
652
|
|
|
@@ -776,16 +654,11 @@ class ListTablesCommand extends smithyClient.Command
|
|
|
776
654
|
.classBuilder()
|
|
777
655
|
.ep(commonParams)
|
|
778
656
|
.m(function (Command, cs, config, o) {
|
|
779
|
-
return [
|
|
780
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
781
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
782
|
-
];
|
|
657
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
783
658
|
})
|
|
784
659
|
.s("AWSBillingAndCostManagementDataExports", "ListTables", {})
|
|
785
660
|
.n("BCMDataExportsClient", "ListTablesCommand")
|
|
786
|
-
.
|
|
787
|
-
.ser(se_ListTablesCommand)
|
|
788
|
-
.de(de_ListTablesCommand)
|
|
661
|
+
.sc(ListTables)
|
|
789
662
|
.build() {
|
|
790
663
|
}
|
|
791
664
|
|
|
@@ -793,16 +666,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
793
666
|
.classBuilder()
|
|
794
667
|
.ep(commonParams)
|
|
795
668
|
.m(function (Command, cs, config, o) {
|
|
796
|
-
return [
|
|
797
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
798
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
799
|
-
];
|
|
669
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
800
670
|
})
|
|
801
671
|
.s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
|
|
802
672
|
.n("BCMDataExportsClient", "ListTagsForResourceCommand")
|
|
803
|
-
.
|
|
804
|
-
.ser(se_ListTagsForResourceCommand)
|
|
805
|
-
.de(de_ListTagsForResourceCommand)
|
|
673
|
+
.sc(ListTagsForResource)
|
|
806
674
|
.build() {
|
|
807
675
|
}
|
|
808
676
|
|
|
@@ -810,16 +678,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
810
678
|
.classBuilder()
|
|
811
679
|
.ep(commonParams)
|
|
812
680
|
.m(function (Command, cs, config, o) {
|
|
813
|
-
return [
|
|
814
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
815
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
816
|
-
];
|
|
681
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
817
682
|
})
|
|
818
683
|
.s("AWSBillingAndCostManagementDataExports", "TagResource", {})
|
|
819
684
|
.n("BCMDataExportsClient", "TagResourceCommand")
|
|
820
|
-
.
|
|
821
|
-
.ser(se_TagResourceCommand)
|
|
822
|
-
.de(de_TagResourceCommand)
|
|
685
|
+
.sc(TagResource)
|
|
823
686
|
.build() {
|
|
824
687
|
}
|
|
825
688
|
|
|
@@ -827,16 +690,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
827
690
|
.classBuilder()
|
|
828
691
|
.ep(commonParams)
|
|
829
692
|
.m(function (Command, cs, config, o) {
|
|
830
|
-
return [
|
|
831
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
832
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
833
|
-
];
|
|
693
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
834
694
|
})
|
|
835
695
|
.s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
|
|
836
696
|
.n("BCMDataExportsClient", "UntagResourceCommand")
|
|
837
|
-
.
|
|
838
|
-
.ser(se_UntagResourceCommand)
|
|
839
|
-
.de(de_UntagResourceCommand)
|
|
697
|
+
.sc(UntagResource)
|
|
840
698
|
.build() {
|
|
841
699
|
}
|
|
842
700
|
|
|
@@ -844,16 +702,11 @@ class UpdateExportCommand extends smithyClient.Command
|
|
|
844
702
|
.classBuilder()
|
|
845
703
|
.ep(commonParams)
|
|
846
704
|
.m(function (Command, cs, config, o) {
|
|
847
|
-
return [
|
|
848
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
849
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
850
|
-
];
|
|
705
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
851
706
|
})
|
|
852
707
|
.s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
|
|
853
708
|
.n("BCMDataExportsClient", "UpdateExportCommand")
|
|
854
|
-
.
|
|
855
|
-
.ser(se_UpdateExportCommand)
|
|
856
|
-
.de(de_UpdateExportCommand)
|
|
709
|
+
.sc(UpdateExport)
|
|
857
710
|
.build() {
|
|
858
711
|
}
|
|
859
712
|
|
|
@@ -891,7 +744,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
891
744
|
});
|
|
892
745
|
exports.BCMDataExports = BCMDataExports;
|
|
893
746
|
exports.BCMDataExportsClient = BCMDataExportsClient;
|
|
894
|
-
exports.BCMDataExportsServiceException = BCMDataExportsServiceException;
|
|
747
|
+
exports.BCMDataExportsServiceException = BCMDataExportsServiceException$1;
|
|
895
748
|
exports.CompressionOption = CompressionOption;
|
|
896
749
|
exports.CreateExportCommand = CreateExportCommand;
|
|
897
750
|
exports.DeleteExportCommand = DeleteExportCommand;
|
|
@@ -903,20 +756,20 @@ exports.FrequencyOption = FrequencyOption;
|
|
|
903
756
|
exports.GetExecutionCommand = GetExecutionCommand;
|
|
904
757
|
exports.GetExportCommand = GetExportCommand;
|
|
905
758
|
exports.GetTableCommand = GetTableCommand;
|
|
906
|
-
exports.InternalServerException = InternalServerException;
|
|
759
|
+
exports.InternalServerException = InternalServerException$1;
|
|
907
760
|
exports.ListExecutionsCommand = ListExecutionsCommand;
|
|
908
761
|
exports.ListExportsCommand = ListExportsCommand;
|
|
909
762
|
exports.ListTablesCommand = ListTablesCommand;
|
|
910
763
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
911
764
|
exports.OverwriteOption = OverwriteOption;
|
|
912
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
765
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
913
766
|
exports.S3OutputType = S3OutputType;
|
|
914
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
767
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
915
768
|
exports.TagResourceCommand = TagResourceCommand;
|
|
916
|
-
exports.ThrottlingException = ThrottlingException;
|
|
769
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
917
770
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
918
771
|
exports.UpdateExportCommand = UpdateExportCommand;
|
|
919
|
-
exports.ValidationException = ValidationException;
|
|
772
|
+
exports.ValidationException = ValidationException$1;
|
|
920
773
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
921
774
|
exports.paginateListExecutions = paginateListExecutions;
|
|
922
775
|
exports.paginateListExports = paginateListExports;
|