@aws-sdk/client-billingconductor 3.181.0 → 3.183.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/CHANGELOG.md +8 -0
- package/dist-es/Billingconductor.js +122 -129
- package/dist-es/BillingconductorClient.js +22 -28
- package/dist-es/commands/AssociateAccountsCommand.js +21 -28
- package/dist-es/commands/AssociatePricingRulesCommand.js +21 -28
- package/dist-es/commands/BatchAssociateResourcesToCustomLineItemCommand.js +21 -28
- package/dist-es/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +21 -28
- package/dist-es/commands/CreateBillingGroupCommand.js +21 -28
- package/dist-es/commands/CreateCustomLineItemCommand.js +21 -28
- package/dist-es/commands/CreatePricingPlanCommand.js +21 -28
- package/dist-es/commands/CreatePricingRuleCommand.js +21 -28
- package/dist-es/commands/DeleteBillingGroupCommand.js +21 -28
- package/dist-es/commands/DeleteCustomLineItemCommand.js +21 -28
- package/dist-es/commands/DeletePricingPlanCommand.js +21 -28
- package/dist-es/commands/DeletePricingRuleCommand.js +21 -28
- package/dist-es/commands/DisassociateAccountsCommand.js +21 -28
- package/dist-es/commands/DisassociatePricingRulesCommand.js +21 -28
- package/dist-es/commands/ListAccountAssociationsCommand.js +21 -28
- package/dist-es/commands/ListBillingGroupCostReportsCommand.js +21 -28
- package/dist-es/commands/ListBillingGroupsCommand.js +21 -28
- package/dist-es/commands/ListCustomLineItemsCommand.js +21 -28
- package/dist-es/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +21 -28
- package/dist-es/commands/ListPricingPlansCommand.js +21 -28
- package/dist-es/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +21 -28
- package/dist-es/commands/ListPricingRulesCommand.js +21 -28
- package/dist-es/commands/ListResourcesAssociatedToCustomLineItemCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateBillingGroupCommand.js +21 -28
- package/dist-es/commands/UpdateCustomLineItemCommand.js +21 -28
- package/dist-es/commands/UpdatePricingPlanCommand.js +21 -28
- package/dist-es/commands/UpdatePricingRuleCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/BillingconductorServiceException.js +5 -10
- package/dist-es/models/models_0.js +417 -197
- package/dist-es/pagination/ListAccountAssociationsPaginator.js +24 -67
- package/dist-es/pagination/ListBillingGroupCostReportsPaginator.js +25 -68
- package/dist-es/pagination/ListBillingGroupsPaginator.js +25 -68
- package/dist-es/pagination/ListCustomLineItemsPaginator.js +25 -68
- package/dist-es/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +25 -68
- package/dist-es/pagination/ListPricingPlansPaginator.js +25 -68
- package/dist-es/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +25 -68
- package/dist-es/pagination/ListPricingRulesPaginator.js +25 -68
- package/dist-es/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2512 -3363
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
3
|
-
|
|
2
|
+
const regionHash = {
|
|
4
3
|
"aws-global": {
|
|
5
4
|
variants: [
|
|
6
5
|
{
|
|
@@ -11,7 +10,7 @@ var regionHash = {
|
|
|
11
10
|
signingRegion: "us-east-1",
|
|
12
11
|
},
|
|
13
12
|
};
|
|
14
|
-
|
|
13
|
+
const partitionHash = {
|
|
15
14
|
aws: {
|
|
16
15
|
regions: [
|
|
17
16
|
"af-south-1",
|
|
@@ -133,8 +132,9 @@ var partitionHash = {
|
|
|
133
132
|
],
|
|
134
133
|
},
|
|
135
134
|
};
|
|
136
|
-
export
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
135
|
+
export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
|
|
136
|
+
...options,
|
|
137
|
+
signingService: "billingconductor",
|
|
138
|
+
regionHash,
|
|
139
|
+
partitionHash,
|
|
140
|
+
});
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Object.setPrototypeOf(_this, BillingconductorServiceException.prototype);
|
|
8
|
-
return _this;
|
|
2
|
+
export class BillingconductorServiceException extends __ServiceException {
|
|
3
|
+
constructor(options) {
|
|
4
|
+
super(options);
|
|
5
|
+
Object.setPrototypeOf(this, BillingconductorServiceException.prototype);
|
|
9
6
|
}
|
|
10
|
-
|
|
11
|
-
}(__ServiceException));
|
|
12
|
-
export { BillingconductorServiceException };
|
|
7
|
+
}
|