@aws-sdk/client-billingconductor 3.1136.0 → 3.1138.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 +61 -3
- 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 +42 -2
- package/dist-types/Billingconductor.d.ts +85 -65
- 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 +102 -64
- 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 +8 -8
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.1137.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";
|
|
@@ -564,10 +573,10 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.billingconductor";
|
|
|
564
573
|
const _se = "server";
|
|
565
574
|
const _tK = "tagKeys";
|
|
566
575
|
const n0 = "com.amazonaws.billingconductor";
|
|
567
|
-
const _s_registry = TypeRegistry
|
|
576
|
+
const _s_registry = new TypeRegistry(_s);
|
|
568
577
|
var BillingconductorServiceException$ = [-3, _s, "BillingconductorServiceException", 0, [], []];
|
|
569
578
|
_s_registry.registerError(BillingconductorServiceException$, BillingconductorServiceException);
|
|
570
|
-
const n0_registry = TypeRegistry
|
|
579
|
+
const n0_registry = new TypeRegistry(n0);
|
|
571
580
|
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
572
581
|
{ [_e]: _c, [_hE]: 403 },
|
|
573
582
|
[_M],
|
|
@@ -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";
|
|
@@ -299,10 +308,10 @@ const n0 = "com.amazonaws.billingconductor";
|
|
|
299
308
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
300
309
|
import { BillingconductorServiceException } from "../models/BillingconductorServiceException";
|
|
301
310
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceLimitExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
302
|
-
const _s_registry = TypeRegistry
|
|
311
|
+
const _s_registry = new TypeRegistry(_s);
|
|
303
312
|
export var BillingconductorServiceException$ = [-3, _s, "BillingconductorServiceException", 0, [], []];
|
|
304
313
|
_s_registry.registerError(BillingconductorServiceException$, BillingconductorServiceException);
|
|
305
|
-
const n0_registry = TypeRegistry
|
|
314
|
+
const n0_registry = new TypeRegistry(n0);
|
|
306
315
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
307
316
|
{ [_e]: _c, [_hE]: 403 },
|
|
308
317
|
[_M],
|
|
@@ -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
|
];
|