@aws-sdk/client-billing 3.952.0 → 3.953.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.
Files changed (32) hide show
  1. package/dist-cjs/index.js +200 -137
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AssociateSourceViewsCommand.js +2 -2
  4. package/dist-es/commands/CreateBillingViewCommand.js +2 -2
  5. package/dist-es/commands/DeleteBillingViewCommand.js +2 -2
  6. package/dist-es/commands/DisassociateSourceViewsCommand.js +2 -2
  7. package/dist-es/commands/GetBillingViewCommand.js +2 -2
  8. package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
  9. package/dist-es/commands/ListBillingViewsCommand.js +2 -2
  10. package/dist-es/commands/ListSourceViewsForBillingViewCommand.js +2 -2
  11. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  12. package/dist-es/commands/TagResourceCommand.js +2 -2
  13. package/dist-es/commands/UntagResourceCommand.js +2 -2
  14. package/dist-es/commands/UpdateBillingViewCommand.js +2 -2
  15. package/dist-es/index.js +1 -0
  16. package/dist-es/runtimeConfig.shared.js +6 -6
  17. package/dist-es/schemas/schemas_0.js +115 -108
  18. package/dist-types/BillingClient.d.ts +1 -10
  19. package/dist-types/index.d.ts +1 -0
  20. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  21. package/dist-types/runtimeConfig.d.ts +6 -2
  22. package/dist-types/runtimeConfig.native.d.ts +6 -2
  23. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  24. package/dist-types/schemas/schemas_0.d.ts +57 -69
  25. package/dist-types/ts3.4/BillingClient.d.ts +0 -4
  26. package/dist-types/ts3.4/index.d.ts +1 -0
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  31. package/dist-types/ts3.4/schemas/schemas_0.d.ts +56 -70
  32. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class BillingClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let BillingServiceException$1 = class BillingServiceException extends smithyClient.ServiceException {
113
+ class BillingServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, BillingServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends BillingServiceException$1 {
120
+ class AccessDeniedException extends BillingServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BillingService
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let BillingViewHealthStatusException$1 = class BillingViewHealthStatusException extends BillingServiceException$1 {
131
+ }
132
+ class BillingViewHealthStatusException extends BillingServiceException {
133
133
  name = "BillingViewHealthStatusException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let BillingViewHealthStatusException$1 = class BillingViewHealthStatusException
140
140
  });
141
141
  Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
142
142
  }
143
- };
144
- let ConflictException$1 = class ConflictException extends BillingServiceException$1 {
143
+ }
144
+ class ConflictException extends BillingServiceException {
145
145
  name = "ConflictException";
146
146
  $fault = "client";
147
147
  resourceId;
@@ -156,8 +156,8 @@ let ConflictException$1 = class ConflictException extends BillingServiceExceptio
156
156
  this.resourceId = opts.resourceId;
157
157
  this.resourceType = opts.resourceType;
158
158
  }
159
- };
160
- let InternalServerException$1 = class InternalServerException extends BillingServiceException$1 {
159
+ }
160
+ class InternalServerException extends BillingServiceException {
161
161
  name = "InternalServerException";
162
162
  $fault = "server";
163
163
  constructor(opts) {
@@ -168,8 +168,8 @@ let InternalServerException$1 = class InternalServerException extends BillingSer
168
168
  });
169
169
  Object.setPrototypeOf(this, InternalServerException.prototype);
170
170
  }
171
- };
172
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends BillingServiceException$1 {
171
+ }
172
+ class ResourceNotFoundException extends BillingServiceException {
173
173
  name = "ResourceNotFoundException";
174
174
  $fault = "client";
175
175
  resourceId;
@@ -184,8 +184,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Billin
184
184
  this.resourceId = opts.resourceId;
185
185
  this.resourceType = opts.resourceType;
186
186
  }
187
- };
188
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BillingServiceException$1 {
187
+ }
188
+ class ServiceQuotaExceededException extends BillingServiceException {
189
189
  name = "ServiceQuotaExceededException";
190
190
  $fault = "client";
191
191
  resourceId;
@@ -204,8 +204,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
204
204
  this.serviceCode = opts.serviceCode;
205
205
  this.quotaCode = opts.quotaCode;
206
206
  }
207
- };
208
- let ThrottlingException$1 = class ThrottlingException extends BillingServiceException$1 {
207
+ }
208
+ class ThrottlingException extends BillingServiceException {
209
209
  name = "ThrottlingException";
210
210
  $fault = "client";
211
211
  constructor(opts) {
@@ -216,8 +216,8 @@ let ThrottlingException$1 = class ThrottlingException extends BillingServiceExce
216
216
  });
217
217
  Object.setPrototypeOf(this, ThrottlingException.prototype);
218
218
  }
219
- };
220
- let ValidationException$1 = class ValidationException extends BillingServiceException$1 {
219
+ }
220
+ class ValidationException extends BillingServiceException {
221
221
  name = "ValidationException";
222
222
  $fault = "client";
223
223
  reason;
@@ -232,7 +232,7 @@ let ValidationException$1 = class ValidationException extends BillingServiceExce
232
232
  this.reason = opts.reason;
233
233
  this.fieldList = opts.fieldList;
234
234
  }
235
- };
235
+ }
236
236
 
237
237
  const _ADE = "AccessDeniedException";
238
238
  const _ASV = "AssociateSourceViews";
@@ -357,7 +357,7 @@ const _va = "value";
357
357
  const n0 = "com.amazonaws.billing";
358
358
  var BillingViewDescription = [0, n0, _BVD, 8, 0];
359
359
  var BillingViewName = [0, n0, _BVN, 8, 0];
360
- var AccessDeniedException = [
360
+ var AccessDeniedException$ = [
361
361
  -3,
362
362
  n0,
363
363
  _ADE,
@@ -365,11 +365,11 @@ var AccessDeniedException = [
365
365
  [_m],
366
366
  [0],
367
367
  ];
368
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
369
- var ActiveTimeRange = [3, n0, _ATR, 0, [_aAI, _aBI], [4, 4]];
370
- var AssociateSourceViewsRequest = [3, n0, _ASVR, 0, [_a, _sV], [0, 64 | 0]];
371
- var AssociateSourceViewsResponse = [3, n0, _ASVRs, 0, [_a], [0]];
372
- var BillingViewElement = [
368
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
369
+ var ActiveTimeRange$ = [3, n0, _ATR, 0, [_aAI, _aBI], [4, 4]];
370
+ var AssociateSourceViewsRequest$ = [3, n0, _ASVR, 0, [_a, _sV], [0, 64 | 0]];
371
+ var AssociateSourceViewsResponse$ = [3, n0, _ASVRs, 0, [_a], [0]];
372
+ var BillingViewElement$ = [
373
373
  3,
374
374
  n0,
375
375
  _BVE,
@@ -382,27 +382,27 @@ var BillingViewElement = [
382
382
  0,
383
383
  0,
384
384
  0,
385
- () => Expression,
385
+ () => Expression$,
386
386
  4,
387
387
  4,
388
388
  1,
389
389
  1,
390
390
  4,
391
- () => BillingViewHealthStatus,
391
+ () => BillingViewHealthStatus$,
392
392
  ],
393
393
  ];
394
- var BillingViewHealthStatus = [3, n0, _BVHS, 0, [_sC, _sR], [0, 64 | 0]];
395
- var BillingViewHealthStatusException = [-3, n0, _BVHSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
396
- schema.TypeRegistry.for(n0).registerError(BillingViewHealthStatusException, BillingViewHealthStatusException$1);
397
- var BillingViewListElement = [
394
+ var BillingViewHealthStatus$ = [3, n0, _BVHS, 0, [_sC, _sR], [0, 64 | 0]];
395
+ var BillingViewHealthStatusException$ = [-3, n0, _BVHSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
396
+ schema.TypeRegistry.for(n0).registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
397
+ var BillingViewListElement$ = [
398
398
  3,
399
399
  n0,
400
400
  _BVLE,
401
401
  0,
402
402
  [_a, _n, _d, _oAI, _sAI, _bVT, _hS],
403
- [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => BillingViewHealthStatus],
403
+ [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => BillingViewHealthStatus$],
404
404
  ];
405
- var ConflictException = [
405
+ var ConflictException$ = [
406
406
  -3,
407
407
  n0,
408
408
  _CE,
@@ -410,8 +410,8 @@ var ConflictException = [
410
410
  [_m, _rI, _rT],
411
411
  [0, 0, 0],
412
412
  ];
413
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
414
- var CreateBillingViewRequest = [
413
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
414
+ var CreateBillingViewRequest$ = [
415
415
  3,
416
416
  n0,
417
417
  _CBVR,
@@ -421,30 +421,30 @@ var CreateBillingViewRequest = [
421
421
  [() => BillingViewName, 0],
422
422
  [() => BillingViewDescription, 0],
423
423
  64 | 0,
424
- () => Expression,
424
+ () => Expression$,
425
425
  [0, { [_hH]: _XACT, [_iT]: 1 }],
426
426
  () => ResourceTagList,
427
427
  ],
428
428
  ];
429
- var CreateBillingViewResponse = [3, n0, _CBVRr, 0, [_a, _cA], [0, 4]];
430
- var DeleteBillingViewRequest = [3, n0, _DBVR, 0, [_a, _f], [0, 2]];
431
- var DeleteBillingViewResponse = [3, n0, _DBVRe, 0, [_a], [0]];
432
- var DimensionValues = [3, n0, _DV, 0, [_k, _v], [0, 64 | 0]];
433
- var DisassociateSourceViewsRequest = [3, n0, _DSVR, 0, [_a, _sV], [0, 64 | 0]];
434
- var DisassociateSourceViewsResponse = [3, n0, _DSVRi, 0, [_a], [0]];
435
- var Expression = [
429
+ var CreateBillingViewResponse$ = [3, n0, _CBVRr, 0, [_a, _cA], [0, 4]];
430
+ var DeleteBillingViewRequest$ = [3, n0, _DBVR, 0, [_a, _f], [0, 2]];
431
+ var DeleteBillingViewResponse$ = [3, n0, _DBVRe, 0, [_a], [0]];
432
+ var DimensionValues$ = [3, n0, _DV, 0, [_k, _v], [0, 64 | 0]];
433
+ var DisassociateSourceViewsRequest$ = [3, n0, _DSVR, 0, [_a, _sV], [0, 64 | 0]];
434
+ var DisassociateSourceViewsResponse$ = [3, n0, _DSVRi, 0, [_a], [0]];
435
+ var Expression$ = [
436
436
  3,
437
437
  n0,
438
438
  _E,
439
439
  0,
440
440
  [_di, _t, _tR],
441
- [() => DimensionValues, () => TagValues, () => TimeRange],
441
+ [() => DimensionValues$, () => TagValues$, () => TimeRange$],
442
442
  ];
443
- var GetBillingViewRequest = [3, n0, _GBVR, 0, [_a], [0]];
444
- var GetBillingViewResponse = [3, n0, _GBVRe, 0, [_bV], [[() => BillingViewElement, 0]]];
445
- var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rA], [0]];
446
- var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_rA, _p], [0, 0]];
447
- var InternalServerException = [
443
+ var GetBillingViewRequest$ = [3, n0, _GBVR, 0, [_a], [0]];
444
+ var GetBillingViewResponse$ = [3, n0, _GBVRe, 0, [_bV], [[() => BillingViewElement$, 0]]];
445
+ var GetResourcePolicyRequest$ = [3, n0, _GRPR, 0, [_rA], [0]];
446
+ var GetResourcePolicyResponse$ = [3, n0, _GRPRe, 0, [_rA, _p], [0, 0]];
447
+ var InternalServerException$ = [
448
448
  -3,
449
449
  n0,
450
450
  _ISE,
@@ -452,16 +452,16 @@ var InternalServerException = [
452
452
  [_m],
453
453
  [0],
454
454
  ];
455
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
456
- var ListBillingViewsRequest = [
455
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
456
+ var ListBillingViewsRequest$ = [
457
457
  3,
458
458
  n0,
459
459
  _LBVR,
460
460
  0,
461
461
  [_aTR, _ar, _bVTi, _na, _oAI, _sAI, _mR, _nT],
462
- [() => ActiveTimeRange, 64 | 0, 64 | 0, () => StringSearches, 0, 0, 1, 0],
462
+ [() => ActiveTimeRange$, 64 | 0, 64 | 0, () => StringSearches, 0, 0, 1, 0],
463
463
  ];
464
- var ListBillingViewsResponse = [
464
+ var ListBillingViewsResponse$ = [
465
465
  3,
466
466
  n0,
467
467
  _LBVRi,
@@ -469,7 +469,7 @@ var ListBillingViewsResponse = [
469
469
  [_bVi, _nT],
470
470
  [[() => BillingViewList, 0], 0],
471
471
  ];
472
- var ListSourceViewsForBillingViewRequest = [
472
+ var ListSourceViewsForBillingViewRequest$ = [
473
473
  3,
474
474
  n0,
475
475
  _LSVFBVR,
@@ -477,7 +477,7 @@ var ListSourceViewsForBillingViewRequest = [
477
477
  [_a, _mR, _nT],
478
478
  [0, 1, 0],
479
479
  ];
480
- var ListSourceViewsForBillingViewResponse = [
480
+ var ListSourceViewsForBillingViewResponse$ = [
481
481
  3,
482
482
  n0,
483
483
  _LSVFBVRi,
@@ -485,9 +485,9 @@ var ListSourceViewsForBillingViewResponse = [
485
485
  [_sV, _nT],
486
486
  [64 | 0, 0],
487
487
  ];
488
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
489
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_rTe], [() => ResourceTagList]];
490
- var ResourceNotFoundException = [
488
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
489
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_rTe], [() => ResourceTagList]];
490
+ var ResourceNotFoundException$ = [
491
491
  -3,
492
492
  n0,
493
493
  _RNFE,
@@ -495,9 +495,9 @@ var ResourceNotFoundException = [
495
495
  [_m, _rI, _rT],
496
496
  [0, 0, 0],
497
497
  ];
498
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
499
- var ResourceTag = [3, n0, _RT, 0, [_k, _va], [0, 0]];
500
- var ServiceQuotaExceededException = [
498
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
499
+ var ResourceTag$ = [3, n0, _RT, 0, [_k, _va], [0, 0]];
500
+ var ServiceQuotaExceededException$ = [
501
501
  -3,
502
502
  n0,
503
503
  _SQEE,
@@ -505,12 +505,12 @@ var ServiceQuotaExceededException = [
505
505
  [_m, _rI, _rT, _sCe, _qC],
506
506
  [0, 0, 0, 0, 0],
507
507
  ];
508
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
509
- var StringSearch = [3, n0, _SS, 0, [_sO, _sVe], [0, 0]];
510
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _rTe], [0, () => ResourceTagList]];
511
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
512
- var TagValues = [3, n0, _TV, 0, [_k, _v], [0, 64 | 0]];
513
- var ThrottlingException = [
508
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
509
+ var StringSearch$ = [3, n0, _SS, 0, [_sO, _sVe], [0, 0]];
510
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _rTe], [0, () => ResourceTagList]];
511
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
512
+ var TagValues$ = [3, n0, _TV, 0, [_k, _v], [0, 64 | 0]];
513
+ var ThrottlingException$ = [
514
514
  -3,
515
515
  n0,
516
516
  _TE,
@@ -518,20 +518,20 @@ var ThrottlingException = [
518
518
  [_m],
519
519
  [0],
520
520
  ];
521
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
522
- var TimeRange = [3, n0, _TR, 0, [_bDI, _eDI], [4, 4]];
523
- var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _rTK], [0, 64 | 0]];
524
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
525
- var UpdateBillingViewRequest = [
521
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
522
+ var TimeRange$ = [3, n0, _TR, 0, [_bDI, _eDI], [4, 4]];
523
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _rTK], [0, 64 | 0]];
524
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
525
+ var UpdateBillingViewRequest$ = [
526
526
  3,
527
527
  n0,
528
528
  _UBVR,
529
529
  0,
530
530
  [_a, _n, _d, _dFE],
531
- [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], () => Expression],
531
+ [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], () => Expression$],
532
532
  ];
533
- var UpdateBillingViewResponse = [3, n0, _UBVRp, 0, [_a, _uA], [0, 4]];
534
- var ValidationException = [
533
+ var UpdateBillingViewResponse$ = [3, n0, _UBVRp, 0, [_a, _uA], [0, 4]];
534
+ var ValidationException$ = [
535
535
  -3,
536
536
  n0,
537
537
  _VE,
@@ -539,102 +539,109 @@ var ValidationException = [
539
539
  [_m, _r, _fL],
540
540
  [0, 0, () => ValidationExceptionFieldList],
541
541
  ];
542
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
543
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
544
- var BillingServiceException = [-3, _sm, "BillingServiceException", 0, [], []];
545
- schema.TypeRegistry.for(_sm).registerError(BillingServiceException, BillingServiceException$1);
546
- var BillingViewList = [1, n0, _BVL, 0, [() => BillingViewListElement, 0]];
547
- var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag];
548
- var StringSearches = [1, n0, _SSt, 0, () => StringSearch];
549
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
550
- var AssociateSourceViews = [
542
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
543
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
544
+ var BillingServiceException$ = [-3, _sm, "BillingServiceException", 0, [], []];
545
+ schema.TypeRegistry.for(_sm).registerError(BillingServiceException$, BillingServiceException);
546
+ var BillingViewList = [1, n0, _BVL, 0, [() => BillingViewListElement$, 0]];
547
+ var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag$];
548
+ var StringSearches = [1, n0, _SSt, 0, () => StringSearch$];
549
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
550
+ var AssociateSourceViews$ = [
551
551
  9,
552
552
  n0,
553
553
  _ASV,
554
554
  2,
555
- () => AssociateSourceViewsRequest,
556
- () => AssociateSourceViewsResponse,
555
+ () => AssociateSourceViewsRequest$,
556
+ () => AssociateSourceViewsResponse$,
557
557
  ];
558
- var CreateBillingView = [
558
+ var CreateBillingView$ = [
559
559
  9,
560
560
  n0,
561
561
  _CBV,
562
562
  2,
563
- () => CreateBillingViewRequest,
564
- () => CreateBillingViewResponse,
563
+ () => CreateBillingViewRequest$,
564
+ () => CreateBillingViewResponse$,
565
565
  ];
566
- var DeleteBillingView = [
566
+ var DeleteBillingView$ = [
567
567
  9,
568
568
  n0,
569
569
  _DBV,
570
570
  2,
571
- () => DeleteBillingViewRequest,
572
- () => DeleteBillingViewResponse,
571
+ () => DeleteBillingViewRequest$,
572
+ () => DeleteBillingViewResponse$,
573
573
  ];
574
- var DisassociateSourceViews = [
574
+ var DisassociateSourceViews$ = [
575
575
  9,
576
576
  n0,
577
577
  _DSV,
578
578
  2,
579
- () => DisassociateSourceViewsRequest,
580
- () => DisassociateSourceViewsResponse,
579
+ () => DisassociateSourceViewsRequest$,
580
+ () => DisassociateSourceViewsResponse$,
581
581
  ];
582
- var GetBillingView = [
582
+ var GetBillingView$ = [
583
583
  9,
584
584
  n0,
585
585
  _GBV,
586
586
  0,
587
- () => GetBillingViewRequest,
588
- () => GetBillingViewResponse,
587
+ () => GetBillingViewRequest$,
588
+ () => GetBillingViewResponse$,
589
589
  ];
590
- var GetResourcePolicy = [
590
+ var GetResourcePolicy$ = [
591
591
  9,
592
592
  n0,
593
593
  _GRP,
594
594
  0,
595
- () => GetResourcePolicyRequest,
596
- () => GetResourcePolicyResponse,
595
+ () => GetResourcePolicyRequest$,
596
+ () => GetResourcePolicyResponse$,
597
597
  ];
598
- var ListBillingViews = [
598
+ var ListBillingViews$ = [
599
599
  9,
600
600
  n0,
601
601
  _LBV,
602
602
  { [_h]: ["POST", "/", 200] },
603
- () => ListBillingViewsRequest,
604
- () => ListBillingViewsResponse,
603
+ () => ListBillingViewsRequest$,
604
+ () => ListBillingViewsResponse$,
605
605
  ];
606
- var ListSourceViewsForBillingView = [
606
+ var ListSourceViewsForBillingView$ = [
607
607
  9,
608
608
  n0,
609
609
  _LSVFBV,
610
610
  0,
611
- () => ListSourceViewsForBillingViewRequest,
612
- () => ListSourceViewsForBillingViewResponse,
611
+ () => ListSourceViewsForBillingViewRequest$,
612
+ () => ListSourceViewsForBillingViewResponse$,
613
613
  ];
614
- var ListTagsForResource = [
614
+ var ListTagsForResource$ = [
615
615
  9,
616
616
  n0,
617
617
  _LTFR,
618
618
  0,
619
- () => ListTagsForResourceRequest,
620
- () => ListTagsForResourceResponse,
619
+ () => ListTagsForResourceRequest$,
620
+ () => ListTagsForResourceResponse$,
621
+ ];
622
+ var TagResource$ = [
623
+ 9,
624
+ n0,
625
+ _TRa,
626
+ 0,
627
+ () => TagResourceRequest$,
628
+ () => TagResourceResponse$,
621
629
  ];
622
- var TagResource = [9, n0, _TRa, 0, () => TagResourceRequest, () => TagResourceResponse];
623
- var UntagResource = [
630
+ var UntagResource$ = [
624
631
  9,
625
632
  n0,
626
633
  _UR,
627
634
  0,
628
- () => UntagResourceRequest,
629
- () => UntagResourceResponse,
635
+ () => UntagResourceRequest$,
636
+ () => UntagResourceResponse$,
630
637
  ];
631
- var UpdateBillingView = [
638
+ var UpdateBillingView$ = [
632
639
  9,
633
640
  n0,
634
641
  _UBV,
635
642
  2,
636
- () => UpdateBillingViewRequest,
637
- () => UpdateBillingViewResponse,
643
+ () => UpdateBillingViewRequest$,
644
+ () => UpdateBillingViewResponse$,
638
645
  ];
639
646
 
640
647
  class AssociateSourceViewsCommand extends smithyClient.Command
@@ -645,7 +652,7 @@ class AssociateSourceViewsCommand extends smithyClient.Command
645
652
  })
646
653
  .s("AWSBilling", "AssociateSourceViews", {})
647
654
  .n("BillingClient", "AssociateSourceViewsCommand")
648
- .sc(AssociateSourceViews)
655
+ .sc(AssociateSourceViews$)
649
656
  .build() {
650
657
  }
651
658
 
@@ -657,7 +664,7 @@ class CreateBillingViewCommand extends smithyClient.Command
657
664
  })
658
665
  .s("AWSBilling", "CreateBillingView", {})
659
666
  .n("BillingClient", "CreateBillingViewCommand")
660
- .sc(CreateBillingView)
667
+ .sc(CreateBillingView$)
661
668
  .build() {
662
669
  }
663
670
 
@@ -669,7 +676,7 @@ class DeleteBillingViewCommand extends smithyClient.Command
669
676
  })
670
677
  .s("AWSBilling", "DeleteBillingView", {})
671
678
  .n("BillingClient", "DeleteBillingViewCommand")
672
- .sc(DeleteBillingView)
679
+ .sc(DeleteBillingView$)
673
680
  .build() {
674
681
  }
675
682
 
@@ -681,7 +688,7 @@ class DisassociateSourceViewsCommand extends smithyClient.Command
681
688
  })
682
689
  .s("AWSBilling", "DisassociateSourceViews", {})
683
690
  .n("BillingClient", "DisassociateSourceViewsCommand")
684
- .sc(DisassociateSourceViews)
691
+ .sc(DisassociateSourceViews$)
685
692
  .build() {
686
693
  }
687
694
 
@@ -693,7 +700,7 @@ class GetBillingViewCommand extends smithyClient.Command
693
700
  })
694
701
  .s("AWSBilling", "GetBillingView", {})
695
702
  .n("BillingClient", "GetBillingViewCommand")
696
- .sc(GetBillingView)
703
+ .sc(GetBillingView$)
697
704
  .build() {
698
705
  }
699
706
 
@@ -705,7 +712,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
705
712
  })
706
713
  .s("AWSBilling", "GetResourcePolicy", {})
707
714
  .n("BillingClient", "GetResourcePolicyCommand")
708
- .sc(GetResourcePolicy)
715
+ .sc(GetResourcePolicy$)
709
716
  .build() {
710
717
  }
711
718
 
@@ -717,7 +724,7 @@ class ListBillingViewsCommand extends smithyClient.Command
717
724
  })
718
725
  .s("AWSBilling", "ListBillingViews", {})
719
726
  .n("BillingClient", "ListBillingViewsCommand")
720
- .sc(ListBillingViews)
727
+ .sc(ListBillingViews$)
721
728
  .build() {
722
729
  }
723
730
 
@@ -729,7 +736,7 @@ class ListSourceViewsForBillingViewCommand extends smithyClient.Command
729
736
  })
730
737
  .s("AWSBilling", "ListSourceViewsForBillingView", {})
731
738
  .n("BillingClient", "ListSourceViewsForBillingViewCommand")
732
- .sc(ListSourceViewsForBillingView)
739
+ .sc(ListSourceViewsForBillingView$)
733
740
  .build() {
734
741
  }
735
742
 
@@ -741,7 +748,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
741
748
  })
742
749
  .s("AWSBilling", "ListTagsForResource", {})
743
750
  .n("BillingClient", "ListTagsForResourceCommand")
744
- .sc(ListTagsForResource)
751
+ .sc(ListTagsForResource$)
745
752
  .build() {
746
753
  }
747
754
 
@@ -753,7 +760,7 @@ class TagResourceCommand extends smithyClient.Command
753
760
  })
754
761
  .s("AWSBilling", "TagResource", {})
755
762
  .n("BillingClient", "TagResourceCommand")
756
- .sc(TagResource)
763
+ .sc(TagResource$)
757
764
  .build() {
758
765
  }
759
766
 
@@ -765,7 +772,7 @@ class UntagResourceCommand extends smithyClient.Command
765
772
  })
766
773
  .s("AWSBilling", "UntagResource", {})
767
774
  .n("BillingClient", "UntagResourceCommand")
768
- .sc(UntagResource)
775
+ .sc(UntagResource$)
769
776
  .build() {
770
777
  }
771
778
 
@@ -777,7 +784,7 @@ class UpdateBillingViewCommand extends smithyClient.Command
777
784
  })
778
785
  .s("AWSBilling", "UpdateBillingView", {})
779
786
  .n("BillingClient", "UpdateBillingViewCommand")
780
- .sc(UpdateBillingView)
787
+ .sc(UpdateBillingView$)
781
788
  .build() {
782
789
  }
783
790
 
@@ -847,34 +854,90 @@ Object.defineProperty(exports, "__Client", {
847
854
  enumerable: true,
848
855
  get: function () { return smithyClient.Client; }
849
856
  });
850
- exports.AccessDeniedException = AccessDeniedException$1;
857
+ exports.AccessDeniedException = AccessDeniedException;
858
+ exports.AccessDeniedException$ = AccessDeniedException$;
859
+ exports.ActiveTimeRange$ = ActiveTimeRange$;
860
+ exports.AssociateSourceViews$ = AssociateSourceViews$;
851
861
  exports.AssociateSourceViewsCommand = AssociateSourceViewsCommand;
862
+ exports.AssociateSourceViewsRequest$ = AssociateSourceViewsRequest$;
863
+ exports.AssociateSourceViewsResponse$ = AssociateSourceViewsResponse$;
852
864
  exports.Billing = Billing;
853
865
  exports.BillingClient = BillingClient;
854
- exports.BillingServiceException = BillingServiceException$1;
855
- exports.BillingViewHealthStatusException = BillingViewHealthStatusException$1;
866
+ exports.BillingServiceException = BillingServiceException;
867
+ exports.BillingServiceException$ = BillingServiceException$;
868
+ exports.BillingViewElement$ = BillingViewElement$;
869
+ exports.BillingViewHealthStatus$ = BillingViewHealthStatus$;
870
+ exports.BillingViewHealthStatusException = BillingViewHealthStatusException;
871
+ exports.BillingViewHealthStatusException$ = BillingViewHealthStatusException$;
872
+ exports.BillingViewListElement$ = BillingViewListElement$;
856
873
  exports.BillingViewStatus = BillingViewStatus;
857
874
  exports.BillingViewStatusReason = BillingViewStatusReason;
858
875
  exports.BillingViewType = BillingViewType;
859
- exports.ConflictException = ConflictException$1;
876
+ exports.ConflictException = ConflictException;
877
+ exports.ConflictException$ = ConflictException$;
878
+ exports.CreateBillingView$ = CreateBillingView$;
860
879
  exports.CreateBillingViewCommand = CreateBillingViewCommand;
880
+ exports.CreateBillingViewRequest$ = CreateBillingViewRequest$;
881
+ exports.CreateBillingViewResponse$ = CreateBillingViewResponse$;
882
+ exports.DeleteBillingView$ = DeleteBillingView$;
861
883
  exports.DeleteBillingViewCommand = DeleteBillingViewCommand;
884
+ exports.DeleteBillingViewRequest$ = DeleteBillingViewRequest$;
885
+ exports.DeleteBillingViewResponse$ = DeleteBillingViewResponse$;
862
886
  exports.Dimension = Dimension;
887
+ exports.DimensionValues$ = DimensionValues$;
888
+ exports.DisassociateSourceViews$ = DisassociateSourceViews$;
863
889
  exports.DisassociateSourceViewsCommand = DisassociateSourceViewsCommand;
890
+ exports.DisassociateSourceViewsRequest$ = DisassociateSourceViewsRequest$;
891
+ exports.DisassociateSourceViewsResponse$ = DisassociateSourceViewsResponse$;
892
+ exports.Expression$ = Expression$;
893
+ exports.GetBillingView$ = GetBillingView$;
864
894
  exports.GetBillingViewCommand = GetBillingViewCommand;
895
+ exports.GetBillingViewRequest$ = GetBillingViewRequest$;
896
+ exports.GetBillingViewResponse$ = GetBillingViewResponse$;
897
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
865
898
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
866
- exports.InternalServerException = InternalServerException$1;
899
+ exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
900
+ exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
901
+ exports.InternalServerException = InternalServerException;
902
+ exports.InternalServerException$ = InternalServerException$;
903
+ exports.ListBillingViews$ = ListBillingViews$;
867
904
  exports.ListBillingViewsCommand = ListBillingViewsCommand;
905
+ exports.ListBillingViewsRequest$ = ListBillingViewsRequest$;
906
+ exports.ListBillingViewsResponse$ = ListBillingViewsResponse$;
907
+ exports.ListSourceViewsForBillingView$ = ListSourceViewsForBillingView$;
868
908
  exports.ListSourceViewsForBillingViewCommand = ListSourceViewsForBillingViewCommand;
909
+ exports.ListSourceViewsForBillingViewRequest$ = ListSourceViewsForBillingViewRequest$;
910
+ exports.ListSourceViewsForBillingViewResponse$ = ListSourceViewsForBillingViewResponse$;
911
+ exports.ListTagsForResource$ = ListTagsForResource$;
869
912
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
870
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
913
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
914
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
915
+ exports.ResourceNotFoundException = ResourceNotFoundException;
916
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
917
+ exports.ResourceTag$ = ResourceTag$;
871
918
  exports.SearchOption = SearchOption;
872
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
919
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
920
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
921
+ exports.StringSearch$ = StringSearch$;
922
+ exports.TagResource$ = TagResource$;
873
923
  exports.TagResourceCommand = TagResourceCommand;
874
- exports.ThrottlingException = ThrottlingException$1;
924
+ exports.TagResourceRequest$ = TagResourceRequest$;
925
+ exports.TagResourceResponse$ = TagResourceResponse$;
926
+ exports.TagValues$ = TagValues$;
927
+ exports.ThrottlingException = ThrottlingException;
928
+ exports.ThrottlingException$ = ThrottlingException$;
929
+ exports.TimeRange$ = TimeRange$;
930
+ exports.UntagResource$ = UntagResource$;
875
931
  exports.UntagResourceCommand = UntagResourceCommand;
932
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
933
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
934
+ exports.UpdateBillingView$ = UpdateBillingView$;
876
935
  exports.UpdateBillingViewCommand = UpdateBillingViewCommand;
877
- exports.ValidationException = ValidationException$1;
936
+ exports.UpdateBillingViewRequest$ = UpdateBillingViewRequest$;
937
+ exports.UpdateBillingViewResponse$ = UpdateBillingViewResponse$;
938
+ exports.ValidationException = ValidationException;
939
+ exports.ValidationException$ = ValidationException$;
940
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
878
941
  exports.ValidationExceptionReason = ValidationExceptionReason;
879
942
  exports.paginateListBillingViews = paginateListBillingViews;
880
943
  exports.paginateListSourceViewsForBillingView = paginateListSourceViewsForBillingView;