@aws-sdk/client-billingconductor 3.369.0 → 3.377.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/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/AssociateAccountsCommand.d.ts +1 -1
- package/dist-types/commands/AssociatePricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/CreatePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/CreatePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/DeletePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAccountsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +1 -1
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +5 -1
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomLineItemsCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingPlansCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +7 -1
- package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePricingRuleCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +155 -237
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/package.json +16 -17
|
@@ -16,6 +16,7 @@ export interface AccountAssociationsListElement {
|
|
|
16
16
|
}
|
|
17
17
|
export interface AccountGrouping {
|
|
18
18
|
LinkedAccountIds: string[] | undefined;
|
|
19
|
+
AutoAssociate?: boolean;
|
|
19
20
|
}
|
|
20
21
|
export interface AssociateAccountsInput {
|
|
21
22
|
Arn: string | undefined;
|
|
@@ -89,6 +90,7 @@ export interface ValidationExceptionField {
|
|
|
89
90
|
export declare const ValidationExceptionReason: {
|
|
90
91
|
readonly ACCOUNTS_ALREADY_ASSOCIATED: "ACCOUNTS_ALREADY_ASSOCIATED";
|
|
91
92
|
readonly ACCOUNTS_NOT_ASSOCIATED: "ACCOUNTS_NOT_ASSOCIATED";
|
|
93
|
+
readonly CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP: "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP";
|
|
92
94
|
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
93
95
|
readonly CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS: "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS";
|
|
94
96
|
readonly DUPLICATE_ACCOUNT: "DUPLICATE_ACCOUNT";
|
|
@@ -142,6 +144,7 @@ export declare const ValidationExceptionReason: {
|
|
|
142
144
|
readonly PRIMARY_CANNOT_DISASSOCIATE: "PRIMARY_CANNOT_DISASSOCIATE";
|
|
143
145
|
readonly PRIMARY_NOT_ASSOCIATED: "PRIMARY_NOT_ASSOCIATED";
|
|
144
146
|
readonly TOO_MANY_ACCOUNTS_IN_REQUEST: "TOO_MANY_ACCOUNTS_IN_REQUEST";
|
|
147
|
+
readonly TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS: "TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS";
|
|
145
148
|
readonly TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST: "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST";
|
|
146
149
|
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
147
150
|
};
|
|
@@ -219,6 +222,7 @@ export interface ListBillingGroupsFilter {
|
|
|
219
222
|
Arns?: string[];
|
|
220
223
|
PricingPlan?: string;
|
|
221
224
|
Statuses?: (BillingGroupStatus | string)[];
|
|
225
|
+
AutoAssociate?: boolean;
|
|
222
226
|
}
|
|
223
227
|
export interface ListBillingGroupsInput {
|
|
224
228
|
BillingPeriod?: string;
|
|
@@ -226,6 +230,9 @@ export interface ListBillingGroupsInput {
|
|
|
226
230
|
NextToken?: string;
|
|
227
231
|
Filters?: ListBillingGroupsFilter;
|
|
228
232
|
}
|
|
233
|
+
export interface ListBillingGroupAccountGrouping {
|
|
234
|
+
AutoAssociate?: boolean;
|
|
235
|
+
}
|
|
229
236
|
export interface BillingGroupListElement {
|
|
230
237
|
Name?: string;
|
|
231
238
|
Arn?: string;
|
|
@@ -237,17 +244,22 @@ export interface BillingGroupListElement {
|
|
|
237
244
|
LastModifiedTime?: number;
|
|
238
245
|
Status?: BillingGroupStatus | string;
|
|
239
246
|
StatusReason?: string;
|
|
247
|
+
AccountGrouping?: ListBillingGroupAccountGrouping;
|
|
240
248
|
}
|
|
241
249
|
export interface ListBillingGroupsOutput {
|
|
242
250
|
BillingGroups?: BillingGroupListElement[];
|
|
243
251
|
NextToken?: string;
|
|
244
252
|
}
|
|
253
|
+
export interface UpdateBillingGroupAccountGrouping {
|
|
254
|
+
AutoAssociate?: boolean;
|
|
255
|
+
}
|
|
245
256
|
export interface UpdateBillingGroupInput {
|
|
246
257
|
Arn: string | undefined;
|
|
247
258
|
Name?: string;
|
|
248
259
|
Status?: BillingGroupStatus | string;
|
|
249
260
|
ComputationPreference?: ComputationPreference;
|
|
250
261
|
Description?: string;
|
|
262
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
251
263
|
}
|
|
252
264
|
export interface UpdateBillingGroupOutput {
|
|
253
265
|
Arn?: string;
|
|
@@ -259,6 +271,7 @@ export interface UpdateBillingGroupOutput {
|
|
|
259
271
|
LastModifiedTime?: number;
|
|
260
272
|
Status?: BillingGroupStatus | string;
|
|
261
273
|
StatusReason?: string;
|
|
274
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
262
275
|
}
|
|
263
276
|
export interface CustomLineItemBillingPeriodRange {
|
|
264
277
|
InclusiveStartBillingPeriod: string | 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.377.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.377.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
48
|
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
@@ -52,13 +52,12 @@
|
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
62
61
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
63
62
|
"@tsconfig/node14": "1.0.3",
|
|
64
63
|
"@types/node": "^14.14.31",
|