@aws-sdk/client-billingconductor 3.1136.0 → 3.1137.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/README.md +14 -0
- package/dist-cjs/index.js +59 -1
- package/dist-es/Billingconductor.js +4 -0
- package/dist-es/commands/GetBillingTransferPreferenceCommand.js +4 -0
- package/dist-es/commands/UpdateBillingTransferPreferenceCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +40 -0
- package/dist-types/Billingconductor.d.ts +14 -0
- package/dist-types/BillingconductorClient.d.ts +4 -2
- package/dist-types/commands/GetBillingTransferPreferenceCommand.d.ts +91 -0
- package/dist-types/commands/UpdateBillingTransferPreferenceCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +86 -0
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Billingconductor.d.ts +34 -0
- package/dist-types/ts3.4/BillingconductorClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetBillingTransferPreferenceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateBillingTransferPreferenceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -286,6 +286,13 @@ GetBillingGroupCostReport
|
|
|
286
286
|
</details>
|
|
287
287
|
<details>
|
|
288
288
|
<summary>
|
|
289
|
+
GetBillingTransferPreference
|
|
290
|
+
</summary>
|
|
291
|
+
|
|
292
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/billingconductor/command/GetBillingTransferPreferenceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-billingconductor/Interface/GetBillingTransferPreferenceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-billingconductor/Interface/GetBillingTransferPreferenceCommandOutput/)
|
|
293
|
+
</details>
|
|
294
|
+
<details>
|
|
295
|
+
<summary>
|
|
289
296
|
ListAccountAssociations
|
|
290
297
|
</summary>
|
|
291
298
|
|
|
@@ -384,6 +391,13 @@ UpdateBillingGroup
|
|
|
384
391
|
</details>
|
|
385
392
|
<details>
|
|
386
393
|
<summary>
|
|
394
|
+
UpdateBillingTransferPreference
|
|
395
|
+
</summary>
|
|
396
|
+
|
|
397
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/billingconductor/command/UpdateBillingTransferPreferenceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-billingconductor/Interface/UpdateBillingTransferPreferenceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-billingconductor/Interface/UpdateBillingTransferPreferenceCommandOutput/)
|
|
398
|
+
</details>
|
|
399
|
+
<details>
|
|
400
|
+
<summary>
|
|
387
401
|
UpdateCustomLineItem
|
|
388
402
|
</summary>
|
|
389
403
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1136.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -273,6 +273,7 @@ const _AAL = "AccountAssociationsList";
|
|
|
273
273
|
const _AALE = "AccountAssociationsListElement";
|
|
274
274
|
const _AAO = "AssociateAccountsOutput";
|
|
275
275
|
const _AAs = "AssociateAccounts";
|
|
276
|
+
const _ABTBGC = "AutoBillingTransferBillingGroupCreation";
|
|
276
277
|
const _ADE = "AccessDeniedException";
|
|
277
278
|
const _AE = "AccountEmail";
|
|
278
279
|
const _AG = "AccountGrouping";
|
|
@@ -289,6 +290,7 @@ const _ARE = "AssociateResourceError";
|
|
|
289
290
|
const _ARRE = "AssociateResourceResponseElement";
|
|
290
291
|
const _ARRL = "AssociateResourcesResponseList";
|
|
291
292
|
const _AS = "AssociationSize";
|
|
293
|
+
const _ATBGCP = "AutoTransferBillingGroupCreationPreference";
|
|
292
294
|
const _AV = "AssociatedValues";
|
|
293
295
|
const _AVt = "AttributeValues";
|
|
294
296
|
const _AWSC = "AWSCost";
|
|
@@ -386,6 +388,7 @@ const _E = "Error";
|
|
|
386
388
|
const _EBP = "EndBillingPeriod";
|
|
387
389
|
const _EEBP = "ExclusiveEndBillingPeriod";
|
|
388
390
|
const _ERE = "EndRangeExclusive";
|
|
391
|
+
const _En = "Enabled";
|
|
389
392
|
const _F = "Fields";
|
|
390
393
|
const _FAR = "FailedAssociatedResources";
|
|
391
394
|
const _FDR = "FailedDisassociatedResources";
|
|
@@ -397,6 +400,9 @@ const _GB = "GroupBy";
|
|
|
397
400
|
const _GBGCR = "GetBillingGroupCostReport";
|
|
398
401
|
const _GBGCRI = "GetBillingGroupCostReportInput";
|
|
399
402
|
const _GBGCRO = "GetBillingGroupCostReportOutput";
|
|
403
|
+
const _GBTP = "GetBillingTransferPreference";
|
|
404
|
+
const _GBTPI = "GetBillingTransferPreferenceInput";
|
|
405
|
+
const _GBTPO = "GetBillingTransferPreferenceOutput";
|
|
400
406
|
const _ISBP = "InclusiveStartBillingPeriod";
|
|
401
407
|
const _ISE = "InternalServerException";
|
|
402
408
|
const _K = "Key";
|
|
@@ -529,6 +535,9 @@ const _UBG = "UpdateBillingGroup";
|
|
|
529
535
|
const _UBGAG = "UpdateBillingGroupAccountGrouping";
|
|
530
536
|
const _UBGI = "UpdateBillingGroupInput";
|
|
531
537
|
const _UBGO = "UpdateBillingGroupOutput";
|
|
538
|
+
const _UBTP = "UpdateBillingTransferPreference";
|
|
539
|
+
const _UBTPI = "UpdateBillingTransferPreferenceInput";
|
|
540
|
+
const _UBTPO = "UpdateBillingTransferPreferenceOutput";
|
|
532
541
|
const _UCLI = "UpdateCustomLineItem";
|
|
533
542
|
const _UCLICD = "UpdateCustomLineItemChargeDetails";
|
|
534
543
|
const _UCLIFCD = "UpdateCustomLineItemFlatChargeDetails";
|
|
@@ -669,6 +678,11 @@ var Attribute$ = [3, n0, _At,
|
|
|
669
678
|
[_K, _V],
|
|
670
679
|
[0, 0]
|
|
671
680
|
];
|
|
681
|
+
var AutoTransferBillingGroupCreationPreference$ = [3, n0, _ATBGCP,
|
|
682
|
+
0,
|
|
683
|
+
[_En, _PPA],
|
|
684
|
+
[2, 0], 1
|
|
685
|
+
];
|
|
672
686
|
var BatchAssociateResourcesToCustomLineItemInput$ = [3, n0, _BARTCLII,
|
|
673
687
|
0,
|
|
674
688
|
[_TA, _RAe, _BPR],
|
|
@@ -879,6 +893,16 @@ var GetBillingGroupCostReportOutput$ = [3, n0, _GBGCRO,
|
|
|
879
893
|
[_BGCRR, _NT],
|
|
880
894
|
[() => BillingGroupCostReportResultsList, 0]
|
|
881
895
|
];
|
|
896
|
+
var GetBillingTransferPreferenceInput$ = [3, n0, _GBTPI,
|
|
897
|
+
0,
|
|
898
|
+
[_RTA],
|
|
899
|
+
[0], 1
|
|
900
|
+
];
|
|
901
|
+
var GetBillingTransferPreferenceOutput$ = [3, n0, _GBTPO,
|
|
902
|
+
0,
|
|
903
|
+
[_RTA, _ABTBGC, _LMT],
|
|
904
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, 1], 2
|
|
905
|
+
];
|
|
882
906
|
var LineItemFilter$ = [3, n0, _LIFi,
|
|
883
907
|
0,
|
|
884
908
|
[_At, _MO, _Va, _AVt],
|
|
@@ -1124,6 +1148,16 @@ var UpdateBillingGroupOutput$ = [3, n0, _UBGO,
|
|
|
1124
1148
|
[_A, _N, _D, _PAI, _PPA, _S, _LMT, _St, _SR, _AG],
|
|
1125
1149
|
[0, [() => BillingGroupName, 0], [() => BillingGroupDescription, 0], 0, 0, 1, 1, 0, 0, () => UpdateBillingGroupAccountGrouping$]
|
|
1126
1150
|
];
|
|
1151
|
+
var UpdateBillingTransferPreferenceInput$ = [3, n0, _UBTPI,
|
|
1152
|
+
0,
|
|
1153
|
+
[_RTA, _ABTBGC, _CTl],
|
|
1154
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, [0, { [_hH]: _XACT, [_iT]: 1 }]], 2
|
|
1155
|
+
];
|
|
1156
|
+
var UpdateBillingTransferPreferenceOutput$ = [3, n0, _UBTPO,
|
|
1157
|
+
0,
|
|
1158
|
+
[_RTA, _ABTBGC, _LMT],
|
|
1159
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, 1], 3
|
|
1160
|
+
];
|
|
1127
1161
|
var UpdateCustomLineItemChargeDetails$ = [3, n0, _UCLICD,
|
|
1128
1162
|
0,
|
|
1129
1163
|
[_Fl, _P, _LIF],
|
|
@@ -1287,6 +1321,9 @@ var DisassociatePricingRules$ = [9, n0, _DPRi,
|
|
|
1287
1321
|
var GetBillingGroupCostReport$ = [9, n0, _GBGCR,
|
|
1288
1322
|
{ [_h]: ["POST", "/get-billing-group-cost-report", 200] }, () => GetBillingGroupCostReportInput$, () => GetBillingGroupCostReportOutput$
|
|
1289
1323
|
];
|
|
1324
|
+
var GetBillingTransferPreference$ = [9, n0, _GBTP,
|
|
1325
|
+
{ [_h]: ["POST", "/get-billing-transfer-preference", 200] }, () => GetBillingTransferPreferenceInput$, () => GetBillingTransferPreferenceOutput$
|
|
1326
|
+
];
|
|
1290
1327
|
var ListAccountAssociations$ = [9, n0, _LAA,
|
|
1291
1328
|
{ [_h]: ["POST", "/list-account-associations", 200] }, () => ListAccountAssociationsInput$, () => ListAccountAssociationsOutput$
|
|
1292
1329
|
];
|
|
@@ -1329,6 +1366,9 @@ var UntagResource$ = [9, n0, _UR,
|
|
|
1329
1366
|
var UpdateBillingGroup$ = [9, n0, _UBG,
|
|
1330
1367
|
{ [_h]: ["POST", "/update-billing-group", 200] }, () => UpdateBillingGroupInput$, () => UpdateBillingGroupOutput$
|
|
1331
1368
|
];
|
|
1369
|
+
var UpdateBillingTransferPreference$ = [9, n0, _UBTP,
|
|
1370
|
+
{ [_h]: ["PUT", "/update-billing-transfer-preference", 200] }, () => UpdateBillingTransferPreferenceInput$, () => UpdateBillingTransferPreferenceOutput$
|
|
1371
|
+
];
|
|
1332
1372
|
var UpdateCustomLineItem$ = [9, n0, _UCLI,
|
|
1333
1373
|
{ [_h]: ["POST", "/update-custom-line-item", 200] }, () => UpdateCustomLineItemInput$, () => UpdateCustomLineItemOutput$
|
|
1334
1374
|
];
|
|
@@ -1534,6 +1574,9 @@ class DisassociatePricingRulesCommand extends command(_ep0, _mw0, "DisassociateP
|
|
|
1534
1574
|
class GetBillingGroupCostReportCommand extends command(_ep0, _mw0, "GetBillingGroupCostReport", GetBillingGroupCostReport$) {
|
|
1535
1575
|
}
|
|
1536
1576
|
|
|
1577
|
+
class GetBillingTransferPreferenceCommand extends command(_ep0, _mw0, "GetBillingTransferPreference", GetBillingTransferPreference$) {
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1537
1580
|
class ListAccountAssociationsCommand extends command(_ep0, _mw0, "ListAccountAssociations", ListAccountAssociations$) {
|
|
1538
1581
|
}
|
|
1539
1582
|
|
|
@@ -1576,6 +1619,9 @@ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagRes
|
|
|
1576
1619
|
class UpdateBillingGroupCommand extends command(_ep0, _mw0, "UpdateBillingGroup", UpdateBillingGroup$) {
|
|
1577
1620
|
}
|
|
1578
1621
|
|
|
1622
|
+
class UpdateBillingTransferPreferenceCommand extends command(_ep0, _mw0, "UpdateBillingTransferPreference", UpdateBillingTransferPreference$) {
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1579
1625
|
class UpdateCustomLineItemCommand extends command(_ep0, _mw0, "UpdateCustomLineItem", UpdateCustomLineItem$) {
|
|
1580
1626
|
}
|
|
1581
1627
|
|
|
@@ -1623,6 +1669,7 @@ const commands = {
|
|
|
1623
1669
|
DisassociateAccountsCommand,
|
|
1624
1670
|
DisassociatePricingRulesCommand,
|
|
1625
1671
|
GetBillingGroupCostReportCommand,
|
|
1672
|
+
GetBillingTransferPreferenceCommand,
|
|
1626
1673
|
ListAccountAssociationsCommand,
|
|
1627
1674
|
ListBillingGroupCostReportsCommand,
|
|
1628
1675
|
ListBillingGroupsCommand,
|
|
@@ -1637,6 +1684,7 @@ const commands = {
|
|
|
1637
1684
|
TagResourceCommand,
|
|
1638
1685
|
UntagResourceCommand,
|
|
1639
1686
|
UpdateBillingGroupCommand,
|
|
1687
|
+
UpdateBillingTransferPreferenceCommand,
|
|
1640
1688
|
UpdateCustomLineItemCommand,
|
|
1641
1689
|
UpdatePricingPlanCommand,
|
|
1642
1690
|
UpdatePricingRuleCommand,
|
|
@@ -1660,6 +1708,7 @@ createAggregatedClient(commands, Billingconductor, { paginators });
|
|
|
1660
1708
|
|
|
1661
1709
|
const ConflictExceptionReason = {
|
|
1662
1710
|
PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT",
|
|
1711
|
+
PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT: "PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT",
|
|
1663
1712
|
PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT",
|
|
1664
1713
|
PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT",
|
|
1665
1714
|
RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT",
|
|
@@ -1811,6 +1860,7 @@ exports.AssociateResourceError$ = AssociateResourceError$;
|
|
|
1811
1860
|
exports.AssociateResourceErrorReason = AssociateResourceErrorReason;
|
|
1812
1861
|
exports.AssociateResourceResponseElement$ = AssociateResourceResponseElement$;
|
|
1813
1862
|
exports.Attribute$ = Attribute$;
|
|
1863
|
+
exports.AutoTransferBillingGroupCreationPreference$ = AutoTransferBillingGroupCreationPreference$;
|
|
1814
1864
|
exports.BatchAssociateResourcesToCustomLineItem$ = BatchAssociateResourcesToCustomLineItem$;
|
|
1815
1865
|
exports.BatchAssociateResourcesToCustomLineItemCommand = BatchAssociateResourcesToCustomLineItemCommand;
|
|
1816
1866
|
exports.BatchAssociateResourcesToCustomLineItemInput$ = BatchAssociateResourcesToCustomLineItemInput$;
|
|
@@ -1892,6 +1942,10 @@ exports.GetBillingGroupCostReport$ = GetBillingGroupCostReport$;
|
|
|
1892
1942
|
exports.GetBillingGroupCostReportCommand = GetBillingGroupCostReportCommand;
|
|
1893
1943
|
exports.GetBillingGroupCostReportInput$ = GetBillingGroupCostReportInput$;
|
|
1894
1944
|
exports.GetBillingGroupCostReportOutput$ = GetBillingGroupCostReportOutput$;
|
|
1945
|
+
exports.GetBillingTransferPreference$ = GetBillingTransferPreference$;
|
|
1946
|
+
exports.GetBillingTransferPreferenceCommand = GetBillingTransferPreferenceCommand;
|
|
1947
|
+
exports.GetBillingTransferPreferenceInput$ = GetBillingTransferPreferenceInput$;
|
|
1948
|
+
exports.GetBillingTransferPreferenceOutput$ = GetBillingTransferPreferenceOutput$;
|
|
1895
1949
|
exports.GroupByAttributeName = GroupByAttributeName;
|
|
1896
1950
|
exports.InternalServerException = InternalServerException;
|
|
1897
1951
|
exports.InternalServerException$ = InternalServerException$;
|
|
@@ -1984,6 +2038,10 @@ exports.UpdateBillingGroupAccountGrouping$ = UpdateBillingGroupAccountGrouping$;
|
|
|
1984
2038
|
exports.UpdateBillingGroupCommand = UpdateBillingGroupCommand;
|
|
1985
2039
|
exports.UpdateBillingGroupInput$ = UpdateBillingGroupInput$;
|
|
1986
2040
|
exports.UpdateBillingGroupOutput$ = UpdateBillingGroupOutput$;
|
|
2041
|
+
exports.UpdateBillingTransferPreference$ = UpdateBillingTransferPreference$;
|
|
2042
|
+
exports.UpdateBillingTransferPreferenceCommand = UpdateBillingTransferPreferenceCommand;
|
|
2043
|
+
exports.UpdateBillingTransferPreferenceInput$ = UpdateBillingTransferPreferenceInput$;
|
|
2044
|
+
exports.UpdateBillingTransferPreferenceOutput$ = UpdateBillingTransferPreferenceOutput$;
|
|
1987
2045
|
exports.UpdateCustomLineItem$ = UpdateCustomLineItem$;
|
|
1988
2046
|
exports.UpdateCustomLineItemChargeDetails$ = UpdateCustomLineItemChargeDetails$;
|
|
1989
2047
|
exports.UpdateCustomLineItemCommand = UpdateCustomLineItemCommand;
|
|
@@ -15,6 +15,7 @@ import { DeletePricingRuleCommand, } from "./commands/DeletePricingRuleCommand";
|
|
|
15
15
|
import { DisassociateAccountsCommand, } from "./commands/DisassociateAccountsCommand";
|
|
16
16
|
import { DisassociatePricingRulesCommand, } from "./commands/DisassociatePricingRulesCommand";
|
|
17
17
|
import { GetBillingGroupCostReportCommand, } from "./commands/GetBillingGroupCostReportCommand";
|
|
18
|
+
import { GetBillingTransferPreferenceCommand, } from "./commands/GetBillingTransferPreferenceCommand";
|
|
18
19
|
import { ListAccountAssociationsCommand, } from "./commands/ListAccountAssociationsCommand";
|
|
19
20
|
import { ListBillingGroupCostReportsCommand, } from "./commands/ListBillingGroupCostReportsCommand";
|
|
20
21
|
import { ListBillingGroupsCommand, } from "./commands/ListBillingGroupsCommand";
|
|
@@ -29,6 +30,7 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
29
30
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
30
31
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
31
32
|
import { UpdateBillingGroupCommand, } from "./commands/UpdateBillingGroupCommand";
|
|
33
|
+
import { UpdateBillingTransferPreferenceCommand, } from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
32
34
|
import { UpdateCustomLineItemCommand, } from "./commands/UpdateCustomLineItemCommand";
|
|
33
35
|
import { UpdatePricingPlanCommand, } from "./commands/UpdatePricingPlanCommand";
|
|
34
36
|
import { UpdatePricingRuleCommand, } from "./commands/UpdatePricingRuleCommand";
|
|
@@ -59,6 +61,7 @@ const commands = {
|
|
|
59
61
|
DisassociateAccountsCommand,
|
|
60
62
|
DisassociatePricingRulesCommand,
|
|
61
63
|
GetBillingGroupCostReportCommand,
|
|
64
|
+
GetBillingTransferPreferenceCommand,
|
|
62
65
|
ListAccountAssociationsCommand,
|
|
63
66
|
ListBillingGroupCostReportsCommand,
|
|
64
67
|
ListBillingGroupsCommand,
|
|
@@ -73,6 +76,7 @@ const commands = {
|
|
|
73
76
|
TagResourceCommand,
|
|
74
77
|
UntagResourceCommand,
|
|
75
78
|
UpdateBillingGroupCommand,
|
|
79
|
+
UpdateBillingTransferPreferenceCommand,
|
|
76
80
|
UpdateCustomLineItemCommand,
|
|
77
81
|
UpdatePricingPlanCommand,
|
|
78
82
|
UpdatePricingRuleCommand,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { GetBillingTransferPreference$ } from "../schemas/schemas_0";
|
|
3
|
+
export class GetBillingTransferPreferenceCommand extends command(_ep0, _mw0, "GetBillingTransferPreference", GetBillingTransferPreference$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { UpdateBillingTransferPreference$ } from "../schemas/schemas_0";
|
|
3
|
+
export class UpdateBillingTransferPreferenceCommand extends command(_ep0, _mw0, "UpdateBillingTransferPreference", UpdateBillingTransferPreference$) {
|
|
4
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./DeletePricingRuleCommand";
|
|
|
13
13
|
export * from "./DisassociateAccountsCommand";
|
|
14
14
|
export * from "./DisassociatePricingRulesCommand";
|
|
15
15
|
export * from "./GetBillingGroupCostReportCommand";
|
|
16
|
+
export * from "./GetBillingTransferPreferenceCommand";
|
|
16
17
|
export * from "./ListAccountAssociationsCommand";
|
|
17
18
|
export * from "./ListBillingGroupCostReportsCommand";
|
|
18
19
|
export * from "./ListBillingGroupsCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
27
28
|
export * from "./TagResourceCommand";
|
|
28
29
|
export * from "./UntagResourceCommand";
|
|
29
30
|
export * from "./UpdateBillingGroupCommand";
|
|
31
|
+
export * from "./UpdateBillingTransferPreferenceCommand";
|
|
30
32
|
export * from "./UpdateCustomLineItemCommand";
|
|
31
33
|
export * from "./UpdatePricingPlanCommand";
|
|
32
34
|
export * from "./UpdatePricingRuleCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const ConflictExceptionReason = {
|
|
2
2
|
PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT",
|
|
3
|
+
PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT: "PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT",
|
|
3
4
|
PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT",
|
|
4
5
|
PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT",
|
|
5
6
|
RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT",
|
|
@@ -5,6 +5,7 @@ const _AAL = "AccountAssociationsList";
|
|
|
5
5
|
const _AALE = "AccountAssociationsListElement";
|
|
6
6
|
const _AAO = "AssociateAccountsOutput";
|
|
7
7
|
const _AAs = "AssociateAccounts";
|
|
8
|
+
const _ABTBGC = "AutoBillingTransferBillingGroupCreation";
|
|
8
9
|
const _ADE = "AccessDeniedException";
|
|
9
10
|
const _AE = "AccountEmail";
|
|
10
11
|
const _AG = "AccountGrouping";
|
|
@@ -21,6 +22,7 @@ const _ARE = "AssociateResourceError";
|
|
|
21
22
|
const _ARRE = "AssociateResourceResponseElement";
|
|
22
23
|
const _ARRL = "AssociateResourcesResponseList";
|
|
23
24
|
const _AS = "AssociationSize";
|
|
25
|
+
const _ATBGCP = "AutoTransferBillingGroupCreationPreference";
|
|
24
26
|
const _AV = "AssociatedValues";
|
|
25
27
|
const _AVt = "AttributeValues";
|
|
26
28
|
const _AWSC = "AWSCost";
|
|
@@ -118,6 +120,7 @@ const _E = "Error";
|
|
|
118
120
|
const _EBP = "EndBillingPeriod";
|
|
119
121
|
const _EEBP = "ExclusiveEndBillingPeriod";
|
|
120
122
|
const _ERE = "EndRangeExclusive";
|
|
123
|
+
const _En = "Enabled";
|
|
121
124
|
const _F = "Fields";
|
|
122
125
|
const _FAR = "FailedAssociatedResources";
|
|
123
126
|
const _FDR = "FailedDisassociatedResources";
|
|
@@ -129,6 +132,9 @@ const _GB = "GroupBy";
|
|
|
129
132
|
const _GBGCR = "GetBillingGroupCostReport";
|
|
130
133
|
const _GBGCRI = "GetBillingGroupCostReportInput";
|
|
131
134
|
const _GBGCRO = "GetBillingGroupCostReportOutput";
|
|
135
|
+
const _GBTP = "GetBillingTransferPreference";
|
|
136
|
+
const _GBTPI = "GetBillingTransferPreferenceInput";
|
|
137
|
+
const _GBTPO = "GetBillingTransferPreferenceOutput";
|
|
132
138
|
const _ISBP = "InclusiveStartBillingPeriod";
|
|
133
139
|
const _ISE = "InternalServerException";
|
|
134
140
|
const _K = "Key";
|
|
@@ -261,6 +267,9 @@ const _UBG = "UpdateBillingGroup";
|
|
|
261
267
|
const _UBGAG = "UpdateBillingGroupAccountGrouping";
|
|
262
268
|
const _UBGI = "UpdateBillingGroupInput";
|
|
263
269
|
const _UBGO = "UpdateBillingGroupOutput";
|
|
270
|
+
const _UBTP = "UpdateBillingTransferPreference";
|
|
271
|
+
const _UBTPI = "UpdateBillingTransferPreferenceInput";
|
|
272
|
+
const _UBTPO = "UpdateBillingTransferPreferenceOutput";
|
|
264
273
|
const _UCLI = "UpdateCustomLineItem";
|
|
265
274
|
const _UCLICD = "UpdateCustomLineItemChargeDetails";
|
|
266
275
|
const _UCLIFCD = "UpdateCustomLineItemFlatChargeDetails";
|
|
@@ -404,6 +413,11 @@ export var Attribute$ = [3, n0, _At,
|
|
|
404
413
|
[_K, _V],
|
|
405
414
|
[0, 0]
|
|
406
415
|
];
|
|
416
|
+
export var AutoTransferBillingGroupCreationPreference$ = [3, n0, _ATBGCP,
|
|
417
|
+
0,
|
|
418
|
+
[_En, _PPA],
|
|
419
|
+
[2, 0], 1
|
|
420
|
+
];
|
|
407
421
|
export var BatchAssociateResourcesToCustomLineItemInput$ = [3, n0, _BARTCLII,
|
|
408
422
|
0,
|
|
409
423
|
[_TA, _RAe, _BPR],
|
|
@@ -614,6 +628,16 @@ export var GetBillingGroupCostReportOutput$ = [3, n0, _GBGCRO,
|
|
|
614
628
|
[_BGCRR, _NT],
|
|
615
629
|
[() => BillingGroupCostReportResultsList, 0]
|
|
616
630
|
];
|
|
631
|
+
export var GetBillingTransferPreferenceInput$ = [3, n0, _GBTPI,
|
|
632
|
+
0,
|
|
633
|
+
[_RTA],
|
|
634
|
+
[0], 1
|
|
635
|
+
];
|
|
636
|
+
export var GetBillingTransferPreferenceOutput$ = [3, n0, _GBTPO,
|
|
637
|
+
0,
|
|
638
|
+
[_RTA, _ABTBGC, _LMT],
|
|
639
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, 1], 2
|
|
640
|
+
];
|
|
617
641
|
export var LineItemFilter$ = [3, n0, _LIFi,
|
|
618
642
|
0,
|
|
619
643
|
[_At, _MO, _Va, _AVt],
|
|
@@ -859,6 +883,16 @@ export var UpdateBillingGroupOutput$ = [3, n0, _UBGO,
|
|
|
859
883
|
[_A, _N, _D, _PAI, _PPA, _S, _LMT, _St, _SR, _AG],
|
|
860
884
|
[0, [() => BillingGroupName, 0], [() => BillingGroupDescription, 0], 0, 0, 1, 1, 0, 0, () => UpdateBillingGroupAccountGrouping$]
|
|
861
885
|
];
|
|
886
|
+
export var UpdateBillingTransferPreferenceInput$ = [3, n0, _UBTPI,
|
|
887
|
+
0,
|
|
888
|
+
[_RTA, _ABTBGC, _CTl],
|
|
889
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, [0, { [_hH]: _XACT, [_iT]: 1 }]], 2
|
|
890
|
+
];
|
|
891
|
+
export var UpdateBillingTransferPreferenceOutput$ = [3, n0, _UBTPO,
|
|
892
|
+
0,
|
|
893
|
+
[_RTA, _ABTBGC, _LMT],
|
|
894
|
+
[0, () => AutoTransferBillingGroupCreationPreference$, 1], 3
|
|
895
|
+
];
|
|
862
896
|
export var UpdateCustomLineItemChargeDetails$ = [3, n0, _UCLICD,
|
|
863
897
|
0,
|
|
864
898
|
[_Fl, _P, _LIF],
|
|
@@ -1042,6 +1076,9 @@ export var DisassociatePricingRules$ = [9, n0, _DPRi,
|
|
|
1042
1076
|
export var GetBillingGroupCostReport$ = [9, n0, _GBGCR,
|
|
1043
1077
|
{ [_h]: ["POST", "/get-billing-group-cost-report", 200] }, () => GetBillingGroupCostReportInput$, () => GetBillingGroupCostReportOutput$
|
|
1044
1078
|
];
|
|
1079
|
+
export var GetBillingTransferPreference$ = [9, n0, _GBTP,
|
|
1080
|
+
{ [_h]: ["POST", "/get-billing-transfer-preference", 200] }, () => GetBillingTransferPreferenceInput$, () => GetBillingTransferPreferenceOutput$
|
|
1081
|
+
];
|
|
1045
1082
|
export var ListAccountAssociations$ = [9, n0, _LAA,
|
|
1046
1083
|
{ [_h]: ["POST", "/list-account-associations", 200] }, () => ListAccountAssociationsInput$, () => ListAccountAssociationsOutput$
|
|
1047
1084
|
];
|
|
@@ -1084,6 +1121,9 @@ export var UntagResource$ = [9, n0, _UR,
|
|
|
1084
1121
|
export var UpdateBillingGroup$ = [9, n0, _UBG,
|
|
1085
1122
|
{ [_h]: ["POST", "/update-billing-group", 200] }, () => UpdateBillingGroupInput$, () => UpdateBillingGroupOutput$
|
|
1086
1123
|
];
|
|
1124
|
+
export var UpdateBillingTransferPreference$ = [9, n0, _UBTP,
|
|
1125
|
+
{ [_h]: ["PUT", "/update-billing-transfer-preference", 200] }, () => UpdateBillingTransferPreferenceInput$, () => UpdateBillingTransferPreferenceOutput$
|
|
1126
|
+
];
|
|
1087
1127
|
export var UpdateCustomLineItem$ = [9, n0, _UCLI,
|
|
1088
1128
|
{ [_h]: ["POST", "/update-custom-line-item", 200] }, () => UpdateCustomLineItemInput$, () => UpdateCustomLineItemOutput$
|
|
1089
1129
|
];
|
|
@@ -15,6 +15,7 @@ import { type DeletePricingRuleCommandInput, type DeletePricingRuleCommandOutput
|
|
|
15
15
|
import { type DisassociateAccountsCommandInput, type DisassociateAccountsCommandOutput } from "./commands/DisassociateAccountsCommand";
|
|
16
16
|
import { type DisassociatePricingRulesCommandInput, type DisassociatePricingRulesCommandOutput } from "./commands/DisassociatePricingRulesCommand";
|
|
17
17
|
import { type GetBillingGroupCostReportCommandInput, type GetBillingGroupCostReportCommandOutput } from "./commands/GetBillingGroupCostReportCommand";
|
|
18
|
+
import { type GetBillingTransferPreferenceCommandInput, type GetBillingTransferPreferenceCommandOutput } from "./commands/GetBillingTransferPreferenceCommand";
|
|
18
19
|
import { type ListAccountAssociationsCommandInput, type ListAccountAssociationsCommandOutput } from "./commands/ListAccountAssociationsCommand";
|
|
19
20
|
import { type ListBillingGroupCostReportsCommandInput, type ListBillingGroupCostReportsCommandOutput } from "./commands/ListBillingGroupCostReportsCommand";
|
|
20
21
|
import { type ListBillingGroupsCommandInput, type ListBillingGroupsCommandOutput } from "./commands/ListBillingGroupsCommand";
|
|
@@ -29,6 +30,7 @@ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOu
|
|
|
29
30
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
30
31
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
31
32
|
import { type UpdateBillingGroupCommandInput, type UpdateBillingGroupCommandOutput } from "./commands/UpdateBillingGroupCommand";
|
|
33
|
+
import { type UpdateBillingTransferPreferenceCommandInput, type UpdateBillingTransferPreferenceCommandOutput } from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
32
34
|
import { type UpdateCustomLineItemCommandInput, type UpdateCustomLineItemCommandOutput } from "./commands/UpdateCustomLineItemCommand";
|
|
33
35
|
import { type UpdatePricingPlanCommandInput, type UpdatePricingPlanCommandOutput } from "./commands/UpdatePricingPlanCommand";
|
|
34
36
|
import { type UpdatePricingRuleCommandInput, type UpdatePricingRuleCommandOutput } from "./commands/UpdatePricingRuleCommand";
|
|
@@ -123,6 +125,12 @@ export interface Billingconductor {
|
|
|
123
125
|
getBillingGroupCostReport(args: GetBillingGroupCostReportCommandInput, options?: __HttpHandlerOptions): Promise<GetBillingGroupCostReportCommandOutput>;
|
|
124
126
|
getBillingGroupCostReport(args: GetBillingGroupCostReportCommandInput, cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void): void;
|
|
125
127
|
getBillingGroupCostReport(args: GetBillingGroupCostReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void): void;
|
|
128
|
+
/**
|
|
129
|
+
* @see {@link GetBillingTransferPreferenceCommand}
|
|
130
|
+
*/
|
|
131
|
+
getBillingTransferPreference(args: GetBillingTransferPreferenceCommandInput, options?: __HttpHandlerOptions): Promise<GetBillingTransferPreferenceCommandOutput>;
|
|
132
|
+
getBillingTransferPreference(args: GetBillingTransferPreferenceCommandInput, cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void): void;
|
|
133
|
+
getBillingTransferPreference(args: GetBillingTransferPreferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void): void;
|
|
126
134
|
/**
|
|
127
135
|
* @see {@link ListAccountAssociationsCommand}
|
|
128
136
|
*/
|
|
@@ -213,6 +221,12 @@ export interface Billingconductor {
|
|
|
213
221
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBillingGroupCommandOutput>;
|
|
214
222
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void): void;
|
|
215
223
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void): void;
|
|
224
|
+
/**
|
|
225
|
+
* @see {@link UpdateBillingTransferPreferenceCommand}
|
|
226
|
+
*/
|
|
227
|
+
updateBillingTransferPreference(args: UpdateBillingTransferPreferenceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBillingTransferPreferenceCommandOutput>;
|
|
228
|
+
updateBillingTransferPreference(args: UpdateBillingTransferPreferenceCommandInput, cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void): void;
|
|
229
|
+
updateBillingTransferPreference(args: UpdateBillingTransferPreferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void): void;
|
|
216
230
|
/**
|
|
217
231
|
* @see {@link UpdateCustomLineItemCommand}
|
|
218
232
|
*/
|
|
@@ -21,6 +21,7 @@ import type { DeletePricingRuleCommandInput, DeletePricingRuleCommandOutput } fr
|
|
|
21
21
|
import type { DisassociateAccountsCommandInput, DisassociateAccountsCommandOutput } from "./commands/DisassociateAccountsCommand";
|
|
22
22
|
import type { DisassociatePricingRulesCommandInput, DisassociatePricingRulesCommandOutput } from "./commands/DisassociatePricingRulesCommand";
|
|
23
23
|
import type { GetBillingGroupCostReportCommandInput, GetBillingGroupCostReportCommandOutput } from "./commands/GetBillingGroupCostReportCommand";
|
|
24
|
+
import type { GetBillingTransferPreferenceCommandInput, GetBillingTransferPreferenceCommandOutput } from "./commands/GetBillingTransferPreferenceCommand";
|
|
24
25
|
import type { ListAccountAssociationsCommandInput, ListAccountAssociationsCommandOutput } from "./commands/ListAccountAssociationsCommand";
|
|
25
26
|
import type { ListBillingGroupCostReportsCommandInput, ListBillingGroupCostReportsCommandOutput } from "./commands/ListBillingGroupCostReportsCommand";
|
|
26
27
|
import type { ListBillingGroupsCommandInput, ListBillingGroupsCommandOutput } from "./commands/ListBillingGroupsCommand";
|
|
@@ -35,6 +36,7 @@ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput
|
|
|
35
36
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
36
37
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
37
38
|
import type { UpdateBillingGroupCommandInput, UpdateBillingGroupCommandOutput } from "./commands/UpdateBillingGroupCommand";
|
|
39
|
+
import type { UpdateBillingTransferPreferenceCommandInput, UpdateBillingTransferPreferenceCommandOutput } from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
38
40
|
import type { UpdateCustomLineItemCommandInput, UpdateCustomLineItemCommandOutput } from "./commands/UpdateCustomLineItemCommand";
|
|
39
41
|
import type { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from "./commands/UpdatePricingPlanCommand";
|
|
40
42
|
import type { UpdatePricingRuleCommandInput, UpdatePricingRuleCommandOutput } from "./commands/UpdatePricingRuleCommand";
|
|
@@ -44,11 +46,11 @@ export { __Client };
|
|
|
44
46
|
/**
|
|
45
47
|
* @public
|
|
46
48
|
*/
|
|
47
|
-
export type ServiceInputTypes = AssociateAccountsCommandInput | AssociatePricingRulesCommandInput | BatchAssociateResourcesToCustomLineItemCommandInput | BatchDisassociateResourcesFromCustomLineItemCommandInput | CreateBillingGroupCommandInput | CreateCustomLineItemCommandInput | CreatePricingPlanCommandInput | CreatePricingRuleCommandInput | DeleteBillingGroupCommandInput | DeleteCustomLineItemCommandInput | DeletePricingPlanCommandInput | DeletePricingRuleCommandInput | DisassociateAccountsCommandInput | DisassociatePricingRulesCommandInput | GetBillingGroupCostReportCommandInput | ListAccountAssociationsCommandInput | ListBillingGroupCostReportsCommandInput | ListBillingGroupsCommandInput | ListCustomLineItemVersionsCommandInput | ListCustomLineItemsCommandInput | ListPricingPlansAssociatedWithPricingRuleCommandInput | ListPricingPlansCommandInput | ListPricingRulesAssociatedToPricingPlanCommandInput | ListPricingRulesCommandInput | ListResourcesAssociatedToCustomLineItemCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBillingGroupCommandInput | UpdateCustomLineItemCommandInput | UpdatePricingPlanCommandInput | UpdatePricingRuleCommandInput;
|
|
49
|
+
export type ServiceInputTypes = AssociateAccountsCommandInput | AssociatePricingRulesCommandInput | BatchAssociateResourcesToCustomLineItemCommandInput | BatchDisassociateResourcesFromCustomLineItemCommandInput | CreateBillingGroupCommandInput | CreateCustomLineItemCommandInput | CreatePricingPlanCommandInput | CreatePricingRuleCommandInput | DeleteBillingGroupCommandInput | DeleteCustomLineItemCommandInput | DeletePricingPlanCommandInput | DeletePricingRuleCommandInput | DisassociateAccountsCommandInput | DisassociatePricingRulesCommandInput | GetBillingGroupCostReportCommandInput | GetBillingTransferPreferenceCommandInput | ListAccountAssociationsCommandInput | ListBillingGroupCostReportsCommandInput | ListBillingGroupsCommandInput | ListCustomLineItemVersionsCommandInput | ListCustomLineItemsCommandInput | ListPricingPlansAssociatedWithPricingRuleCommandInput | ListPricingPlansCommandInput | ListPricingRulesAssociatedToPricingPlanCommandInput | ListPricingRulesCommandInput | ListResourcesAssociatedToCustomLineItemCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBillingGroupCommandInput | UpdateBillingTransferPreferenceCommandInput | UpdateCustomLineItemCommandInput | UpdatePricingPlanCommandInput | UpdatePricingRuleCommandInput;
|
|
48
50
|
/**
|
|
49
51
|
* @public
|
|
50
52
|
*/
|
|
51
|
-
export type ServiceOutputTypes = AssociateAccountsCommandOutput | AssociatePricingRulesCommandOutput | BatchAssociateResourcesToCustomLineItemCommandOutput | BatchDisassociateResourcesFromCustomLineItemCommandOutput | CreateBillingGroupCommandOutput | CreateCustomLineItemCommandOutput | CreatePricingPlanCommandOutput | CreatePricingRuleCommandOutput | DeleteBillingGroupCommandOutput | DeleteCustomLineItemCommandOutput | DeletePricingPlanCommandOutput | DeletePricingRuleCommandOutput | DisassociateAccountsCommandOutput | DisassociatePricingRulesCommandOutput | GetBillingGroupCostReportCommandOutput | ListAccountAssociationsCommandOutput | ListBillingGroupCostReportsCommandOutput | ListBillingGroupsCommandOutput | ListCustomLineItemVersionsCommandOutput | ListCustomLineItemsCommandOutput | ListPricingPlansAssociatedWithPricingRuleCommandOutput | ListPricingPlansCommandOutput | ListPricingRulesAssociatedToPricingPlanCommandOutput | ListPricingRulesCommandOutput | ListResourcesAssociatedToCustomLineItemCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBillingGroupCommandOutput | UpdateCustomLineItemCommandOutput | UpdatePricingPlanCommandOutput | UpdatePricingRuleCommandOutput;
|
|
53
|
+
export type ServiceOutputTypes = AssociateAccountsCommandOutput | AssociatePricingRulesCommandOutput | BatchAssociateResourcesToCustomLineItemCommandOutput | BatchDisassociateResourcesFromCustomLineItemCommandOutput | CreateBillingGroupCommandOutput | CreateCustomLineItemCommandOutput | CreatePricingPlanCommandOutput | CreatePricingRuleCommandOutput | DeleteBillingGroupCommandOutput | DeleteCustomLineItemCommandOutput | DeletePricingPlanCommandOutput | DeletePricingRuleCommandOutput | DisassociateAccountsCommandOutput | DisassociatePricingRulesCommandOutput | GetBillingGroupCostReportCommandOutput | GetBillingTransferPreferenceCommandOutput | ListAccountAssociationsCommandOutput | ListBillingGroupCostReportsCommandOutput | ListBillingGroupsCommandOutput | ListCustomLineItemVersionsCommandOutput | ListCustomLineItemsCommandOutput | ListPricingPlansAssociatedWithPricingRuleCommandOutput | ListPricingPlansCommandOutput | ListPricingRulesAssociatedToPricingPlanCommandOutput | ListPricingRulesCommandOutput | ListResourcesAssociatedToCustomLineItemCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBillingGroupCommandOutput | UpdateBillingTransferPreferenceCommandOutput | UpdateCustomLineItemCommandOutput | UpdatePricingPlanCommandOutput | UpdatePricingRuleCommandOutput;
|
|
52
54
|
/**
|
|
53
55
|
* @public
|
|
54
56
|
*/
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { GetBillingTransferPreferenceInput, GetBillingTransferPreferenceOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link GetBillingTransferPreferenceCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetBillingTransferPreferenceCommandInput extends GetBillingTransferPreferenceInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link GetBillingTransferPreferenceCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetBillingTransferPreferenceCommandOutput extends GetBillingTransferPreferenceOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const GetBillingTransferPreferenceCommand_base: {
|
|
22
|
+
new (input: GetBillingTransferPreferenceCommandInput): import("@smithy/core/client").CommandImpl<GetBillingTransferPreferenceCommandInput, GetBillingTransferPreferenceCommandOutput, import("..").BillingconductorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetBillingTransferPreferenceCommandInput): import("@smithy/core/client").CommandImpl<GetBillingTransferPreferenceCommandInput, GetBillingTransferPreferenceCommandOutput, import("..").BillingconductorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves the auto billing group creation preference for a billing transfer.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { BillingconductorClient, GetBillingTransferPreferenceCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
32
|
+
* // const { BillingconductorClient, GetBillingTransferPreferenceCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
33
|
+
* // import type { BillingconductorClientConfig } from "@aws-sdk/client-billingconductor";
|
|
34
|
+
* const config = {}; // type is BillingconductorClientConfig
|
|
35
|
+
* const client = new BillingconductorClient(config);
|
|
36
|
+
* const input = { // GetBillingTransferPreferenceInput
|
|
37
|
+
* ResponsibilityTransferArn: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new GetBillingTransferPreferenceCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // GetBillingTransferPreferenceOutput
|
|
42
|
+
* // ResponsibilityTransferArn: "STRING_VALUE", // required
|
|
43
|
+
* // AutoBillingTransferBillingGroupCreation: { // AutoTransferBillingGroupCreationPreference
|
|
44
|
+
* // Enabled: true || false, // required
|
|
45
|
+
* // PricingPlanArn: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // LastModifiedTime: Number("long"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param GetBillingTransferPreferenceCommandInput - {@link GetBillingTransferPreferenceCommandInput}
|
|
53
|
+
* @returns {@link GetBillingTransferPreferenceCommandOutput}
|
|
54
|
+
* @see {@link GetBillingTransferPreferenceCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link GetBillingTransferPreferenceCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerException} (server fault)
|
|
62
|
+
* <p>An unexpected error occurred while processing a request. </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
|
+
* <p>The request references a resource that doesn't exist. </p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>The request was denied due to request throttling. </p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link BillingconductorServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Billingconductor service.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class GetBillingTransferPreferenceCommand extends GetBillingTransferPreferenceCommand_base {
|
|
80
|
+
/** @internal type navigation helper, not in runtime. */
|
|
81
|
+
protected static __types: {
|
|
82
|
+
api: {
|
|
83
|
+
input: GetBillingTransferPreferenceInput;
|
|
84
|
+
output: GetBillingTransferPreferenceOutput;
|
|
85
|
+
};
|
|
86
|
+
sdk: {
|
|
87
|
+
input: GetBillingTransferPreferenceCommandInput;
|
|
88
|
+
output: GetBillingTransferPreferenceCommandOutput;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { UpdateBillingTransferPreferenceInput, UpdateBillingTransferPreferenceOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UpdateBillingTransferPreferenceCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface UpdateBillingTransferPreferenceCommandInput extends UpdateBillingTransferPreferenceInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link UpdateBillingTransferPreferenceCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateBillingTransferPreferenceCommandOutput extends UpdateBillingTransferPreferenceOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const UpdateBillingTransferPreferenceCommand_base: {
|
|
22
|
+
new (input: UpdateBillingTransferPreferenceCommandInput): import("@smithy/core/client").CommandImpl<UpdateBillingTransferPreferenceCommandInput, UpdateBillingTransferPreferenceCommandOutput, import("..").BillingconductorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateBillingTransferPreferenceCommandInput): import("@smithy/core/client").CommandImpl<UpdateBillingTransferPreferenceCommandInput, UpdateBillingTransferPreferenceCommandOutput, import("..").BillingconductorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Sets the auto billing group creation preference for a billing transfer. When the preference is enabled, Billing Conductor automatically creates an indirect billing transfer billing group in your account, with the pricing plan that you specify, for each account that transfers its bill to the bill source account of this billing transfer. The preference applies only to billing groups that are created after you enable it.</p> <p>Enabling the preference requires the <code>iam:CreateServiceLinkedRole</code> permission. While a pricing plan is specified in an enabled preference, you can't delete that pricing plan.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { BillingconductorClient, UpdateBillingTransferPreferenceCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
32
|
+
* // const { BillingconductorClient, UpdateBillingTransferPreferenceCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
33
|
+
* // import type { BillingconductorClientConfig } from "@aws-sdk/client-billingconductor";
|
|
34
|
+
* const config = {}; // type is BillingconductorClientConfig
|
|
35
|
+
* const client = new BillingconductorClient(config);
|
|
36
|
+
* const input = { // UpdateBillingTransferPreferenceInput
|
|
37
|
+
* ClientToken: "STRING_VALUE",
|
|
38
|
+
* ResponsibilityTransferArn: "STRING_VALUE", // required
|
|
39
|
+
* AutoBillingTransferBillingGroupCreation: { // AutoTransferBillingGroupCreationPreference
|
|
40
|
+
* Enabled: true || false, // required
|
|
41
|
+
* PricingPlanArn: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* };
|
|
44
|
+
* const command = new UpdateBillingTransferPreferenceCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // UpdateBillingTransferPreferenceOutput
|
|
47
|
+
* // ResponsibilityTransferArn: "STRING_VALUE", // required
|
|
48
|
+
* // AutoBillingTransferBillingGroupCreation: { // AutoTransferBillingGroupCreationPreference
|
|
49
|
+
* // Enabled: true || false, // required
|
|
50
|
+
* // PricingPlanArn: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // LastModifiedTime: Number("long"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param UpdateBillingTransferPreferenceCommandInput - {@link UpdateBillingTransferPreferenceCommandInput}
|
|
58
|
+
* @returns {@link UpdateBillingTransferPreferenceCommandOutput}
|
|
59
|
+
* @see {@link UpdateBillingTransferPreferenceCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link UpdateBillingTransferPreferenceCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
64
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ConflictException} (client fault)
|
|
67
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource. </p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServerException} (server fault)
|
|
70
|
+
* <p>An unexpected error occurred while processing a request. </p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
|
+
* <p>The request references a resource that doesn't exist. </p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to request throttling. </p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link BillingconductorServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Billingconductor service.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class UpdateBillingTransferPreferenceCommand extends UpdateBillingTransferPreferenceCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: UpdateBillingTransferPreferenceInput;
|
|
92
|
+
output: UpdateBillingTransferPreferenceOutput;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: UpdateBillingTransferPreferenceCommandInput;
|
|
96
|
+
output: UpdateBillingTransferPreferenceCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./DeletePricingRuleCommand";
|
|
|
13
13
|
export * from "./DisassociateAccountsCommand";
|
|
14
14
|
export * from "./DisassociatePricingRulesCommand";
|
|
15
15
|
export * from "./GetBillingGroupCostReportCommand";
|
|
16
|
+
export * from "./GetBillingTransferPreferenceCommand";
|
|
16
17
|
export * from "./ListAccountAssociationsCommand";
|
|
17
18
|
export * from "./ListBillingGroupCostReportsCommand";
|
|
18
19
|
export * from "./ListBillingGroupsCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
27
28
|
export * from "./TagResourceCommand";
|
|
28
29
|
export * from "./UntagResourceCommand";
|
|
29
30
|
export * from "./UpdateBillingGroupCommand";
|
|
31
|
+
export * from "./UpdateBillingTransferPreferenceCommand";
|
|
30
32
|
export * from "./UpdateCustomLineItemCommand";
|
|
31
33
|
export * from "./UpdatePricingPlanCommand";
|
|
32
34
|
export * from "./UpdatePricingRuleCommand";
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const ConflictExceptionReason: {
|
|
6
6
|
readonly PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT";
|
|
7
|
+
readonly PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT: "PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT";
|
|
7
8
|
readonly PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT";
|
|
8
9
|
readonly PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT";
|
|
9
10
|
readonly RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT";
|
|
@@ -160,6 +160,22 @@ export interface Attribute {
|
|
|
160
160
|
*/
|
|
161
161
|
Value?: string | undefined;
|
|
162
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* <p> The auto billing group creation preference for a billing transfer. When the preference is enabled, Billing Conductor automatically creates an indirect billing transfer billing group, with the specified pricing plan, for each account that transfers its bill to the bill source account of the billing transfer. </p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export interface AutoTransferBillingGroupCreationPreference {
|
|
168
|
+
/**
|
|
169
|
+
* <p> Specifies whether Billing Conductor automatically creates billing groups for the billing transfer. The preference is disabled by default. </p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
Enabled: boolean | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* <p> The Amazon Resource Name (ARN) of the pricing plan to apply to the automatically created billing groups. This value is required when <code>Enabled</code> is <code>true</code>, and must be omitted when <code>Enabled</code> is <code>false</code>. </p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
PricingPlanArn?: string | undefined;
|
|
178
|
+
}
|
|
163
179
|
/**
|
|
164
180
|
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
165
181
|
* @public
|
|
@@ -1473,6 +1489,36 @@ export interface GetBillingGroupCostReportOutput {
|
|
|
1473
1489
|
*/
|
|
1474
1490
|
NextToken?: string | undefined;
|
|
1475
1491
|
}
|
|
1492
|
+
/**
|
|
1493
|
+
* @public
|
|
1494
|
+
*/
|
|
1495
|
+
export interface GetBillingTransferPreferenceInput {
|
|
1496
|
+
/**
|
|
1497
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer whose preference you want to retrieve.</p>
|
|
1498
|
+
* @public
|
|
1499
|
+
*/
|
|
1500
|
+
ResponsibilityTransferArn: string | undefined;
|
|
1501
|
+
}
|
|
1502
|
+
/**
|
|
1503
|
+
* @public
|
|
1504
|
+
*/
|
|
1505
|
+
export interface GetBillingTransferPreferenceOutput {
|
|
1506
|
+
/**
|
|
1507
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer that the preference applies to.</p>
|
|
1508
|
+
* @public
|
|
1509
|
+
*/
|
|
1510
|
+
ResponsibilityTransferArn: string | undefined;
|
|
1511
|
+
/**
|
|
1512
|
+
* <p>The auto billing group creation preference for the billing transfer.</p>
|
|
1513
|
+
* @public
|
|
1514
|
+
*/
|
|
1515
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
1516
|
+
/**
|
|
1517
|
+
* <p>The most recent time when the preference was modified. This value is empty if the preference has never been set for the billing transfer.</p>
|
|
1518
|
+
* @public
|
|
1519
|
+
*/
|
|
1520
|
+
LastModifiedTime?: number | undefined;
|
|
1521
|
+
}
|
|
1476
1522
|
/**
|
|
1477
1523
|
* <p>The filter on the account ID of the linked account, or any of the following:</p> <p> <code>MONITORED</code>: linked accounts that are associated to billing groups.</p> <p> <code>UNMONITORED</code>: linked accounts that are not associated to billing groups.</p> <p> <code>Billing Group Arn</code>: linked accounts that are associated to the provided Billing Group Arn.</p>
|
|
1478
1524
|
* @public
|
|
@@ -2437,3 +2483,43 @@ export interface UntagResourceRequest {
|
|
|
2437
2483
|
*/
|
|
2438
2484
|
export interface UntagResourceResponse {
|
|
2439
2485
|
}
|
|
2486
|
+
/**
|
|
2487
|
+
* @public
|
|
2488
|
+
*/
|
|
2489
|
+
export interface UpdateBillingTransferPreferenceInput {
|
|
2490
|
+
/**
|
|
2491
|
+
* <p>A unique, case-sensitive identifier that you specify to ensure idempotency of the request. Idempotency ensures that an API request completes no more than one time. With an idempotent request, if the original request completes successfully, any subsequent retries complete successfully without performing any further actions.</p>
|
|
2492
|
+
* @public
|
|
2493
|
+
*/
|
|
2494
|
+
ClientToken?: string | undefined;
|
|
2495
|
+
/**
|
|
2496
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer whose preference you want to set.</p>
|
|
2497
|
+
* @public
|
|
2498
|
+
*/
|
|
2499
|
+
ResponsibilityTransferArn: string | undefined;
|
|
2500
|
+
/**
|
|
2501
|
+
* <p>The auto billing group creation preference to set for the billing transfer.</p>
|
|
2502
|
+
* @public
|
|
2503
|
+
*/
|
|
2504
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
2505
|
+
}
|
|
2506
|
+
/**
|
|
2507
|
+
* @public
|
|
2508
|
+
*/
|
|
2509
|
+
export interface UpdateBillingTransferPreferenceOutput {
|
|
2510
|
+
/**
|
|
2511
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer that the preference applies to.</p>
|
|
2512
|
+
* @public
|
|
2513
|
+
*/
|
|
2514
|
+
ResponsibilityTransferArn: string | undefined;
|
|
2515
|
+
/**
|
|
2516
|
+
* <p>The updated auto billing group creation preference for the billing transfer.</p>
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2519
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
2520
|
+
/**
|
|
2521
|
+
* <p>The most recent time when the preference was modified.</p>
|
|
2522
|
+
* @public
|
|
2523
|
+
*/
|
|
2524
|
+
LastModifiedTime: number | undefined;
|
|
2525
|
+
}
|
|
@@ -23,6 +23,7 @@ export declare var AssociatePricingRulesOutput$: StaticStructureSchema;
|
|
|
23
23
|
export declare var AssociateResourceError$: StaticStructureSchema;
|
|
24
24
|
export declare var AssociateResourceResponseElement$: StaticStructureSchema;
|
|
25
25
|
export declare var Attribute$: StaticStructureSchema;
|
|
26
|
+
export declare var AutoTransferBillingGroupCreationPreference$: StaticStructureSchema;
|
|
26
27
|
export declare var BatchAssociateResourcesToCustomLineItemInput$: StaticStructureSchema;
|
|
27
28
|
export declare var BatchAssociateResourcesToCustomLineItemOutput$: StaticStructureSchema;
|
|
28
29
|
export declare var BatchDisassociateResourcesFromCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -65,6 +66,8 @@ export declare var DisassociateResourceResponseElement$: StaticStructureSchema;
|
|
|
65
66
|
export declare var FreeTierConfig$: StaticStructureSchema;
|
|
66
67
|
export declare var GetBillingGroupCostReportInput$: StaticStructureSchema;
|
|
67
68
|
export declare var GetBillingGroupCostReportOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var GetBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
70
|
+
export declare var GetBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
68
71
|
export declare var LineItemFilter$: StaticStructureSchema;
|
|
69
72
|
export declare var ListAccountAssociationsFilter$: StaticStructureSchema;
|
|
70
73
|
export declare var ListAccountAssociationsInput$: StaticStructureSchema;
|
|
@@ -114,6 +117,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
114
117
|
export declare var UpdateBillingGroupAccountGrouping$: StaticStructureSchema;
|
|
115
118
|
export declare var UpdateBillingGroupInput$: StaticStructureSchema;
|
|
116
119
|
export declare var UpdateBillingGroupOutput$: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
121
|
+
export declare var UpdateBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
117
122
|
export declare var UpdateCustomLineItemChargeDetails$: StaticStructureSchema;
|
|
118
123
|
export declare var UpdateCustomLineItemFlatChargeDetails$: StaticStructureSchema;
|
|
119
124
|
export declare var UpdateCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -141,6 +146,7 @@ export declare var DeletePricingRule$: StaticOperationSchema;
|
|
|
141
146
|
export declare var DisassociateAccounts$: StaticOperationSchema;
|
|
142
147
|
export declare var DisassociatePricingRules$: StaticOperationSchema;
|
|
143
148
|
export declare var GetBillingGroupCostReport$: StaticOperationSchema;
|
|
149
|
+
export declare var GetBillingTransferPreference$: StaticOperationSchema;
|
|
144
150
|
export declare var ListAccountAssociations$: StaticOperationSchema;
|
|
145
151
|
export declare var ListBillingGroupCostReports$: StaticOperationSchema;
|
|
146
152
|
export declare var ListBillingGroups$: StaticOperationSchema;
|
|
@@ -155,6 +161,7 @@ export declare var ListTagsForResource$: StaticOperationSchema;
|
|
|
155
161
|
export declare var TagResource$: StaticOperationSchema;
|
|
156
162
|
export declare var UntagResource$: StaticOperationSchema;
|
|
157
163
|
export declare var UpdateBillingGroup$: StaticOperationSchema;
|
|
164
|
+
export declare var UpdateBillingTransferPreference$: StaticOperationSchema;
|
|
158
165
|
export declare var UpdateCustomLineItem$: StaticOperationSchema;
|
|
159
166
|
export declare var UpdatePricingPlan$: StaticOperationSchema;
|
|
160
167
|
export declare var UpdatePricingRule$: StaticOperationSchema;
|
|
@@ -64,6 +64,10 @@ import {
|
|
|
64
64
|
GetBillingGroupCostReportCommandInput,
|
|
65
65
|
GetBillingGroupCostReportCommandOutput,
|
|
66
66
|
} from "./commands/GetBillingGroupCostReportCommand";
|
|
67
|
+
import {
|
|
68
|
+
GetBillingTransferPreferenceCommandInput,
|
|
69
|
+
GetBillingTransferPreferenceCommandOutput,
|
|
70
|
+
} from "./commands/GetBillingTransferPreferenceCommand";
|
|
67
71
|
import {
|
|
68
72
|
ListAccountAssociationsCommandInput,
|
|
69
73
|
ListAccountAssociationsCommandOutput,
|
|
@@ -117,6 +121,10 @@ import {
|
|
|
117
121
|
UpdateBillingGroupCommandInput,
|
|
118
122
|
UpdateBillingGroupCommandOutput,
|
|
119
123
|
} from "./commands/UpdateBillingGroupCommand";
|
|
124
|
+
import {
|
|
125
|
+
UpdateBillingTransferPreferenceCommandInput,
|
|
126
|
+
UpdateBillingTransferPreferenceCommandOutput,
|
|
127
|
+
} from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
120
128
|
import {
|
|
121
129
|
UpdateCustomLineItemCommandInput,
|
|
122
130
|
UpdateCustomLineItemCommandOutput,
|
|
@@ -325,6 +333,19 @@ export interface Billingconductor {
|
|
|
325
333
|
options: __HttpHandlerOptions,
|
|
326
334
|
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void,
|
|
327
335
|
): void;
|
|
336
|
+
getBillingTransferPreference(
|
|
337
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
338
|
+
options?: __HttpHandlerOptions,
|
|
339
|
+
): Promise<GetBillingTransferPreferenceCommandOutput>;
|
|
340
|
+
getBillingTransferPreference(
|
|
341
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
342
|
+
cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void,
|
|
343
|
+
): void;
|
|
344
|
+
getBillingTransferPreference(
|
|
345
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
346
|
+
options: __HttpHandlerOptions,
|
|
347
|
+
cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void,
|
|
348
|
+
): void;
|
|
328
349
|
listAccountAssociations(): Promise<ListAccountAssociationsCommandOutput>;
|
|
329
350
|
listAccountAssociations(
|
|
330
351
|
args: ListAccountAssociationsCommandInput,
|
|
@@ -513,6 +534,19 @@ export interface Billingconductor {
|
|
|
513
534
|
options: __HttpHandlerOptions,
|
|
514
535
|
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void,
|
|
515
536
|
): void;
|
|
537
|
+
updateBillingTransferPreference(
|
|
538
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
539
|
+
options?: __HttpHandlerOptions,
|
|
540
|
+
): Promise<UpdateBillingTransferPreferenceCommandOutput>;
|
|
541
|
+
updateBillingTransferPreference(
|
|
542
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
543
|
+
cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void,
|
|
544
|
+
): void;
|
|
545
|
+
updateBillingTransferPreference(
|
|
546
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
547
|
+
options: __HttpHandlerOptions,
|
|
548
|
+
cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void,
|
|
549
|
+
): void;
|
|
516
550
|
updateCustomLineItem(
|
|
517
551
|
args: UpdateCustomLineItemCommandInput,
|
|
518
552
|
options?: __HttpHandlerOptions,
|
|
@@ -93,6 +93,10 @@ import {
|
|
|
93
93
|
GetBillingGroupCostReportCommandInput,
|
|
94
94
|
GetBillingGroupCostReportCommandOutput,
|
|
95
95
|
} from "./commands/GetBillingGroupCostReportCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetBillingTransferPreferenceCommandInput,
|
|
98
|
+
GetBillingTransferPreferenceCommandOutput,
|
|
99
|
+
} from "./commands/GetBillingTransferPreferenceCommand";
|
|
96
100
|
import {
|
|
97
101
|
ListAccountAssociationsCommandInput,
|
|
98
102
|
ListAccountAssociationsCommandOutput,
|
|
@@ -146,6 +150,10 @@ import {
|
|
|
146
150
|
UpdateBillingGroupCommandInput,
|
|
147
151
|
UpdateBillingGroupCommandOutput,
|
|
148
152
|
} from "./commands/UpdateBillingGroupCommand";
|
|
153
|
+
import {
|
|
154
|
+
UpdateBillingTransferPreferenceCommandInput,
|
|
155
|
+
UpdateBillingTransferPreferenceCommandOutput,
|
|
156
|
+
} from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
149
157
|
import {
|
|
150
158
|
UpdateCustomLineItemCommandInput,
|
|
151
159
|
UpdateCustomLineItemCommandOutput,
|
|
@@ -181,6 +189,7 @@ export type ServiceInputTypes =
|
|
|
181
189
|
| DisassociateAccountsCommandInput
|
|
182
190
|
| DisassociatePricingRulesCommandInput
|
|
183
191
|
| GetBillingGroupCostReportCommandInput
|
|
192
|
+
| GetBillingTransferPreferenceCommandInput
|
|
184
193
|
| ListAccountAssociationsCommandInput
|
|
185
194
|
| ListBillingGroupCostReportsCommandInput
|
|
186
195
|
| ListBillingGroupsCommandInput
|
|
@@ -195,6 +204,7 @@ export type ServiceInputTypes =
|
|
|
195
204
|
| TagResourceCommandInput
|
|
196
205
|
| UntagResourceCommandInput
|
|
197
206
|
| UpdateBillingGroupCommandInput
|
|
207
|
+
| UpdateBillingTransferPreferenceCommandInput
|
|
198
208
|
| UpdateCustomLineItemCommandInput
|
|
199
209
|
| UpdatePricingPlanCommandInput
|
|
200
210
|
| UpdatePricingRuleCommandInput;
|
|
@@ -214,6 +224,7 @@ export type ServiceOutputTypes =
|
|
|
214
224
|
| DisassociateAccountsCommandOutput
|
|
215
225
|
| DisassociatePricingRulesCommandOutput
|
|
216
226
|
| GetBillingGroupCostReportCommandOutput
|
|
227
|
+
| GetBillingTransferPreferenceCommandOutput
|
|
217
228
|
| ListAccountAssociationsCommandOutput
|
|
218
229
|
| ListBillingGroupCostReportsCommandOutput
|
|
219
230
|
| ListBillingGroupsCommandOutput
|
|
@@ -228,6 +239,7 @@ export type ServiceOutputTypes =
|
|
|
228
239
|
| TagResourceCommandOutput
|
|
229
240
|
| UntagResourceCommandOutput
|
|
230
241
|
| UpdateBillingGroupCommandOutput
|
|
242
|
+
| UpdateBillingTransferPreferenceCommandOutput
|
|
231
243
|
| UpdateCustomLineItemCommandOutput
|
|
232
244
|
| UpdatePricingPlanCommandOutput
|
|
233
245
|
| UpdatePricingRuleCommandOutput;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetBillingTransferPreferenceInput,
|
|
4
|
+
GetBillingTransferPreferenceOutput,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface GetBillingTransferPreferenceCommandInput extends GetBillingTransferPreferenceInput {}
|
|
8
|
+
export interface GetBillingTransferPreferenceCommandOutput
|
|
9
|
+
extends GetBillingTransferPreferenceOutput, __MetadataBearer {}
|
|
10
|
+
declare const GetBillingTransferPreferenceCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: GetBillingTransferPreferenceCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
GetBillingTransferPreferenceCommandInput,
|
|
15
|
+
GetBillingTransferPreferenceCommandOutput,
|
|
16
|
+
import("..").BillingconductorClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: GetBillingTransferPreferenceCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetBillingTransferPreferenceCommandInput,
|
|
24
|
+
GetBillingTransferPreferenceCommandOutput,
|
|
25
|
+
import("..").BillingconductorClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class GetBillingTransferPreferenceCommand extends GetBillingTransferPreferenceCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: GetBillingTransferPreferenceInput;
|
|
35
|
+
output: GetBillingTransferPreferenceOutput;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: GetBillingTransferPreferenceCommandInput;
|
|
39
|
+
output: GetBillingTransferPreferenceCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
UpdateBillingTransferPreferenceInput,
|
|
4
|
+
UpdateBillingTransferPreferenceOutput,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface UpdateBillingTransferPreferenceCommandInput extends UpdateBillingTransferPreferenceInput {}
|
|
8
|
+
export interface UpdateBillingTransferPreferenceCommandOutput
|
|
9
|
+
extends UpdateBillingTransferPreferenceOutput, __MetadataBearer {}
|
|
10
|
+
declare const UpdateBillingTransferPreferenceCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: UpdateBillingTransferPreferenceCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
UpdateBillingTransferPreferenceCommandInput,
|
|
15
|
+
UpdateBillingTransferPreferenceCommandOutput,
|
|
16
|
+
import("..").BillingconductorClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateBillingTransferPreferenceCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
UpdateBillingTransferPreferenceCommandInput,
|
|
24
|
+
UpdateBillingTransferPreferenceCommandOutput,
|
|
25
|
+
import("..").BillingconductorClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class UpdateBillingTransferPreferenceCommand extends UpdateBillingTransferPreferenceCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: UpdateBillingTransferPreferenceInput;
|
|
35
|
+
output: UpdateBillingTransferPreferenceOutput;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: UpdateBillingTransferPreferenceCommandInput;
|
|
39
|
+
output: UpdateBillingTransferPreferenceCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./DeletePricingRuleCommand";
|
|
|
13
13
|
export * from "./DisassociateAccountsCommand";
|
|
14
14
|
export * from "./DisassociatePricingRulesCommand";
|
|
15
15
|
export * from "./GetBillingGroupCostReportCommand";
|
|
16
|
+
export * from "./GetBillingTransferPreferenceCommand";
|
|
16
17
|
export * from "./ListAccountAssociationsCommand";
|
|
17
18
|
export * from "./ListBillingGroupCostReportsCommand";
|
|
18
19
|
export * from "./ListBillingGroupsCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
27
28
|
export * from "./TagResourceCommand";
|
|
28
29
|
export * from "./UntagResourceCommand";
|
|
29
30
|
export * from "./UpdateBillingGroupCommand";
|
|
31
|
+
export * from "./UpdateBillingTransferPreferenceCommand";
|
|
30
32
|
export * from "./UpdateCustomLineItemCommand";
|
|
31
33
|
export * from "./UpdatePricingPlanCommand";
|
|
32
34
|
export * from "./UpdatePricingRuleCommand";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const ConflictExceptionReason: {
|
|
2
2
|
readonly PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT";
|
|
3
|
+
readonly PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT: "PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT";
|
|
3
4
|
readonly PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT";
|
|
4
5
|
readonly PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT";
|
|
5
6
|
readonly RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT";
|
|
@@ -55,6 +55,10 @@ export interface Attribute {
|
|
|
55
55
|
Key?: string | undefined;
|
|
56
56
|
Value?: string | undefined;
|
|
57
57
|
}
|
|
58
|
+
export interface AutoTransferBillingGroupCreationPreference {
|
|
59
|
+
Enabled: boolean | undefined;
|
|
60
|
+
PricingPlanArn?: string | undefined;
|
|
61
|
+
}
|
|
58
62
|
export interface ComputationPreference {
|
|
59
63
|
PricingPlanArn: string | undefined;
|
|
60
64
|
}
|
|
@@ -368,6 +372,14 @@ export interface GetBillingGroupCostReportOutput {
|
|
|
368
372
|
BillingGroupCostReportResults?: BillingGroupCostReportResultElement[] | undefined;
|
|
369
373
|
NextToken?: string | undefined;
|
|
370
374
|
}
|
|
375
|
+
export interface GetBillingTransferPreferenceInput {
|
|
376
|
+
ResponsibilityTransferArn: string | undefined;
|
|
377
|
+
}
|
|
378
|
+
export interface GetBillingTransferPreferenceOutput {
|
|
379
|
+
ResponsibilityTransferArn: string | undefined;
|
|
380
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
381
|
+
LastModifiedTime?: number | undefined;
|
|
382
|
+
}
|
|
371
383
|
export interface ListAccountAssociationsFilter {
|
|
372
384
|
Association?: string | undefined;
|
|
373
385
|
AccountId?: string | undefined;
|
|
@@ -602,3 +614,13 @@ export interface UntagResourceRequest {
|
|
|
602
614
|
TagKeys: string[] | undefined;
|
|
603
615
|
}
|
|
604
616
|
export interface UntagResourceResponse {}
|
|
617
|
+
export interface UpdateBillingTransferPreferenceInput {
|
|
618
|
+
ClientToken?: string | undefined;
|
|
619
|
+
ResponsibilityTransferArn: string | undefined;
|
|
620
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
621
|
+
}
|
|
622
|
+
export interface UpdateBillingTransferPreferenceOutput {
|
|
623
|
+
ResponsibilityTransferArn: string | undefined;
|
|
624
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
625
|
+
LastModifiedTime: number | undefined;
|
|
626
|
+
}
|
|
@@ -18,6 +18,7 @@ export declare var AssociatePricingRulesOutput$: StaticStructureSchema;
|
|
|
18
18
|
export declare var AssociateResourceError$: StaticStructureSchema;
|
|
19
19
|
export declare var AssociateResourceResponseElement$: StaticStructureSchema;
|
|
20
20
|
export declare var Attribute$: StaticStructureSchema;
|
|
21
|
+
export declare var AutoTransferBillingGroupCreationPreference$: StaticStructureSchema;
|
|
21
22
|
export declare var BatchAssociateResourcesToCustomLineItemInput$: StaticStructureSchema;
|
|
22
23
|
export declare var BatchAssociateResourcesToCustomLineItemOutput$: StaticStructureSchema;
|
|
23
24
|
export declare var BatchDisassociateResourcesFromCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -60,6 +61,8 @@ export declare var DisassociateResourceResponseElement$: StaticStructureSchema;
|
|
|
60
61
|
export declare var FreeTierConfig$: StaticStructureSchema;
|
|
61
62
|
export declare var GetBillingGroupCostReportInput$: StaticStructureSchema;
|
|
62
63
|
export declare var GetBillingGroupCostReportOutput$: StaticStructureSchema;
|
|
64
|
+
export declare var GetBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
65
|
+
export declare var GetBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
63
66
|
export declare var LineItemFilter$: StaticStructureSchema;
|
|
64
67
|
export declare var ListAccountAssociationsFilter$: StaticStructureSchema;
|
|
65
68
|
export declare var ListAccountAssociationsInput$: StaticStructureSchema;
|
|
@@ -109,6 +112,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
109
112
|
export declare var UpdateBillingGroupAccountGrouping$: StaticStructureSchema;
|
|
110
113
|
export declare var UpdateBillingGroupInput$: StaticStructureSchema;
|
|
111
114
|
export declare var UpdateBillingGroupOutput$: StaticStructureSchema;
|
|
115
|
+
export declare var UpdateBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
116
|
+
export declare var UpdateBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
112
117
|
export declare var UpdateCustomLineItemChargeDetails$: StaticStructureSchema;
|
|
113
118
|
export declare var UpdateCustomLineItemFlatChargeDetails$: StaticStructureSchema;
|
|
114
119
|
export declare var UpdateCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -136,6 +141,7 @@ export declare var DeletePricingRule$: StaticOperationSchema;
|
|
|
136
141
|
export declare var DisassociateAccounts$: StaticOperationSchema;
|
|
137
142
|
export declare var DisassociatePricingRules$: StaticOperationSchema;
|
|
138
143
|
export declare var GetBillingGroupCostReport$: StaticOperationSchema;
|
|
144
|
+
export declare var GetBillingTransferPreference$: StaticOperationSchema;
|
|
139
145
|
export declare var ListAccountAssociations$: StaticOperationSchema;
|
|
140
146
|
export declare var ListBillingGroupCostReports$: StaticOperationSchema;
|
|
141
147
|
export declare var ListBillingGroups$: StaticOperationSchema;
|
|
@@ -150,6 +156,7 @@ export declare var ListTagsForResource$: StaticOperationSchema;
|
|
|
150
156
|
export declare var TagResource$: StaticOperationSchema;
|
|
151
157
|
export declare var UntagResource$: StaticOperationSchema;
|
|
152
158
|
export declare var UpdateBillingGroup$: StaticOperationSchema;
|
|
159
|
+
export declare var UpdateBillingTransferPreference$: StaticOperationSchema;
|
|
153
160
|
export declare var UpdateCustomLineItem$: StaticOperationSchema;
|
|
154
161
|
export declare var UpdatePricingPlan$: StaticOperationSchema;
|
|
155
162
|
export declare var UpdatePricingRule$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-billingconductor",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1137.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-billingconductor",
|
|
6
6
|
"license": "Apache-2.0",
|