@aws-sdk/client-billing 3.1099.0 → 3.1101.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
@@ -62,6 +62,14 @@ import {
62
62
  GetCreditAllocationHistoryCommandOutput,
63
63
  } from "./commands/GetCreditAllocationHistoryCommand";
64
64
  import { GetCreditsCommandInput, GetCreditsCommandOutput } from "./commands/GetCreditsCommand";
65
+ import {
66
+ GetEnterpriseSupportChargeSummaryCommandInput,
67
+ GetEnterpriseSupportChargeSummaryCommandOutput,
68
+ } from "./commands/GetEnterpriseSupportChargeSummaryCommand";
69
+ import {
70
+ GetEnterpriseSupportContractDetailsCommandInput,
71
+ GetEnterpriseSupportContractDetailsCommandOutput,
72
+ } from "./commands/GetEnterpriseSupportContractDetailsCommand";
65
73
  import {
66
74
  GetResourcePolicyCommandInput,
67
75
  GetResourcePolicyCommandOutput,
@@ -70,6 +78,10 @@ import {
70
78
  ListBillingViewsCommandInput,
71
79
  ListBillingViewsCommandOutput,
72
80
  } from "./commands/ListBillingViewsCommand";
81
+ import {
82
+ ListEnterpriseSupportLinkedAccountChargesCommandInput,
83
+ ListEnterpriseSupportLinkedAccountChargesCommandOutput,
84
+ } from "./commands/ListEnterpriseSupportLinkedAccountChargesCommand";
73
85
  import {
74
86
  ListSourceViewsForBillingViewCommandInput,
75
87
  ListSourceViewsForBillingViewCommandOutput,
@@ -111,8 +123,11 @@ export type ServiceInputTypes =
111
123
  | GetBillingViewCommandInput
112
124
  | GetCreditAllocationHistoryCommandInput
113
125
  | GetCreditsCommandInput
126
+ | GetEnterpriseSupportChargeSummaryCommandInput
127
+ | GetEnterpriseSupportContractDetailsCommandInput
114
128
  | GetResourcePolicyCommandInput
115
129
  | ListBillingViewsCommandInput
130
+ | ListEnterpriseSupportLinkedAccountChargesCommandInput
116
131
  | ListSourceViewsForBillingViewCommandInput
117
132
  | ListTagsForResourceCommandInput
118
133
  | RedeemCreditsCommandInput
@@ -129,8 +144,11 @@ export type ServiceOutputTypes =
129
144
  | GetBillingViewCommandOutput
130
145
  | GetCreditAllocationHistoryCommandOutput
131
146
  | GetCreditsCommandOutput
147
+ | GetEnterpriseSupportChargeSummaryCommandOutput
148
+ | GetEnterpriseSupportContractDetailsCommandOutput
132
149
  | GetResourcePolicyCommandOutput
133
150
  | ListBillingViewsCommandOutput
151
+ | ListEnterpriseSupportLinkedAccountChargesCommandOutput
134
152
  | ListSourceViewsForBillingViewCommandOutput
135
153
  | ListTagsForResourceCommandOutput
136
154
  | RedeemCreditsCommandOutput
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetEnterpriseSupportChargeSummaryRequest,
4
+ GetEnterpriseSupportChargeSummaryResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface GetEnterpriseSupportChargeSummaryCommandInput extends GetEnterpriseSupportChargeSummaryRequest {}
8
+ export interface GetEnterpriseSupportChargeSummaryCommandOutput
9
+ extends GetEnterpriseSupportChargeSummaryResponse, __MetadataBearer {}
10
+ declare const GetEnterpriseSupportChargeSummaryCommand_base: {
11
+ new (
12
+ input: GetEnterpriseSupportChargeSummaryCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ GetEnterpriseSupportChargeSummaryCommandInput,
15
+ GetEnterpriseSupportChargeSummaryCommandOutput,
16
+ import("..").BillingClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: GetEnterpriseSupportChargeSummaryCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ GetEnterpriseSupportChargeSummaryCommandInput,
24
+ GetEnterpriseSupportChargeSummaryCommandOutput,
25
+ import("..").BillingClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class GetEnterpriseSupportChargeSummaryCommand extends GetEnterpriseSupportChargeSummaryCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: GetEnterpriseSupportChargeSummaryRequest;
35
+ output: GetEnterpriseSupportChargeSummaryResponse;
36
+ };
37
+ sdk: {
38
+ input: GetEnterpriseSupportChargeSummaryCommandInput;
39
+ output: GetEnterpriseSupportChargeSummaryCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetEnterpriseSupportContractDetailsRequest,
4
+ GetEnterpriseSupportContractDetailsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface GetEnterpriseSupportContractDetailsCommandInput extends GetEnterpriseSupportContractDetailsRequest {}
8
+ export interface GetEnterpriseSupportContractDetailsCommandOutput
9
+ extends GetEnterpriseSupportContractDetailsResponse, __MetadataBearer {}
10
+ declare const GetEnterpriseSupportContractDetailsCommand_base: {
11
+ new (
12
+ input: GetEnterpriseSupportContractDetailsCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ GetEnterpriseSupportContractDetailsCommandInput,
15
+ GetEnterpriseSupportContractDetailsCommandOutput,
16
+ import("..").BillingClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: GetEnterpriseSupportContractDetailsCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ GetEnterpriseSupportContractDetailsCommandInput,
24
+ GetEnterpriseSupportContractDetailsCommandOutput,
25
+ import("..").BillingClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class GetEnterpriseSupportContractDetailsCommand extends GetEnterpriseSupportContractDetailsCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: GetEnterpriseSupportContractDetailsRequest;
35
+ output: GetEnterpriseSupportContractDetailsResponse;
36
+ };
37
+ sdk: {
38
+ input: GetEnterpriseSupportContractDetailsCommandInput;
39
+ output: GetEnterpriseSupportContractDetailsCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListEnterpriseSupportLinkedAccountChargesRequest,
4
+ ListEnterpriseSupportLinkedAccountChargesResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListEnterpriseSupportLinkedAccountChargesCommandInput extends ListEnterpriseSupportLinkedAccountChargesRequest {}
8
+ export interface ListEnterpriseSupportLinkedAccountChargesCommandOutput
9
+ extends ListEnterpriseSupportLinkedAccountChargesResponse, __MetadataBearer {}
10
+ declare const ListEnterpriseSupportLinkedAccountChargesCommand_base: {
11
+ new (
12
+ input: ListEnterpriseSupportLinkedAccountChargesCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ ListEnterpriseSupportLinkedAccountChargesCommandInput,
15
+ ListEnterpriseSupportLinkedAccountChargesCommandOutput,
16
+ import("..").BillingClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: ListEnterpriseSupportLinkedAccountChargesCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListEnterpriseSupportLinkedAccountChargesCommandInput,
24
+ ListEnterpriseSupportLinkedAccountChargesCommandOutput,
25
+ import("..").BillingClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class ListEnterpriseSupportLinkedAccountChargesCommand extends ListEnterpriseSupportLinkedAccountChargesCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: ListEnterpriseSupportLinkedAccountChargesRequest;
35
+ output: ListEnterpriseSupportLinkedAccountChargesResponse;
36
+ };
37
+ sdk: {
38
+ input: ListEnterpriseSupportLinkedAccountChargesCommandInput;
39
+ output: ListEnterpriseSupportLinkedAccountChargesCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -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";
@@ -15,6 +15,11 @@ export interface ActiveTimeRange {
15
15
  activeAfterInclusive: Date | undefined;
16
16
  activeBeforeInclusive: Date | undefined;
17
17
  }
18
+ export interface AdditionalCharge {
19
+ description: string | undefined;
20
+ amount?: string | undefined;
21
+ chargeType?: string | undefined;
22
+ }
18
23
  export interface Amount {
19
24
  currencyCode: string | undefined;
20
25
  currencyAmount: string | undefined;
@@ -187,6 +192,73 @@ export interface CreditData {
187
192
  export interface GetCreditsResponse {
188
193
  credits?: CreditData[] | undefined;
189
194
  }
195
+ export interface GetEnterpriseSupportChargeSummaryRequest {
196
+ billingMonth: string | undefined;
197
+ }
198
+ export interface PricingPlanTier {
199
+ tierMinimum: string | undefined;
200
+ tierMaximum?: string | undefined;
201
+ baseCharge: string | undefined;
202
+ additionalPercentageOfAggregateCharges: string | undefined;
203
+ aggregateChargesAdjustment: string | undefined;
204
+ incremental: boolean | undefined;
205
+ increment?: string | undefined;
206
+ incrementCharge?: string | undefined;
207
+ }
208
+ export interface PricingPlan {
209
+ pricingPlanId?: string | undefined;
210
+ name?: string | undefined;
211
+ description?: string | undefined;
212
+ startDate?: Date | undefined;
213
+ endDate?: Date | undefined;
214
+ planDiscountPercent?: string | undefined;
215
+ discountAppliesToMinimumCharge?: boolean | undefined;
216
+ minimumCharge?: string | undefined;
217
+ tiered?: string | undefined;
218
+ tiers: PricingPlanTier[] | undefined;
219
+ }
220
+ export interface GetEnterpriseSupportChargeSummaryResponse {
221
+ payerAccountId: string | undefined;
222
+ billingMonth: string | undefined;
223
+ billingPeriodStartDate: Date | undefined;
224
+ billingPeriodEndDate: Date | undefined;
225
+ isEstimated: boolean | undefined;
226
+ billDate: Date | undefined;
227
+ supportCharge: string | undefined;
228
+ totalSupportCharge: string | undefined;
229
+ supportDiscount: string | undefined;
230
+ totalSupportEligibleSpend: string | undefined;
231
+ totalSupportEligibleUsageSpend: string | undefined;
232
+ totalSupportEligibleReservedInstanceSpend: string | undefined;
233
+ totalSupportEligibleSavingsPlanSpend: string | undefined;
234
+ supportChargePercentage: string | undefined;
235
+ supportEffectivePricingPlan: PricingPlan | undefined;
236
+ }
237
+ export interface GetEnterpriseSupportContractDetailsRequest {
238
+ billingMonth: string | undefined;
239
+ }
240
+ export interface ChargeAccount {
241
+ accountId: string | undefined;
242
+ chargePercentage: string | undefined;
243
+ }
244
+ export interface ContractAccount {
245
+ accountId: string | undefined;
246
+ isGdn: boolean | undefined;
247
+ }
248
+ export interface GetEnterpriseSupportContractDetailsResponse {
249
+ isContractActive?: boolean | undefined;
250
+ supportAllocationMethod: string | undefined;
251
+ supportReservedInstanceAmortizationStartDate?: Date | undefined;
252
+ supportReservedInstanceTreatmentMethod?: string | undefined;
253
+ supportSavingsPlansAmortizationStartDate?: Date | undefined;
254
+ supportSavingsPlansTreatmentMethod?: string | undefined;
255
+ supportProrateStartDate?: Date | undefined;
256
+ contractPayerAccountIds: ContractAccount[] | undefined;
257
+ chargedPayerAccountIds: ChargeAccount[] | undefined;
258
+ additionalSupportCharge?: AdditionalCharge[] | undefined;
259
+ additionalSupportEligibleUsageSpend?: AdditionalCharge[] | undefined;
260
+ pricingPlans: PricingPlan[] | undefined;
261
+ }
190
262
  export interface GetResourcePolicyRequest {
191
263
  resourceArn: string | undefined;
192
264
  }
@@ -221,6 +293,38 @@ export interface ListBillingViewsResponse {
221
293
  billingViews: BillingViewListElement[] | undefined;
222
294
  nextToken?: string | undefined;
223
295
  }
296
+ export interface ListEnterpriseSupportLinkedAccountChargesRequest {
297
+ billingMonth: string | undefined;
298
+ accountId?: string | undefined;
299
+ maxResults?: number | undefined;
300
+ nextToken?: string | undefined;
301
+ }
302
+ export interface EnterpriseSupportTimePeriod {
303
+ beginDate: Date | undefined;
304
+ endDate?: Date | undefined;
305
+ }
306
+ export interface ServiceLevelAccountUsage {
307
+ serviceCode?: string | undefined;
308
+ totalSupportEligibleSpend?: string | undefined;
309
+ }
310
+ export interface LinkedAccountCharge {
311
+ accountId: string | undefined;
312
+ payerAccountId: string | undefined;
313
+ accountType?: string | undefined;
314
+ billableSeconds: number | undefined;
315
+ totalSeconds: number | undefined;
316
+ totalSupportEligibleSpend: string | undefined;
317
+ proratedTotalSupportEligibleSpend: string | undefined;
318
+ linkedTimePeriods?: EnterpriseSupportTimePeriod[] | undefined;
319
+ subscriptionTimePeriods?: EnterpriseSupportTimePeriod[] | undefined;
320
+ totalSupportEligibleReservedInstanceSpend?: string | undefined;
321
+ totalSupportEligibleSavingsPlanSpend?: string | undefined;
322
+ supportEligibleSpendByService?: ServiceLevelAccountUsage[] | undefined;
323
+ }
324
+ export interface ListEnterpriseSupportLinkedAccountChargesResponse {
325
+ linkedAccount: LinkedAccountCharge[] | undefined;
326
+ nextToken?: string | undefined;
327
+ }
224
328
  export interface ListSourceViewsForBillingViewRequest {
225
329
  arn: string | undefined;
226
330
  maxResults?: number | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEnterpriseSupportLinkedAccountChargesCommandInput,
4
+ ListEnterpriseSupportLinkedAccountChargesCommandOutput,
5
+ } from "../commands/ListEnterpriseSupportLinkedAccountChargesCommand";
6
+ import { BillingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEnterpriseSupportLinkedAccountCharges: (
8
+ config: BillingPaginationConfiguration,
9
+ input: ListEnterpriseSupportLinkedAccountChargesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
@@ -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";
@@ -11,6 +11,7 @@ export declare var ThrottlingException$: StaticErrorSchema;
11
11
  export declare var ValidationException$: StaticErrorSchema;
12
12
  export declare const errorTypeRegistries: TypeRegistry[];
13
13
  export declare var ActiveTimeRange$: StaticStructureSchema;
14
+ export declare var AdditionalCharge$: StaticStructureSchema;
14
15
  export declare var Amount$: StaticStructureSchema;
15
16
  export declare var AssociateSourceViewsRequest$: StaticStructureSchema;
16
17
  export declare var AssociateSourceViewsResponse$: StaticStructureSchema;
@@ -21,6 +22,8 @@ export declare var BillingPreferenceSummary$: StaticStructureSchema;
21
22
  export declare var BillingViewElement$: StaticStructureSchema;
22
23
  export declare var BillingViewHealthStatus$: StaticStructureSchema;
23
24
  export declare var BillingViewListElement$: StaticStructureSchema;
25
+ export declare var ChargeAccount$: StaticStructureSchema;
26
+ export declare var ContractAccount$: StaticStructureSchema;
24
27
  export declare var CostCategoryValues$: StaticStructureSchema;
25
28
  export declare var CreateBillingViewRequest$: StaticStructureSchema;
26
29
  export declare var CreateBillingViewResponse$: StaticStructureSchema;
@@ -31,6 +34,7 @@ export declare var DeleteBillingViewResponse$: StaticStructureSchema;
31
34
  export declare var DimensionValues$: StaticStructureSchema;
32
35
  export declare var DisassociateSourceViewsRequest$: StaticStructureSchema;
33
36
  export declare var DisassociateSourceViewsResponse$: StaticStructureSchema;
37
+ export declare var EnterpriseSupportTimePeriod$: StaticStructureSchema;
34
38
  export declare var Expression$: StaticStructureSchema;
35
39
  export declare var GetBillingPreferencesRequest$: StaticStructureSchema;
36
40
  export declare var GetBillingPreferencesResponse$: StaticStructureSchema;
@@ -40,17 +44,27 @@ export declare var GetCreditAllocationHistoryRequest$: StaticStructureSchema;
40
44
  export declare var GetCreditAllocationHistoryResponse$: StaticStructureSchema;
41
45
  export declare var GetCreditsRequest$: StaticStructureSchema;
42
46
  export declare var GetCreditsResponse$: StaticStructureSchema;
47
+ export declare var GetEnterpriseSupportChargeSummaryRequest$: StaticStructureSchema;
48
+ export declare var GetEnterpriseSupportChargeSummaryResponse$: StaticStructureSchema;
49
+ export declare var GetEnterpriseSupportContractDetailsRequest$: StaticStructureSchema;
50
+ export declare var GetEnterpriseSupportContractDetailsResponse$: StaticStructureSchema;
43
51
  export declare var GetResourcePolicyRequest$: StaticStructureSchema;
44
52
  export declare var GetResourcePolicyResponse$: StaticStructureSchema;
53
+ export declare var LinkedAccountCharge$: StaticStructureSchema;
45
54
  export declare var ListBillingViewsRequest$: StaticStructureSchema;
46
55
  export declare var ListBillingViewsResponse$: StaticStructureSchema;
56
+ export declare var ListEnterpriseSupportLinkedAccountChargesRequest$: StaticStructureSchema;
57
+ export declare var ListEnterpriseSupportLinkedAccountChargesResponse$: StaticStructureSchema;
47
58
  export declare var ListSourceViewsForBillingViewRequest$: StaticStructureSchema;
48
59
  export declare var ListSourceViewsForBillingViewResponse$: StaticStructureSchema;
49
60
  export declare var ListTagsForResourceRequest$: StaticStructureSchema;
50
61
  export declare var ListTagsForResourceResponse$: StaticStructureSchema;
62
+ export declare var PricingPlan$: StaticStructureSchema;
63
+ export declare var PricingPlanTier$: StaticStructureSchema;
51
64
  export declare var RedeemCreditsRequest$: StaticStructureSchema;
52
65
  export declare var RedeemCreditsResponse$: StaticStructureSchema;
53
66
  export declare var ResourceTag$: StaticStructureSchema;
67
+ export declare var ServiceLevelAccountUsage$: StaticStructureSchema;
54
68
  export declare var StringSearch$: StaticStructureSchema;
55
69
  export declare var TagResourceRequest$: StaticStructureSchema;
56
70
  export declare var TagResourceResponse$: StaticStructureSchema;
@@ -71,8 +85,11 @@ export declare var GetBillingPreferences$: StaticOperationSchema;
71
85
  export declare var GetBillingView$: StaticOperationSchema;
72
86
  export declare var GetCreditAllocationHistory$: StaticOperationSchema;
73
87
  export declare var GetCredits$: StaticOperationSchema;
88
+ export declare var GetEnterpriseSupportChargeSummary$: StaticOperationSchema;
89
+ export declare var GetEnterpriseSupportContractDetails$: StaticOperationSchema;
74
90
  export declare var GetResourcePolicy$: StaticOperationSchema;
75
91
  export declare var ListBillingViews$: StaticOperationSchema;
92
+ export declare var ListEnterpriseSupportLinkedAccountCharges$: StaticOperationSchema;
76
93
  export declare var ListSourceViewsForBillingView$: StaticOperationSchema;
77
94
  export declare var ListTagsForResource$: StaticOperationSchema;
78
95
  export declare var RedeemCredits$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-billing",
3
- "version": "3.1099.0",
3
+ "version": "3.1101.0",
4
4
  "description": "AWS SDK for JavaScript Billing Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-billing",
6
6
  "license": "Apache-2.0",
@@ -46,8 +46,8 @@
46
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.3",
50
- "@aws-sdk/credential-provider-node": "^3.972.75",
49
+ "@aws-sdk/core": "^3.977.4",
50
+ "@aws-sdk/credential-provider-node": "^3.972.76",
51
51
  "@aws-sdk/types": "^3.974.2",
52
52
  "@smithy/core": "^3.31.1",
53
53
  "@smithy/fetch-http-handler": "^5.6.13",