@aws-sdk/client-billing 3.1100.0 → 3.1102.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 (31) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +236 -19
  3. package/dist-es/Billing.js +8 -0
  4. package/dist-es/commands/GetEnterpriseSupportChargeSummaryCommand.js +4 -0
  5. package/dist-es/commands/GetEnterpriseSupportContractDetailsCommand.js +4 -0
  6. package/dist-es/commands/ListEnterpriseSupportLinkedAccountChargesCommand.js +4 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/schemas/schemas_0.js +199 -18
  11. package/dist-types/Billing.d.ts +28 -0
  12. package/dist-types/BillingClient.d.ts +5 -2
  13. package/dist-types/commands/GetEnterpriseSupportChargeSummaryCommand.d.ts +122 -0
  14. package/dist-types/commands/GetEnterpriseSupportContractDetailsCommand.d.ts +143 -0
  15. package/dist-types/commands/ListEnterpriseSupportLinkedAccountChargesCommand.d.ts +120 -0
  16. package/dist-types/commands/index.d.ts +3 -0
  17. package/dist-types/models/models_0.d.ts +464 -0
  18. package/dist-types/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.d.ts +7 -0
  19. package/dist-types/pagination/index.d.ts +1 -0
  20. package/dist-types/schemas/schemas_0.d.ts +17 -0
  21. package/dist-types/ts3.4/Billing.d.ts +58 -0
  22. package/dist-types/ts3.4/BillingClient.d.ts +18 -0
  23. package/dist-types/ts3.4/commands/GetEnterpriseSupportChargeSummaryCommand.d.ts +42 -0
  24. package/dist-types/ts3.4/commands/GetEnterpriseSupportContractDetailsCommand.d.ts +42 -0
  25. package/dist-types/ts3.4/commands/ListEnterpriseSupportLinkedAccountChargesCommand.d.ts +42 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +104 -0
  28. package/dist-types/ts3.4/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.d.ts +11 -0
  29. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  31. package/package.json +3 -3
@@ -8,8 +8,11 @@ import { GetBillingPreferencesCommand, } from "./commands/GetBillingPreferencesC
8
8
  import { GetBillingViewCommand, } from "./commands/GetBillingViewCommand";
9
9
  import { GetCreditAllocationHistoryCommand, } from "./commands/GetCreditAllocationHistoryCommand";
10
10
  import { GetCreditsCommand, } from "./commands/GetCreditsCommand";
11
+ import { GetEnterpriseSupportChargeSummaryCommand, } from "./commands/GetEnterpriseSupportChargeSummaryCommand";
12
+ import { GetEnterpriseSupportContractDetailsCommand, } from "./commands/GetEnterpriseSupportContractDetailsCommand";
11
13
  import { GetResourcePolicyCommand, } from "./commands/GetResourcePolicyCommand";
12
14
  import { ListBillingViewsCommand, } from "./commands/ListBillingViewsCommand";
15
+ import { ListEnterpriseSupportLinkedAccountChargesCommand, } from "./commands/ListEnterpriseSupportLinkedAccountChargesCommand";
13
16
  import { ListSourceViewsForBillingViewCommand, } from "./commands/ListSourceViewsForBillingViewCommand";
14
17
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
15
18
  import { RedeemCreditsCommand, } from "./commands/RedeemCreditsCommand";
@@ -19,6 +22,7 @@ import { UpdateBillingPreferencesCommand, } from "./commands/UpdateBillingPrefer
19
22
  import { UpdateBillingViewCommand, } from "./commands/UpdateBillingViewCommand";
20
23
  import { paginateGetCreditAllocationHistory } from "./pagination/GetCreditAllocationHistoryPaginator";
21
24
  import { paginateListBillingViews } from "./pagination/ListBillingViewsPaginator";
25
+ import { paginateListEnterpriseSupportLinkedAccountCharges, } from "./pagination/ListEnterpriseSupportLinkedAccountChargesPaginator";
22
26
  import { paginateListSourceViewsForBillingView } from "./pagination/ListSourceViewsForBillingViewPaginator";
23
27
  const commands = {
24
28
  AssociateSourceViewsCommand,
@@ -29,8 +33,11 @@ const commands = {
29
33
  GetBillingViewCommand,
30
34
  GetCreditAllocationHistoryCommand,
31
35
  GetCreditsCommand,
36
+ GetEnterpriseSupportChargeSummaryCommand,
37
+ GetEnterpriseSupportContractDetailsCommand,
32
38
  GetResourcePolicyCommand,
33
39
  ListBillingViewsCommand,
40
+ ListEnterpriseSupportLinkedAccountChargesCommand,
34
41
  ListSourceViewsForBillingViewCommand,
35
42
  ListTagsForResourceCommand,
36
43
  RedeemCreditsCommand,
@@ -42,6 +49,7 @@ const commands = {
42
49
  const paginators = {
43
50
  paginateGetCreditAllocationHistory,
44
51
  paginateListBillingViews,
52
+ paginateListEnterpriseSupportLinkedAccountCharges,
45
53
  paginateListSourceViewsForBillingView,
46
54
  };
47
55
  export class Billing extends BillingClient {
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetEnterpriseSupportChargeSummary$ } from "../schemas/schemas_0";
3
+ export class GetEnterpriseSupportChargeSummaryCommand extends command(_ep0, _mw0, "GetEnterpriseSupportChargeSummary", GetEnterpriseSupportChargeSummary$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetEnterpriseSupportContractDetails$ } from "../schemas/schemas_0";
3
+ export class GetEnterpriseSupportContractDetailsCommand extends command(_ep0, _mw0, "GetEnterpriseSupportContractDetails", GetEnterpriseSupportContractDetails$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ListEnterpriseSupportLinkedAccountCharges$ } from "../schemas/schemas_0";
3
+ export class ListEnterpriseSupportLinkedAccountChargesCommand extends command(_ep0, _mw0, "ListEnterpriseSupportLinkedAccountCharges", ListEnterpriseSupportLinkedAccountCharges$) {
4
+ }
@@ -6,8 +6,11 @@ export * from "./GetBillingPreferencesCommand";
6
6
  export * from "./GetBillingViewCommand";
7
7
  export * from "./GetCreditAllocationHistoryCommand";
8
8
  export * from "./GetCreditsCommand";
9
+ export * from "./GetEnterpriseSupportChargeSummaryCommand";
10
+ export * from "./GetEnterpriseSupportContractDetailsCommand";
9
11
  export * from "./GetResourcePolicyCommand";
10
12
  export * from "./ListBillingViewsCommand";
13
+ export * from "./ListEnterpriseSupportLinkedAccountChargesCommand";
11
14
  export * from "./ListSourceViewsForBillingViewCommand";
12
15
  export * from "./ListTagsForResourceCommand";
13
16
  export * from "./RedeemCreditsCommand";
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BillingClient } from "../BillingClient";
3
+ import { ListEnterpriseSupportLinkedAccountChargesCommand, } from "../commands/ListEnterpriseSupportLinkedAccountChargesCommand";
4
+ export const paginateListEnterpriseSupportLinkedAccountCharges = createPaginator(BillingClient, ListEnterpriseSupportLinkedAccountChargesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./GetCreditAllocationHistoryPaginator";
3
3
  export * from "./ListBillingViewsPaginator";
4
+ export * from "./ListEnterpriseSupportLinkedAccountChargesPaginator";
4
5
  export * from "./ListSourceViewsForBillingViewPaginator";
@@ -1,4 +1,6 @@
1
1
  const _A = "Amount";
2
+ const _AC = "AdditionalCharge";
3
+ const _ACL = "AdditionalChargeList";
2
4
  const _ADE = "AccessDeniedException";
3
5
  const _ASV = "AssociateSourceViews";
4
6
  const _ASVR = "AssociateSourceViewsRequest";
@@ -18,8 +20,12 @@ const _BVHSE = "BillingViewHealthStatusException";
18
20
  const _BVL = "BillingViewList";
19
21
  const _BVLE = "BillingViewListElement";
20
22
  const _BVN = "BillingViewName";
23
+ const _CA = "ChargeAccount";
21
24
  const _CAHE = "CreditAllocationHistoryEntry";
22
25
  const _CAHL = "CreditAllocationHistoryList";
26
+ const _CAL = "ChargeAccountList";
27
+ const _CALo = "ContractAccountList";
28
+ const _CAo = "ContractAccount";
23
29
  const _CBV = "CreateBillingView";
24
30
  const _CBVR = "CreateBillingViewRequest";
25
31
  const _CBVRr = "CreateBillingViewResponse";
@@ -35,6 +41,7 @@ const _DSVR = "DisassociateSourceViewsRequest";
35
41
  const _DSVRi = "DisassociateSourceViewsResponse";
36
42
  const _DV = "DimensionValues";
37
43
  const _E = "Expression";
44
+ const _ESTP = "EnterpriseSupportTimePeriod";
38
45
  const _GBP = "GetBillingPreferences";
39
46
  const _GBPR = "GetBillingPreferencesRequest";
40
47
  const _GBPRe = "GetBillingPreferencesResponse";
@@ -47,29 +54,47 @@ const _GCAHR = "GetCreditAllocationHistoryRequest";
47
54
  const _GCAHRe = "GetCreditAllocationHistoryResponse";
48
55
  const _GCR = "GetCreditsRequest";
49
56
  const _GCRe = "GetCreditsResponse";
57
+ const _GESCD = "GetEnterpriseSupportContractDetails";
58
+ const _GESCDR = "GetEnterpriseSupportContractDetailsRequest";
59
+ const _GESCDRe = "GetEnterpriseSupportContractDetailsResponse";
60
+ const _GESCS = "GetEnterpriseSupportChargeSummary";
61
+ const _GESCSR = "GetEnterpriseSupportChargeSummaryRequest";
62
+ const _GESCSRe = "GetEnterpriseSupportChargeSummaryResponse";
50
63
  const _GRP = "GetResourcePolicy";
51
64
  const _GRPR = "GetResourcePolicyRequest";
52
65
  const _GRPRe = "GetResourcePolicyResponse";
53
66
  const _ISE = "InternalServerException";
67
+ const _LAC = "LinkedAccountCharge";
68
+ const _LACL = "LinkedAccountChargeList";
54
69
  const _LBV = "ListBillingViews";
55
70
  const _LBVR = "ListBillingViewsRequest";
56
71
  const _LBVRi = "ListBillingViewsResponse";
72
+ const _LESLAC = "ListEnterpriseSupportLinkedAccountCharges";
73
+ const _LESLACR = "ListEnterpriseSupportLinkedAccountChargesRequest";
74
+ const _LESLACRi = "ListEnterpriseSupportLinkedAccountChargesResponse";
57
75
  const _LSVFBV = "ListSourceViewsForBillingView";
58
76
  const _LSVFBVR = "ListSourceViewsForBillingViewRequest";
59
77
  const _LSVFBVRi = "ListSourceViewsForBillingViewResponse";
60
78
  const _LTFR = "ListTagsForResource";
61
79
  const _LTFRR = "ListTagsForResourceRequest";
62
80
  const _LTFRRi = "ListTagsForResourceResponse";
81
+ const _PP = "PricingPlan";
82
+ const _PPL = "PricingPlanList";
83
+ const _PPT = "PricingPlanTier";
84
+ const _PPTL = "PricingPlanTierList";
63
85
  const _RC = "RedeemCredits";
64
86
  const _RCR = "RedeemCreditsRequest";
65
87
  const _RCRe = "RedeemCreditsResponse";
66
88
  const _RNFE = "ResourceNotFoundException";
67
89
  const _RT = "ResourceTag";
68
90
  const _RTL = "ResourceTagList";
91
+ const _SLAU = "ServiceLevelAccountUsage";
92
+ const _SLAUL = "ServiceLevelAccountUsageList";
69
93
  const _SQEE = "ServiceQuotaExceededException";
70
94
  const _SS = "StringSearch";
71
95
  const _SSt = "StringSearches";
72
96
  const _TE = "ThrottlingException";
97
+ const _TPL = "TimePeriodList";
73
98
  const _TR = "TimeRange";
74
99
  const _TRR = "TagResourceRequest";
75
100
  const _TRRa = "TagResourceResponse";
@@ -88,23 +113,35 @@ const _VE = "ValidationException";
88
113
  const _VEF = "ValidationExceptionField";
89
114
  const _VEFL = "ValidationExceptionFieldList";
90
115
  const _XACT = "X-Amzn-Client-Token";
91
- const _a = "arn";
116
+ const _a = "amount";
92
117
  const _aAI = "activeAfterInclusive";
93
118
  const _aBI = "activeBeforeInclusive";
119
+ const _aCA = "aggregateChargesAdjustment";
94
120
  const _aHCSE = "accountHasCreditSharingEnabled";
95
121
  const _aI = "accountId";
96
122
  const _aN = "accountName";
97
123
  const _aPN = "applicableProductNames";
124
+ const _aPOAC = "additionalPercentageOfAggregateCharges";
98
125
  const _aQE = "awsQueryError";
126
+ const _aSC = "additionalSupportCharge";
127
+ const _aSEUS = "additionalSupportEligibleUsageSpend";
99
128
  const _aSN = "appliedServiceName";
100
129
  const _aT = "applicationType";
101
130
  const _aTR = "activeTimeRange";
102
- const _ar = "arns";
131
+ const _aTc = "accountType";
132
+ const _ar = "arn";
133
+ const _arn = "arns";
134
+ const _bC = "baseCharge";
135
+ const _bD = "beginDate";
103
136
  const _bDI = "beginDateInclusive";
137
+ const _bDi = "billDate";
104
138
  const _bM = "billingMonth";
105
139
  const _bP = "billingPeriod";
140
+ const _bPED = "billingPeriodEndDate";
106
141
  const _bPPK = "billingPreferencesPerKey";
142
+ const _bPSD = "billingPeriodStartDate";
107
143
  const _bPi = "billingPreferences";
144
+ const _bS = "billableSeconds";
108
145
  const _bV = "billingView";
109
146
  const _bVT = "billingViewType";
110
147
  const _bVTi = "billingViewTypes";
@@ -119,12 +156,17 @@ const _cCA = "costCategoryArn";
119
156
  const _cCV = "creditConsoleVisibility";
120
157
  const _cCo = "costCategories";
121
158
  const _cI = "creditId";
159
+ const _cP = "chargePercentage";
160
+ const _cPAI = "contractPayerAccountIds";
161
+ const _cPAIh = "chargedPayerAccountIds";
122
162
  const _cS = "creditStatus";
123
163
  const _cST = "creditSharingType";
124
- const _cT = "clientToken";
164
+ const _cT = "chargeType";
165
+ const _cTl = "clientToken";
125
166
  const _cTr = "creditType";
126
167
  const _cr = "credits";
127
168
  const _d = "description";
169
+ const _dATMC = "discountAppliesToMinimumCharge";
128
170
  const _dFE = "dataFilterExpression";
129
171
  const _dVC = "derivedViewCount";
130
172
  const _di = "dimensions";
@@ -143,11 +185,20 @@ const _h = "http";
143
185
  const _hE = "httpError";
144
186
  const _hH = "httpHeader";
145
187
  const _hS = "healthStatus";
188
+ const _i = "incremental";
146
189
  const _iA = "initialAmount";
190
+ const _iC = "incrementCharge";
191
+ const _iCA = "isContractActive";
192
+ const _iE = "isEstimated";
147
193
  const _iEB = "isEstimatedBill";
194
+ const _iG = "isGdn";
148
195
  const _iT = "idempotencyToken";
196
+ const _in = "increment";
149
197
  const _k = "key";
198
+ const _lA = "linkedAccount";
199
+ const _lTP = "linkedTimePeriods";
150
200
  const _m = "message";
201
+ const _mC = "minimumCharge";
151
202
  const _mR = "maxResults";
152
203
  const _mo = "month";
153
204
  const _n = "name";
@@ -156,9 +207,14 @@ const _na = "names";
156
207
  const _oAI = "ownerAccountId";
157
208
  const _p = "policy";
158
209
  const _pAF = "payerAccountFlag";
210
+ const _pAI = "payerAccountId";
159
211
  const _pC = "promoCode";
212
+ const _pDP = "planDiscountPercent";
213
+ const _pP = "pricingPlans";
214
+ const _pPI = "pricingPlanId";
160
215
  const _pR = "partialResults";
161
216
  const _pTA = "purchaseTypeApplications";
217
+ const _pTSES = "proratedTotalSupportEligibleSpend";
162
218
  const _qC = "quotaCode";
163
219
  const _r = "reason";
164
220
  const _rA = "remainingAmount";
@@ -171,17 +227,39 @@ const _rTe = "resourceTags";
171
227
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.billing";
172
228
  const _sA = "shareableAccounts";
173
229
  const _sAI = "sourceAccountId";
230
+ const _sAM = "supportAllocationMethod";
174
231
  const _sC = "serviceCode";
232
+ const _sCP = "supportChargePercentage";
175
233
  const _sCt = "statusCode";
234
+ const _sCu = "supportCharge";
176
235
  const _sD = "startDate";
236
+ const _sDu = "supportDiscount";
237
+ const _sEPP = "supportEffectivePricingPlan";
238
+ const _sESBS = "supportEligibleSpendByService";
177
239
  const _sO = "searchOption";
240
+ const _sPSD = "supportProrateStartDate";
178
241
  const _sR = "statusReasons";
242
+ const _sRIASD = "supportReservedInstanceAmortizationStartDate";
243
+ const _sRITM = "supportReservedInstanceTreatmentMethod";
244
+ const _sSPASD = "supportSavingsPlansAmortizationStartDate";
245
+ const _sSPTM = "supportSavingsPlansTreatmentMethod";
246
+ const _sTP = "subscriptionTimePeriods";
179
247
  const _sV = "sourceViews";
180
248
  const _sVC = "sourceViewCount";
181
249
  const _sVe = "searchValue";
182
250
  const _se = "server";
183
251
  const _t = "tags";
252
+ const _tM = "tierMinimum";
253
+ const _tMi = "tierMaximum";
184
254
  const _tR = "timeRange";
255
+ const _tS = "totalSeconds";
256
+ const _tSC = "totalSupportCharge";
257
+ const _tSERIS = "totalSupportEligibleReservedInstanceSpend";
258
+ const _tSES = "totalSupportEligibleSpend";
259
+ const _tSESPS = "totalSupportEligibleSavingsPlanSpend";
260
+ const _tSEUS = "totalSupportEligibleUsageSpend";
261
+ const _ti = "tiers";
262
+ const _tie = "tiered";
185
263
  const _uA = "updatedAt";
186
264
  const _v = "value";
187
265
  const _vDLUA = "viewDefinitionLastUpdatedAt";
@@ -254,6 +332,11 @@ export var ActiveTimeRange$ = [3, n0, _ATR,
254
332
  [_aAI, _aBI],
255
333
  [4, 4], 2
256
334
  ];
335
+ export var AdditionalCharge$ = [3, n0, _AC,
336
+ 0,
337
+ [_d, _a, _cT],
338
+ [0, 0, 0], 1
339
+ ];
257
340
  export var Amount$ = [3, n0, _A,
258
341
  0,
259
342
  [_cC, _cA],
@@ -261,12 +344,12 @@ export var Amount$ = [3, n0, _A,
261
344
  ];
262
345
  export var AssociateSourceViewsRequest$ = [3, n0, _ASVR,
263
346
  0,
264
- [_a, _sV],
347
+ [_ar, _sV],
265
348
  [0, 64 | 0], 2
266
349
  ];
267
350
  export var AssociateSourceViewsResponse$ = [3, n0, _ASVRs,
268
351
  0,
269
- [_a],
352
+ [_ar],
270
353
  [0], 1
271
354
  ];
272
355
  export var BillingFeatureFilter$ = [3, n0, _BFF,
@@ -291,7 +374,7 @@ export var BillingPreferenceSummary$ = [3, n0, _BPS,
291
374
  ];
292
375
  export var BillingViewElement$ = [3, n0, _BVE,
293
376
  0,
294
- [_a, _n, _d, _bVT, _oAI, _sAI, _dFE, _cAr, _uA, _dVC, _sVC, _vDLUA, _hS],
377
+ [_ar, _n, _d, _bVT, _oAI, _sAI, _dFE, _cAr, _uA, _dVC, _sVC, _vDLUA, _hS],
295
378
  [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => Expression$, 4, 4, 1, 1, 4, () => BillingViewHealthStatus$]
296
379
  ];
297
380
  export var BillingViewHealthStatus$ = [3, n0, _BVHS,
@@ -301,9 +384,19 @@ export var BillingViewHealthStatus$ = [3, n0, _BVHS,
301
384
  ];
302
385
  export var BillingViewListElement$ = [3, n0, _BVLE,
303
386
  0,
304
- [_a, _n, _d, _oAI, _sAI, _bVT, _hS],
387
+ [_ar, _n, _d, _oAI, _sAI, _bVT, _hS],
305
388
  [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => BillingViewHealthStatus$]
306
389
  ];
390
+ export var ChargeAccount$ = [3, n0, _CA,
391
+ 0,
392
+ [_aI, _cP],
393
+ [0, 0], 2
394
+ ];
395
+ export var ContractAccount$ = [3, n0, _CAo,
396
+ 0,
397
+ [_aI, _iG],
398
+ [0, 2], 2
399
+ ];
307
400
  export var CostCategoryValues$ = [3, n0, _CCV,
308
401
  0,
309
402
  [_k, _va],
@@ -311,12 +404,12 @@ export var CostCategoryValues$ = [3, n0, _CCV,
311
404
  ];
312
405
  export var CreateBillingViewRequest$ = [3, n0, _CBVR,
313
406
  0,
314
- [_n, _sV, _d, _dFE, _cT, _rTe],
407
+ [_n, _sV, _d, _dFE, _cTl, _rTe],
315
408
  [[() => BillingViewName, 0], 64 | 0, [() => BillingViewDescription, 0], () => Expression$, [0, { [_hH]: _XACT, [_iT]: 1 }], () => ResourceTagList], 2
316
409
  ];
317
410
  export var CreateBillingViewResponse$ = [3, n0, _CBVRr,
318
411
  0,
319
- [_a, _cAr],
412
+ [_ar, _cAr],
320
413
  [0, 4], 1
321
414
  ];
322
415
  export var CreditAllocationHistoryEntry$ = [3, n0, _CAHE,
@@ -331,12 +424,12 @@ export var CreditData$ = [3, n0, _CD,
331
424
  ];
332
425
  export var DeleteBillingViewRequest$ = [3, n0, _DBVR,
333
426
  0,
334
- [_a, _fo],
427
+ [_ar, _fo],
335
428
  [0, 2], 1
336
429
  ];
337
430
  export var DeleteBillingViewResponse$ = [3, n0, _DBVRe,
338
431
  0,
339
- [_a],
432
+ [_ar],
340
433
  [0], 1
341
434
  ];
342
435
  export var DimensionValues$ = [3, n0, _DV,
@@ -346,14 +439,19 @@ export var DimensionValues$ = [3, n0, _DV,
346
439
  ];
347
440
  export var DisassociateSourceViewsRequest$ = [3, n0, _DSVR,
348
441
  0,
349
- [_a, _sV],
442
+ [_ar, _sV],
350
443
  [0, 64 | 0], 2
351
444
  ];
352
445
  export var DisassociateSourceViewsResponse$ = [3, n0, _DSVRi,
353
446
  0,
354
- [_a],
447
+ [_ar],
355
448
  [0], 1
356
449
  ];
450
+ export var EnterpriseSupportTimePeriod$ = [3, n0, _ESTP,
451
+ 0,
452
+ [_bD, _eD],
453
+ [4, 4], 1
454
+ ];
357
455
  export var Expression$ = [3, n0, _E,
358
456
  0,
359
457
  [_di, _t, _cCo, _tR],
@@ -371,7 +469,7 @@ export var GetBillingPreferencesResponse$ = [3, n0, _GBPRe,
371
469
  ];
372
470
  export var GetBillingViewRequest$ = [3, n0, _GBVR,
373
471
  0,
374
- [_a],
472
+ [_ar],
375
473
  [0], 1
376
474
  ];
377
475
  export var GetBillingViewResponse$ = [3, n0, _GBVRe,
@@ -399,6 +497,26 @@ export var GetCreditsResponse$ = [3, n0, _GCRe,
399
497
  [_cr],
400
498
  [() => CreditDataList]
401
499
  ];
500
+ export var GetEnterpriseSupportChargeSummaryRequest$ = [3, n0, _GESCSR,
501
+ 0,
502
+ [_bM],
503
+ [0], 1
504
+ ];
505
+ export var GetEnterpriseSupportChargeSummaryResponse$ = [3, n0, _GESCSRe,
506
+ 0,
507
+ [_pAI, _bM, _bPSD, _bPED, _iE, _bDi, _sCu, _tSC, _sDu, _tSES, _tSEUS, _tSERIS, _tSESPS, _sCP, _sEPP],
508
+ [0, 0, 4, 4, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, () => PricingPlan$], 15
509
+ ];
510
+ export var GetEnterpriseSupportContractDetailsRequest$ = [3, n0, _GESCDR,
511
+ 0,
512
+ [_bM],
513
+ [0], 1
514
+ ];
515
+ export var GetEnterpriseSupportContractDetailsResponse$ = [3, n0, _GESCDRe,
516
+ 0,
517
+ [_sAM, _cPAI, _cPAIh, _pP, _iCA, _sRIASD, _sRITM, _sSPASD, _sSPTM, _sPSD, _aSC, _aSEUS],
518
+ [0, () => ContractAccountList, () => ChargeAccountList, () => PricingPlanList, 2, 4, 0, 4, 0, 4, () => AdditionalChargeList, () => AdditionalChargeList], 4
519
+ ];
402
520
  export var GetResourcePolicyRequest$ = [3, n0, _GRPR,
403
521
  0,
404
522
  [_rAe],
@@ -409,9 +527,14 @@ export var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
409
527
  [_rAe, _p],
410
528
  [0, 0], 1
411
529
  ];
530
+ export var LinkedAccountCharge$ = [3, n0, _LAC,
531
+ 0,
532
+ [_aI, _pAI, _bS, _tS, _tSES, _pTSES, _aTc, _lTP, _sTP, _tSERIS, _tSESPS, _sESBS],
533
+ [0, 0, 1, 1, 0, 0, 0, () => TimePeriodList, () => TimePeriodList, 0, 0, () => ServiceLevelAccountUsageList], 6
534
+ ];
412
535
  export var ListBillingViewsRequest$ = [3, n0, _LBVR,
413
536
  0,
414
- [_aTR, _ar, _bVTi, _na, _oAI, _sAI, _mR, _nT],
537
+ [_aTR, _arn, _bVTi, _na, _oAI, _sAI, _mR, _nT],
415
538
  [() => ActiveTimeRange$, 64 | 0, 64 | 0, () => StringSearches, 0, 0, 1, 0]
416
539
  ];
417
540
  export var ListBillingViewsResponse$ = [3, n0, _LBVRi,
@@ -419,9 +542,19 @@ export var ListBillingViewsResponse$ = [3, n0, _LBVRi,
419
542
  [_bVi, _nT],
420
543
  [[() => BillingViewList, 0], 0], 1
421
544
  ];
545
+ export var ListEnterpriseSupportLinkedAccountChargesRequest$ = [3, n0, _LESLACR,
546
+ 0,
547
+ [_bM, _aI, _mR, _nT],
548
+ [0, 0, 1, 0], 1
549
+ ];
550
+ export var ListEnterpriseSupportLinkedAccountChargesResponse$ = [3, n0, _LESLACRi,
551
+ 0,
552
+ [_lA, _nT],
553
+ [() => LinkedAccountChargeList, 0], 1
554
+ ];
422
555
  export var ListSourceViewsForBillingViewRequest$ = [3, n0, _LSVFBVR,
423
556
  0,
424
- [_a, _mR, _nT],
557
+ [_ar, _mR, _nT],
425
558
  [0, 1, 0], 1
426
559
  ];
427
560
  export var ListSourceViewsForBillingViewResponse$ = [3, n0, _LSVFBVRi,
@@ -439,6 +572,16 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
439
572
  [_rTe],
440
573
  [() => ResourceTagList]
441
574
  ];
575
+ export var PricingPlan$ = [3, n0, _PP,
576
+ 0,
577
+ [_ti, _pPI, _n, _d, _sD, _eD, _pDP, _dATMC, _mC, _tie],
578
+ [() => PricingPlanTierList, 0, 0, 0, 4, 4, 0, 2, 0, 0], 1
579
+ ];
580
+ export var PricingPlanTier$ = [3, n0, _PPT,
581
+ 0,
582
+ [_tM, _bC, _aPOAC, _aCA, _i, _tMi, _in, _iC],
583
+ [0, 0, 0, 0, 2, 0, 0, 0], 5
584
+ ];
442
585
  export var RedeemCreditsRequest$ = [3, n0, _RCR,
443
586
  0,
444
587
  [_pC],
@@ -454,6 +597,11 @@ export var ResourceTag$ = [3, n0, _RT,
454
597
  [_k, _v],
455
598
  [0, 0], 1
456
599
  ];
600
+ export var ServiceLevelAccountUsage$ = [3, n0, _SLAU,
601
+ 0,
602
+ [_sC, _tSES],
603
+ [0, 0]
604
+ ];
457
605
  export var StringSearch$ = [3, n0, _SS,
458
606
  0,
459
607
  [_sO, _sVe],
@@ -501,12 +649,12 @@ export var UpdateBillingPreferencesResponse$ = [3, n0, _UBPRp,
501
649
  ];
502
650
  export var UpdateBillingViewRequest$ = [3, n0, _UBVR,
503
651
  0,
504
- [_a, _n, _d, _dFE],
652
+ [_ar, _n, _d, _dFE],
505
653
  [0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], () => Expression$], 1
506
654
  ];
507
655
  export var UpdateBillingViewResponse$ = [3, n0, _UBVRp,
508
656
  0,
509
- [_a, _uA],
657
+ [_ar, _uA],
510
658
  [0, 4], 1
511
659
  ];
512
660
  export var ValidationExceptionField$ = [3, n0, _VEF,
@@ -514,6 +662,9 @@ export var ValidationExceptionField$ = [3, n0, _VEF,
514
662
  [_n, _m],
515
663
  [0, 0], 2
516
664
  ];
665
+ var AdditionalChargeList = [1, n0, _ACL,
666
+ 0, () => AdditionalCharge$
667
+ ];
517
668
  var BillingFeatureFilters = [1, n0, _BFFi,
518
669
  0, () => BillingFeatureFilter$
519
670
  ];
@@ -533,6 +684,12 @@ var BillingViewList = [1, n0, _BVL,
533
684
  var BillingViewSourceViewsList = 64 | 0;
534
685
  var BillingViewStatusReasons = 64 | 0;
535
686
  var BillingViewTypeList = 64 | 0;
687
+ var ChargeAccountList = [1, n0, _CAL,
688
+ 0, () => ChargeAccount$
689
+ ];
690
+ var ContractAccountList = [1, n0, _CALo,
691
+ 0, () => ContractAccount$
692
+ ];
536
693
  var CreditAllocationHistoryList = [1, n0, _CAHL,
537
694
  0, () => CreditAllocationHistoryEntry$
538
695
  ];
@@ -540,16 +697,31 @@ var CreditDataList = [1, n0, _CDL,
540
697
  0, () => CreditData$
541
698
  ];
542
699
  var FailedMonthsList = 64 | 0;
700
+ var LinkedAccountChargeList = [1, n0, _LACL,
701
+ 0, () => LinkedAccountCharge$
702
+ ];
703
+ var PricingPlanList = [1, n0, _PPL,
704
+ 0, () => PricingPlan$
705
+ ];
706
+ var PricingPlanTierList = [1, n0, _PPTL,
707
+ 0, () => PricingPlanTier$
708
+ ];
543
709
  var ProductNames = 64 | 0;
544
710
  var PurchaseTypeApplications = 64 | 0;
545
711
  var ResourceTagKeyList = 64 | 0;
546
712
  var ResourceTagList = [1, n0, _RTL,
547
713
  0, () => ResourceTag$
548
714
  ];
715
+ var ServiceLevelAccountUsageList = [1, n0, _SLAUL,
716
+ 0, () => ServiceLevelAccountUsage$
717
+ ];
549
718
  var ShareableAccountIds = 64 | 0;
550
719
  var StringSearches = [1, n0, _SSt,
551
720
  0, () => StringSearch$
552
721
  ];
722
+ var TimePeriodList = [1, n0, _TPL,
723
+ 0, () => EnterpriseSupportTimePeriod$
724
+ ];
553
725
  var ValidationExceptionFieldList = [1, n0, _VEFL,
554
726
  0, () => ValidationExceptionField$
555
727
  ];
@@ -578,12 +750,21 @@ export var GetCreditAllocationHistory$ = [9, n0, _GCAH,
578
750
  export var GetCredits$ = [9, n0, _GC,
579
751
  0, () => GetCreditsRequest$, () => GetCreditsResponse$
580
752
  ];
753
+ export var GetEnterpriseSupportChargeSummary$ = [9, n0, _GESCS,
754
+ 0, () => GetEnterpriseSupportChargeSummaryRequest$, () => GetEnterpriseSupportChargeSummaryResponse$
755
+ ];
756
+ export var GetEnterpriseSupportContractDetails$ = [9, n0, _GESCD,
757
+ 0, () => GetEnterpriseSupportContractDetailsRequest$, () => GetEnterpriseSupportContractDetailsResponse$
758
+ ];
581
759
  export var GetResourcePolicy$ = [9, n0, _GRP,
582
760
  0, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
583
761
  ];
584
762
  export var ListBillingViews$ = [9, n0, _LBV,
585
763
  { [_h]: ["POST", "/", 200] }, () => ListBillingViewsRequest$, () => ListBillingViewsResponse$
586
764
  ];
765
+ export var ListEnterpriseSupportLinkedAccountCharges$ = [9, n0, _LESLAC,
766
+ 0, () => ListEnterpriseSupportLinkedAccountChargesRequest$, () => ListEnterpriseSupportLinkedAccountChargesResponse$
767
+ ];
587
768
  export var ListSourceViewsForBillingView$ = [9, n0, _LSVFBV,
588
769
  0, () => ListSourceViewsForBillingViewRequest$, () => ListSourceViewsForBillingViewResponse$
589
770
  ];
@@ -8,8 +8,11 @@ import { type GetBillingPreferencesCommandInput, type GetBillingPreferencesComma
8
8
  import { type GetBillingViewCommandInput, type GetBillingViewCommandOutput } from "./commands/GetBillingViewCommand";
9
9
  import { type GetCreditAllocationHistoryCommandInput, type GetCreditAllocationHistoryCommandOutput } from "./commands/GetCreditAllocationHistoryCommand";
10
10
  import { type GetCreditsCommandInput, type GetCreditsCommandOutput } from "./commands/GetCreditsCommand";
11
+ import { type GetEnterpriseSupportChargeSummaryCommandInput, type GetEnterpriseSupportChargeSummaryCommandOutput } from "./commands/GetEnterpriseSupportChargeSummaryCommand";
12
+ import { type GetEnterpriseSupportContractDetailsCommandInput, type GetEnterpriseSupportContractDetailsCommandOutput } from "./commands/GetEnterpriseSupportContractDetailsCommand";
11
13
  import { type GetResourcePolicyCommandInput, type GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
12
14
  import { type ListBillingViewsCommandInput, type ListBillingViewsCommandOutput } from "./commands/ListBillingViewsCommand";
15
+ import { type ListEnterpriseSupportLinkedAccountChargesCommandInput, type ListEnterpriseSupportLinkedAccountChargesCommandOutput } from "./commands/ListEnterpriseSupportLinkedAccountChargesCommand";
13
16
  import { type ListSourceViewsForBillingViewCommandInput, type ListSourceViewsForBillingViewCommandOutput } from "./commands/ListSourceViewsForBillingViewCommand";
14
17
  import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
15
18
  import { type RedeemCreditsCommandInput, type RedeemCreditsCommandOutput } from "./commands/RedeemCreditsCommand";
@@ -66,6 +69,18 @@ export interface Billing {
66
69
  getCredits(args: GetCreditsCommandInput, options?: __HttpHandlerOptions): Promise<GetCreditsCommandOutput>;
67
70
  getCredits(args: GetCreditsCommandInput, cb: (err: any, data?: GetCreditsCommandOutput) => void): void;
68
71
  getCredits(args: GetCreditsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCreditsCommandOutput) => void): void;
72
+ /**
73
+ * @see {@link GetEnterpriseSupportChargeSummaryCommand}
74
+ */
75
+ getEnterpriseSupportChargeSummary(args: GetEnterpriseSupportChargeSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetEnterpriseSupportChargeSummaryCommandOutput>;
76
+ getEnterpriseSupportChargeSummary(args: GetEnterpriseSupportChargeSummaryCommandInput, cb: (err: any, data?: GetEnterpriseSupportChargeSummaryCommandOutput) => void): void;
77
+ getEnterpriseSupportChargeSummary(args: GetEnterpriseSupportChargeSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnterpriseSupportChargeSummaryCommandOutput) => void): void;
78
+ /**
79
+ * @see {@link GetEnterpriseSupportContractDetailsCommand}
80
+ */
81
+ getEnterpriseSupportContractDetails(args: GetEnterpriseSupportContractDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetEnterpriseSupportContractDetailsCommandOutput>;
82
+ getEnterpriseSupportContractDetails(args: GetEnterpriseSupportContractDetailsCommandInput, cb: (err: any, data?: GetEnterpriseSupportContractDetailsCommandOutput) => void): void;
83
+ getEnterpriseSupportContractDetails(args: GetEnterpriseSupportContractDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnterpriseSupportContractDetailsCommandOutput) => void): void;
69
84
  /**
70
85
  * @see {@link GetResourcePolicyCommand}
71
86
  */
@@ -79,6 +94,12 @@ export interface Billing {
79
94
  listBillingViews(args: ListBillingViewsCommandInput, options?: __HttpHandlerOptions): Promise<ListBillingViewsCommandOutput>;
80
95
  listBillingViews(args: ListBillingViewsCommandInput, cb: (err: any, data?: ListBillingViewsCommandOutput) => void): void;
81
96
  listBillingViews(args: ListBillingViewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBillingViewsCommandOutput) => void): void;
97
+ /**
98
+ * @see {@link ListEnterpriseSupportLinkedAccountChargesCommand}
99
+ */
100
+ listEnterpriseSupportLinkedAccountCharges(args: ListEnterpriseSupportLinkedAccountChargesCommandInput, options?: __HttpHandlerOptions): Promise<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
101
+ listEnterpriseSupportLinkedAccountCharges(args: ListEnterpriseSupportLinkedAccountChargesCommandInput, cb: (err: any, data?: ListEnterpriseSupportLinkedAccountChargesCommandOutput) => void): void;
102
+ listEnterpriseSupportLinkedAccountCharges(args: ListEnterpriseSupportLinkedAccountChargesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnterpriseSupportLinkedAccountChargesCommandOutput) => void): void;
82
103
  /**
83
104
  * @see {@link ListSourceViewsForBillingViewCommand}
84
105
  */
@@ -135,6 +156,13 @@ export interface Billing {
135
156
  * @returns AsyncIterable of {@link ListBillingViewsCommandOutput}.
136
157
  */
137
158
  paginateListBillingViews(args?: ListBillingViewsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBillingViewsCommandOutput>;
159
+ /**
160
+ * @see {@link ListEnterpriseSupportLinkedAccountChargesCommand}
161
+ * @param args - command input.
162
+ * @param paginationConfig - optional pagination config.
163
+ * @returns AsyncIterable of {@link ListEnterpriseSupportLinkedAccountChargesCommandOutput}.
164
+ */
165
+ paginateListEnterpriseSupportLinkedAccountCharges(args: ListEnterpriseSupportLinkedAccountChargesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
138
166
  /**
139
167
  * @see {@link ListSourceViewsForBillingViewCommand}
140
168
  * @param args - command input.