@aws-sdk/client-billingconductor 3.910.0 → 3.912.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 +1 -13
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +14 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +6 -0
- package/dist-types/Billingconductor.d.ts +1 -13
- package/dist-types/BillingconductorClient.d.ts +1 -13
- package/dist-types/commands/AssociateAccountsCommand.d.ts +8 -17
- package/dist-types/commands/AssociatePricingRulesCommand.d.ts +8 -15
- package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +10 -18
- package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +9 -16
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +7 -14
- package/dist-types/commands/CreateCustomLineItemCommand.d.ts +15 -18
- package/dist-types/commands/CreatePricingPlanCommand.d.ts +8 -15
- package/dist-types/commands/CreatePricingRuleCommand.d.ts +9 -16
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +5 -10
- package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +6 -12
- package/dist-types/commands/DeletePricingPlanCommand.d.ts +6 -11
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +5 -9
- package/dist-types/commands/DisassociateAccountsCommand.d.ts +6 -11
- package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +7 -14
- package/dist-types/commands/GetBillingGroupCostReportCommand.d.ts +7 -12
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +6 -13
- package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +6 -11
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +7 -11
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +13 -12
- package/dist-types/commands/ListCustomLineItemsCommand.d.ts +15 -17
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +6 -12
- package/dist-types/commands/ListPricingPlansCommand.d.ts +5 -9
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +6 -12
- package/dist-types/commands/ListPricingRulesCommand.d.ts +7 -12
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +8 -14
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -12
- package/dist-types/commands/TagResourceCommand.d.ts +6 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -12
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +9 -15
- package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +13 -19
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +7 -13
- package/dist-types/commands/UpdatePricingRuleCommand.d.ts +10 -17
- package/dist-types/index.d.ts +1 -13
- package/dist-types/models/models_0.d.ts +287 -637
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/package.json +5 -5
|
@@ -90,6 +90,7 @@ export interface ValidationExceptionField {
|
|
|
90
90
|
export declare const ValidationExceptionReason: {
|
|
91
91
|
readonly ACCOUNTS_ALREADY_ASSOCIATED: "ACCOUNTS_ALREADY_ASSOCIATED";
|
|
92
92
|
readonly ACCOUNTS_NOT_ASSOCIATED: "ACCOUNTS_NOT_ASSOCIATED";
|
|
93
|
+
readonly BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD: "BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD";
|
|
93
94
|
readonly CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP: "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP";
|
|
94
95
|
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
95
96
|
readonly CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS: "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS";
|
|
@@ -103,11 +104,13 @@ export declare const ValidationExceptionReason: {
|
|
|
103
104
|
readonly ILLEGAL_BILLING_PERIOD_RANGE: "ILLEGAL_BILLING_PERIOD_RANGE";
|
|
104
105
|
readonly ILLEGAL_CHARGE_DETAILS: "ILLEGAL_CHARGE_DETAILS";
|
|
105
106
|
readonly ILLEGAL_CHILD_ASSOCIATE_RESOURCE: "ILLEGAL_CHILD_ASSOCIATE_RESOURCE";
|
|
107
|
+
readonly ILLEGAL_COMPUTATION_RULE: "ILLEGAL_COMPUTATION_RULE";
|
|
106
108
|
readonly ILLEGAL_CUSTOMLINEITEM: "ILLEGAL_CUSTOMLINEITEM";
|
|
107
109
|
readonly ILLEGAL_CUSTOMLINEITEM_MODIFICATION: "ILLEGAL_CUSTOMLINEITEM_MODIFICATION";
|
|
108
110
|
readonly ILLEGAL_CUSTOMLINEITEM_UPDATE: "ILLEGAL_CUSTOMLINEITEM_UPDATE";
|
|
109
111
|
readonly ILLEGAL_ENDED_BILLINGGROUP: "ILLEGAL_ENDED_BILLINGGROUP";
|
|
110
112
|
readonly ILLEGAL_EXPRESSION: "ILLEGAL_EXPRESSION";
|
|
113
|
+
readonly ILLEGAL_LINE_ITEM_FILTER: "ILLEGAL_LINE_ITEM_FILTER";
|
|
111
114
|
readonly ILLEGAL_MODIFIER_PERCENTAGE: "ILLEGAL_MODIFIER_PERCENTAGE";
|
|
112
115
|
readonly ILLEGAL_OPERATION: "ILLEGAL_OPERATION";
|
|
113
116
|
readonly ILLEGAL_PRIMARY_ACCOUNT: "ILLEGAL_PRIMARY_ACCOUNT";
|
|
@@ -132,6 +135,7 @@ export declare const ValidationExceptionReason: {
|
|
|
132
135
|
readonly MISMATCHED_PRICINGPLAN_ARN: "MISMATCHED_PRICINGPLAN_ARN";
|
|
133
136
|
readonly MISMATCHED_PRICINGRULE_ARN: "MISMATCHED_PRICINGRULE_ARN";
|
|
134
137
|
readonly MISSING_BILLINGGROUP: "MISSING_BILLINGGROUP";
|
|
138
|
+
readonly MISSING_COSTCATEGORY: "MISSING_COSTCATEGORY";
|
|
135
139
|
readonly MISSING_CUSTOMLINEITEM: "MISSING_CUSTOMLINEITEM";
|
|
136
140
|
readonly MISSING_LINKED_ACCOUNT_IDS: "MISSING_LINKED_ACCOUNT_IDS";
|
|
137
141
|
readonly MISSING_PRICINGPLAN: "MISSING_PRICINGPLAN";
|
|
@@ -348,6 +352,14 @@ export interface CustomLineItemChargeDetails {
|
|
|
348
352
|
Type: CustomLineItemType | undefined;
|
|
349
353
|
LineItemFilters?: LineItemFilter[] | undefined;
|
|
350
354
|
}
|
|
355
|
+
export declare const ComputationRuleEnum: {
|
|
356
|
+
readonly CONSOLIDATED: "CONSOLIDATED";
|
|
357
|
+
};
|
|
358
|
+
export type ComputationRuleEnum =
|
|
359
|
+
(typeof ComputationRuleEnum)[keyof typeof ComputationRuleEnum];
|
|
360
|
+
export interface PresentationObject {
|
|
361
|
+
Service: string | undefined;
|
|
362
|
+
}
|
|
351
363
|
export interface CreateCustomLineItemInput {
|
|
352
364
|
ClientToken?: string | undefined;
|
|
353
365
|
Name: string | undefined;
|
|
@@ -357,6 +369,8 @@ export interface CreateCustomLineItemInput {
|
|
|
357
369
|
Tags?: Record<string, string> | undefined;
|
|
358
370
|
ChargeDetails: CustomLineItemChargeDetails | undefined;
|
|
359
371
|
AccountId?: string | undefined;
|
|
372
|
+
ComputationRule?: ComputationRuleEnum | undefined;
|
|
373
|
+
PresentationDetails?: PresentationObject | undefined;
|
|
360
374
|
}
|
|
361
375
|
export interface CreateCustomLineItemOutput {
|
|
362
376
|
Arn?: string | undefined;
|
|
@@ -409,6 +423,8 @@ export interface CustomLineItemListElement {
|
|
|
409
423
|
LastModifiedTime?: number | undefined;
|
|
410
424
|
AssociationSize?: number | undefined;
|
|
411
425
|
AccountId?: string | undefined;
|
|
426
|
+
ComputationRule?: ComputationRuleEnum | undefined;
|
|
427
|
+
PresentationDetails?: PresentationObject | undefined;
|
|
412
428
|
}
|
|
413
429
|
export interface ListCustomLineItemsOutput {
|
|
414
430
|
CustomLineItems?: CustomLineItemListElement[] | undefined;
|
|
@@ -444,6 +460,8 @@ export interface CustomLineItemVersionListElement {
|
|
|
444
460
|
Arn?: string | undefined;
|
|
445
461
|
StartTime?: number | undefined;
|
|
446
462
|
AccountId?: string | undefined;
|
|
463
|
+
ComputationRule?: ComputationRuleEnum | undefined;
|
|
464
|
+
PresentationDetails?: PresentationObject | undefined;
|
|
447
465
|
}
|
|
448
466
|
export interface ListCustomLineItemVersionsOutput {
|
|
449
467
|
CustomLineItemVersions?: CustomLineItemVersionListElement[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-billingconductor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.912.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-billingconductor",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.911.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.911.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.911.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
30
30
|
"@aws-sdk/types": "3.910.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.910.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.911.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.3.2",
|
|
35
35
|
"@smithy/core": "^3.16.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.3",
|