@aws-sdk/client-billingconductor 3.934.0 → 3.936.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/index.js +153 -129
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +132 -0
- package/dist-es/models/errors.js +125 -0
- package/dist-es/models/models_0.js +1 -248
- package/dist-es/schemas/schemas_0.js +22 -7
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +2 -1
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +19 -2
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +4 -2
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +260 -0
- package/dist-types/models/errors.d.ts +160 -0
- package/dist-types/models/models_0.d.ts +65 -401
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +161 -0
- package/dist-types/ts3.4/models/errors.d.ts +71 -0
- package/dist-types/ts3.4/models/models_0.d.ts +29 -219
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action. </p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { AssociateResourceErrorReason, BillingGroupStatus, BillingGroupType, ComputationRuleEnum, CurrencyCode, CustomLineItemRelationship, CustomLineItemType, GroupByAttributeName, LineItemFilterAttributeName, LineItemFilterValue, MatchOption, PricingRuleScope, PricingRuleType, SearchOption } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p>A representation of a linked account.</p>
|
|
18
4
|
* @public
|
|
@@ -48,12 +34,17 @@ export interface AccountGrouping {
|
|
|
48
34
|
* <p>The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.</p>
|
|
49
35
|
* @public
|
|
50
36
|
*/
|
|
51
|
-
LinkedAccountIds
|
|
37
|
+
LinkedAccountIds?: string[] | undefined;
|
|
52
38
|
/**
|
|
53
39
|
* <p>Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
54
40
|
* @public
|
|
55
41
|
*/
|
|
56
42
|
AutoAssociate?: boolean | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p> The Amazon Resource Name (ARN) that identifies the transfer relationship owned by the Bill Transfer account (caller account). When specified, the PrimaryAccountId is no longer required. </p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
ResponsibilityTransferArn?: string | undefined;
|
|
57
48
|
}
|
|
58
49
|
/**
|
|
59
50
|
* @public
|
|
@@ -80,141 +71,6 @@ export interface AssociateAccountsOutput {
|
|
|
80
71
|
*/
|
|
81
72
|
Arn?: string | undefined;
|
|
82
73
|
}
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
* @enum
|
|
86
|
-
*/
|
|
87
|
-
export declare const ConflictExceptionReason: {
|
|
88
|
-
readonly PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT";
|
|
89
|
-
readonly PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT";
|
|
90
|
-
readonly PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT";
|
|
91
|
-
readonly RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT";
|
|
92
|
-
readonly WRITE_CONFLICT_RETRY: "WRITE_CONFLICT_RETRY";
|
|
93
|
-
};
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
98
|
-
/**
|
|
99
|
-
* <p>You can cause an inconsistent state by updating or deleting a resource. </p>
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
export declare class ConflictException extends __BaseException {
|
|
103
|
-
readonly name: "ConflictException";
|
|
104
|
-
readonly $fault: "client";
|
|
105
|
-
Message: string | undefined;
|
|
106
|
-
/**
|
|
107
|
-
* <p>Identifier of the resource in use. </p>
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
ResourceId: string | undefined;
|
|
111
|
-
/**
|
|
112
|
-
* <p>Type of the resource in use. </p>
|
|
113
|
-
* @public
|
|
114
|
-
*/
|
|
115
|
-
ResourceType: string | undefined;
|
|
116
|
-
/**
|
|
117
|
-
* <p>Reason for the inconsistent state. </p>
|
|
118
|
-
* @public
|
|
119
|
-
*/
|
|
120
|
-
Reason?: ConflictExceptionReason | undefined;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* <p>An unexpected error occurred while processing a request. </p>
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
export declare class InternalServerException extends __BaseException {
|
|
131
|
-
readonly name: "InternalServerException";
|
|
132
|
-
readonly $fault: "server";
|
|
133
|
-
Message: string | undefined;
|
|
134
|
-
/**
|
|
135
|
-
* <p>Number of seconds you can retry after the call. </p>
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
RetryAfterSeconds?: number | undefined;
|
|
139
|
-
/**
|
|
140
|
-
* @internal
|
|
141
|
-
*/
|
|
142
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
143
|
-
}
|
|
144
|
-
/**
|
|
145
|
-
* <p>The request references a resource that doesn't exist. </p>
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
149
|
-
readonly name: "ResourceNotFoundException";
|
|
150
|
-
readonly $fault: "client";
|
|
151
|
-
Message: string | undefined;
|
|
152
|
-
/**
|
|
153
|
-
* <p>Resource identifier that was not found. </p>
|
|
154
|
-
* @public
|
|
155
|
-
*/
|
|
156
|
-
ResourceId: string | undefined;
|
|
157
|
-
/**
|
|
158
|
-
* <p>Resource type that was not found. </p>
|
|
159
|
-
* @public
|
|
160
|
-
*/
|
|
161
|
-
ResourceType: string | undefined;
|
|
162
|
-
/**
|
|
163
|
-
* @internal
|
|
164
|
-
*/
|
|
165
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* <p>The request would cause a service limit to exceed. </p>
|
|
169
|
-
* @public
|
|
170
|
-
*/
|
|
171
|
-
export declare class ServiceLimitExceededException extends __BaseException {
|
|
172
|
-
readonly name: "ServiceLimitExceededException";
|
|
173
|
-
readonly $fault: "client";
|
|
174
|
-
Message: string | undefined;
|
|
175
|
-
/**
|
|
176
|
-
* <p>Identifier of the resource affected. </p>
|
|
177
|
-
* @public
|
|
178
|
-
*/
|
|
179
|
-
ResourceId?: string | undefined;
|
|
180
|
-
/**
|
|
181
|
-
* <p>Type of the resource affected. </p>
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
ResourceType?: string | undefined;
|
|
185
|
-
/**
|
|
186
|
-
* <p>The unique code identifier of the service limit that is being exceeded. </p>
|
|
187
|
-
* @public
|
|
188
|
-
*/
|
|
189
|
-
LimitCode: string | undefined;
|
|
190
|
-
/**
|
|
191
|
-
* <p>The unique code for the service of the limit that is being exceeded. </p>
|
|
192
|
-
* @public
|
|
193
|
-
*/
|
|
194
|
-
ServiceCode: string | undefined;
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
199
|
-
}
|
|
200
|
-
/**
|
|
201
|
-
* <p>The request was denied due to request throttling. </p>
|
|
202
|
-
* @public
|
|
203
|
-
*/
|
|
204
|
-
export declare class ThrottlingException extends __BaseException {
|
|
205
|
-
readonly name: "ThrottlingException";
|
|
206
|
-
readonly $fault: "client";
|
|
207
|
-
Message: string | undefined;
|
|
208
|
-
/**
|
|
209
|
-
* <p>Number of seconds you can safely retry after the call. </p>
|
|
210
|
-
* @public
|
|
211
|
-
*/
|
|
212
|
-
RetryAfterSeconds?: number | undefined;
|
|
213
|
-
/**
|
|
214
|
-
* @internal
|
|
215
|
-
*/
|
|
216
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
217
|
-
}
|
|
218
74
|
/**
|
|
219
75
|
* <p>The field's information of a request that resulted in an exception.</p>
|
|
220
76
|
* @public
|
|
@@ -231,103 +87,6 @@ export interface ValidationExceptionField {
|
|
|
231
87
|
*/
|
|
232
88
|
Message: string | undefined;
|
|
233
89
|
}
|
|
234
|
-
/**
|
|
235
|
-
* @public
|
|
236
|
-
* @enum
|
|
237
|
-
*/
|
|
238
|
-
export declare const ValidationExceptionReason: {
|
|
239
|
-
readonly ACCOUNTS_ALREADY_ASSOCIATED: "ACCOUNTS_ALREADY_ASSOCIATED";
|
|
240
|
-
readonly ACCOUNTS_NOT_ASSOCIATED: "ACCOUNTS_NOT_ASSOCIATED";
|
|
241
|
-
readonly BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD: "BILLING_GROUP_ALREADY_EXIST_IN_CURRENT_BILLING_PERIOD";
|
|
242
|
-
readonly CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP: "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP";
|
|
243
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
244
|
-
readonly CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS: "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS";
|
|
245
|
-
readonly DUPLICATE_ACCOUNT: "DUPLICATE_ACCOUNT";
|
|
246
|
-
readonly DUPLICATE_PRICINGRULE_ARNS: "DUPLICATE_PRICINGRULE_ARNS";
|
|
247
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
248
|
-
readonly ILLEGAL_ACCOUNTS: "ILLEGAL_ACCOUNTS";
|
|
249
|
-
readonly ILLEGAL_ACCOUNT_ID: "ILLEGAL_ACCOUNT_ID";
|
|
250
|
-
readonly ILLEGAL_BILLING_ENTITY: "ILLEGAL_BILLING_ENTITY";
|
|
251
|
-
readonly ILLEGAL_BILLING_PERIOD: "ILLEGAL_BILLING_PERIOD";
|
|
252
|
-
readonly ILLEGAL_BILLING_PERIOD_RANGE: "ILLEGAL_BILLING_PERIOD_RANGE";
|
|
253
|
-
readonly ILLEGAL_CHARGE_DETAILS: "ILLEGAL_CHARGE_DETAILS";
|
|
254
|
-
readonly ILLEGAL_CHILD_ASSOCIATE_RESOURCE: "ILLEGAL_CHILD_ASSOCIATE_RESOURCE";
|
|
255
|
-
readonly ILLEGAL_COMPUTATION_RULE: "ILLEGAL_COMPUTATION_RULE";
|
|
256
|
-
readonly ILLEGAL_CUSTOMLINEITEM: "ILLEGAL_CUSTOMLINEITEM";
|
|
257
|
-
readonly ILLEGAL_CUSTOMLINEITEM_MODIFICATION: "ILLEGAL_CUSTOMLINEITEM_MODIFICATION";
|
|
258
|
-
readonly ILLEGAL_CUSTOMLINEITEM_UPDATE: "ILLEGAL_CUSTOMLINEITEM_UPDATE";
|
|
259
|
-
readonly ILLEGAL_ENDED_BILLINGGROUP: "ILLEGAL_ENDED_BILLINGGROUP";
|
|
260
|
-
readonly ILLEGAL_EXPRESSION: "ILLEGAL_EXPRESSION";
|
|
261
|
-
readonly ILLEGAL_LINE_ITEM_FILTER: "ILLEGAL_LINE_ITEM_FILTER";
|
|
262
|
-
readonly ILLEGAL_MODIFIER_PERCENTAGE: "ILLEGAL_MODIFIER_PERCENTAGE";
|
|
263
|
-
readonly ILLEGAL_OPERATION: "ILLEGAL_OPERATION";
|
|
264
|
-
readonly ILLEGAL_PRIMARY_ACCOUNT: "ILLEGAL_PRIMARY_ACCOUNT";
|
|
265
|
-
readonly ILLEGAL_RESOURCE_ARNS: "ILLEGAL_RESOURCE_ARNS";
|
|
266
|
-
readonly ILLEGAL_SCOPE: "ILLEGAL_SCOPE";
|
|
267
|
-
readonly ILLEGAL_SERVICE: "ILLEGAL_SERVICE";
|
|
268
|
-
readonly ILLEGAL_TIERING_INPUT: "ILLEGAL_TIERING_INPUT";
|
|
269
|
-
readonly ILLEGAL_TYPE: "ILLEGAL_TYPE";
|
|
270
|
-
readonly ILLEGAL_UPDATE_CHARGE_DETAILS: "ILLEGAL_UPDATE_CHARGE_DETAILS";
|
|
271
|
-
readonly ILLEGAL_USAGE_TYPE: "ILLEGAL_USAGE_TYPE";
|
|
272
|
-
readonly INVALID_ARN: "INVALID_ARN";
|
|
273
|
-
readonly INVALID_BILLINGVIEW_ARN: "INVALID_BILLINGVIEW_ARN";
|
|
274
|
-
readonly INVALID_BILLING_GROUP: "INVALID_BILLING_GROUP";
|
|
275
|
-
readonly INVALID_BILLING_GROUP_STATUS: "INVALID_BILLING_GROUP_STATUS";
|
|
276
|
-
readonly INVALID_BILLING_PERIOD_FOR_OPERATION: "INVALID_BILLING_PERIOD_FOR_OPERATION";
|
|
277
|
-
readonly INVALID_FILTER: "INVALID_FILTER";
|
|
278
|
-
readonly INVALID_SKU_COMBO: "INVALID_SKU_COMBO";
|
|
279
|
-
readonly INVALID_TIME_RANGE: "INVALID_TIME_RANGE";
|
|
280
|
-
readonly MISMATCHED_BILLINGGROUP_ARN: "MISMATCHED_BILLINGGROUP_ARN";
|
|
281
|
-
readonly MISMATCHED_BILLINGVIEW_ARN: "MISMATCHED_BILLINGVIEW_ARN";
|
|
282
|
-
readonly MISMATCHED_CUSTOMLINEITEM_ARN: "MISMATCHED_CUSTOMLINEITEM_ARN";
|
|
283
|
-
readonly MISMATCHED_PRICINGPLAN_ARN: "MISMATCHED_PRICINGPLAN_ARN";
|
|
284
|
-
readonly MISMATCHED_PRICINGRULE_ARN: "MISMATCHED_PRICINGRULE_ARN";
|
|
285
|
-
readonly MISSING_BILLINGGROUP: "MISSING_BILLINGGROUP";
|
|
286
|
-
readonly MISSING_COSTCATEGORY: "MISSING_COSTCATEGORY";
|
|
287
|
-
readonly MISSING_CUSTOMLINEITEM: "MISSING_CUSTOMLINEITEM";
|
|
288
|
-
readonly MISSING_LINKED_ACCOUNT_IDS: "MISSING_LINKED_ACCOUNT_IDS";
|
|
289
|
-
readonly MISSING_PRICINGPLAN: "MISSING_PRICINGPLAN";
|
|
290
|
-
readonly MISSING_PRICING_PLAN_ARN: "MISSING_PRICING_PLAN_ARN";
|
|
291
|
-
readonly MULTIPLE_LINKED_ACCOUNT_IDS: "MULTIPLE_LINKED_ACCOUNT_IDS";
|
|
292
|
-
readonly MULTIPLE_PRICING_PLAN_ARN: "MULTIPLE_PRICING_PLAN_ARN";
|
|
293
|
-
readonly OTHER: "OTHER";
|
|
294
|
-
readonly PRICINGRULES_ALREADY_ASSOCIATED: "PRICINGRULES_ALREADY_ASSOCIATED";
|
|
295
|
-
readonly PRICINGRULES_NOT_ASSOCIATED: "PRICINGRULES_NOT_ASSOCIATED";
|
|
296
|
-
readonly PRICINGRULES_NOT_EXIST: "PRICINGRULES_NOT_EXIST";
|
|
297
|
-
readonly PRIMARY_CANNOT_DISASSOCIATE: "PRIMARY_CANNOT_DISASSOCIATE";
|
|
298
|
-
readonly PRIMARY_NOT_ASSOCIATED: "PRIMARY_NOT_ASSOCIATED";
|
|
299
|
-
readonly TOO_MANY_ACCOUNTS_IN_REQUEST: "TOO_MANY_ACCOUNTS_IN_REQUEST";
|
|
300
|
-
readonly TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS: "TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS";
|
|
301
|
-
readonly TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST: "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST";
|
|
302
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
303
|
-
};
|
|
304
|
-
/**
|
|
305
|
-
* @public
|
|
306
|
-
*/
|
|
307
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
308
|
-
/**
|
|
309
|
-
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
310
|
-
* @public
|
|
311
|
-
*/
|
|
312
|
-
export declare class ValidationException extends __BaseException {
|
|
313
|
-
readonly name: "ValidationException";
|
|
314
|
-
readonly $fault: "client";
|
|
315
|
-
Message: string | undefined;
|
|
316
|
-
/**
|
|
317
|
-
* <p>The reason the request's validation failed. </p>
|
|
318
|
-
* @public
|
|
319
|
-
*/
|
|
320
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
321
|
-
/**
|
|
322
|
-
* <p>The fields that caused the error, if applicable. </p>
|
|
323
|
-
* @public
|
|
324
|
-
*/
|
|
325
|
-
Fields?: ValidationExceptionField[] | undefined;
|
|
326
|
-
/**
|
|
327
|
-
* @internal
|
|
328
|
-
*/
|
|
329
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
330
|
-
}
|
|
331
90
|
/**
|
|
332
91
|
* @public
|
|
333
92
|
*/
|
|
@@ -353,21 +112,6 @@ export interface AssociatePricingRulesOutput {
|
|
|
353
112
|
*/
|
|
354
113
|
Arn?: string | undefined;
|
|
355
114
|
}
|
|
356
|
-
/**
|
|
357
|
-
* @public
|
|
358
|
-
* @enum
|
|
359
|
-
*/
|
|
360
|
-
export declare const AssociateResourceErrorReason: {
|
|
361
|
-
readonly ILLEGAL_CUSTOMLINEITEM: "ILLEGAL_CUSTOMLINEITEM";
|
|
362
|
-
readonly INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION";
|
|
363
|
-
readonly INVALID_ARN: "INVALID_ARN";
|
|
364
|
-
readonly INVALID_BILLING_PERIOD_RANGE: "INVALID_BILLING_PERIOD_RANGE";
|
|
365
|
-
readonly SERVICE_LIMIT_EXCEEDED: "SERVICE_LIMIT_EXCEEDED";
|
|
366
|
-
};
|
|
367
|
-
/**
|
|
368
|
-
* @public
|
|
369
|
-
*/
|
|
370
|
-
export type AssociateResourceErrorReason = (typeof AssociateResourceErrorReason)[keyof typeof AssociateResourceErrorReason];
|
|
371
115
|
/**
|
|
372
116
|
* <p>A representation of a resource association error.</p>
|
|
373
117
|
* @public
|
|
@@ -523,17 +267,21 @@ export interface DisassociateAccountsOutput {
|
|
|
523
267
|
Arn?: string | undefined;
|
|
524
268
|
}
|
|
525
269
|
/**
|
|
526
|
-
*
|
|
527
|
-
* @enum
|
|
528
|
-
*/
|
|
529
|
-
export declare const BillingGroupStatus: {
|
|
530
|
-
readonly ACTIVE: "ACTIVE";
|
|
531
|
-
readonly PRIMARY_ACCOUNT_MISSING: "PRIMARY_ACCOUNT_MISSING";
|
|
532
|
-
};
|
|
533
|
-
/**
|
|
270
|
+
* <p> A structure that defines string search parameters. </p>
|
|
534
271
|
* @public
|
|
535
272
|
*/
|
|
536
|
-
export
|
|
273
|
+
export interface StringSearch {
|
|
274
|
+
/**
|
|
275
|
+
* <p> The search option to be applied when performing the string search. </p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
SearchOption: SearchOption | undefined;
|
|
279
|
+
/**
|
|
280
|
+
* <p> The value to search for within the specified string field. </p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
SearchValue: string | undefined;
|
|
284
|
+
}
|
|
537
285
|
/**
|
|
538
286
|
* <p>The filter that specifies the billing groups and pricing plans to retrieve billing group information.</p>
|
|
539
287
|
* @public
|
|
@@ -559,6 +307,26 @@ export interface ListBillingGroupsFilter {
|
|
|
559
307
|
* @public
|
|
560
308
|
*/
|
|
561
309
|
AutoAssociate?: boolean | undefined;
|
|
310
|
+
/**
|
|
311
|
+
* <p> A list of primary account IDs to filter the billing groups. </p>
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
314
|
+
PrimaryAccountIds?: string[] | undefined;
|
|
315
|
+
/**
|
|
316
|
+
* <p> Filter billing groups by their type. </p>
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
BillingGroupTypes?: BillingGroupType[] | undefined;
|
|
320
|
+
/**
|
|
321
|
+
* <p> Filter billing groups by their names. </p>
|
|
322
|
+
* @public
|
|
323
|
+
*/
|
|
324
|
+
Names?: StringSearch[] | undefined;
|
|
325
|
+
/**
|
|
326
|
+
* <p> Filter billing groups by their responsibility transfer ARNs. </p>
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
ResponsibilityTransferArns?: string[] | undefined;
|
|
562
330
|
}
|
|
563
331
|
/**
|
|
564
332
|
* @public
|
|
@@ -595,6 +363,11 @@ export interface ListBillingGroupAccountGrouping {
|
|
|
595
363
|
* @public
|
|
596
364
|
*/
|
|
597
365
|
AutoAssociate?: boolean | undefined;
|
|
366
|
+
/**
|
|
367
|
+
* <p> The Amazon Resource Name (ARN) that identifies the transfer relationship for the billing group. </p>
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
370
|
+
ResponsibilityTransferArn?: string | undefined;
|
|
598
371
|
}
|
|
599
372
|
/**
|
|
600
373
|
* <p>A representation of a billing group.</p>
|
|
@@ -656,6 +429,11 @@ export interface BillingGroupListElement {
|
|
|
656
429
|
* @public
|
|
657
430
|
*/
|
|
658
431
|
AccountGrouping?: ListBillingGroupAccountGrouping | undefined;
|
|
432
|
+
/**
|
|
433
|
+
* <p> The type of billing group. </p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
BillingGroupType?: BillingGroupType | undefined;
|
|
659
437
|
}
|
|
660
438
|
/**
|
|
661
439
|
* @public
|
|
@@ -682,6 +460,11 @@ export interface UpdateBillingGroupAccountGrouping {
|
|
|
682
460
|
* @public
|
|
683
461
|
*/
|
|
684
462
|
AutoAssociate?: boolean | undefined;
|
|
463
|
+
/**
|
|
464
|
+
* <p> The Amazon Resource Name (ARN) that identifies the transfer relationship. Note: Modifications to the ResponsibilityTransferArn are not permitted for existing billing groups. </p>
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
ResponsibilityTransferArn?: string | undefined;
|
|
685
468
|
}
|
|
686
469
|
/**
|
|
687
470
|
* @public
|
|
@@ -887,40 +670,7 @@ export interface CustomLineItemFlatChargeDetails {
|
|
|
887
670
|
ChargeValue: number | undefined;
|
|
888
671
|
}
|
|
889
672
|
/**
|
|
890
|
-
*
|
|
891
|
-
* @enum
|
|
892
|
-
*/
|
|
893
|
-
export declare const LineItemFilterAttributeName: {
|
|
894
|
-
readonly LINE_ITEM_TYPE: "LINE_ITEM_TYPE";
|
|
895
|
-
};
|
|
896
|
-
/**
|
|
897
|
-
* @public
|
|
898
|
-
*/
|
|
899
|
-
export type LineItemFilterAttributeName = (typeof LineItemFilterAttributeName)[keyof typeof LineItemFilterAttributeName];
|
|
900
|
-
/**
|
|
901
|
-
* @public
|
|
902
|
-
* @enum
|
|
903
|
-
*/
|
|
904
|
-
export declare const MatchOption: {
|
|
905
|
-
readonly NOT_EQUAL: "NOT_EQUAL";
|
|
906
|
-
};
|
|
907
|
-
/**
|
|
908
|
-
* @public
|
|
909
|
-
*/
|
|
910
|
-
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
911
|
-
/**
|
|
912
|
-
* @public
|
|
913
|
-
* @enum
|
|
914
|
-
*/
|
|
915
|
-
export declare const LineItemFilterValue: {
|
|
916
|
-
readonly SAVINGS_PLAN_NEGATION: "SAVINGS_PLAN_NEGATION";
|
|
917
|
-
};
|
|
918
|
-
/**
|
|
919
|
-
* @public
|
|
920
|
-
*/
|
|
921
|
-
export type LineItemFilterValue = (typeof LineItemFilterValue)[keyof typeof LineItemFilterValue];
|
|
922
|
-
/**
|
|
923
|
-
* <p>A representation of the line item filter for your custom line item. You can use line item filters to include or exclude specific resource values from the billing group's total cost. For example, if you create a custom line item and you want to filter out a value, such as Savings Plan discounts, you can update <code>LineItemFilter</code> to exclude it.</p>
|
|
673
|
+
* <p>A representation of the line item filter for your custom line item. You can use line item filters to include or exclude specific resource values from the billing group's total cost. For example, if you create a custom line item and you want to filter out a value, such as Savings Plans discounts, you can update <code>LineItemFilter</code> to exclude it.</p>
|
|
924
674
|
* @public
|
|
925
675
|
*/
|
|
926
676
|
export interface LineItemFilter {
|
|
@@ -935,7 +685,7 @@ export interface LineItemFilter {
|
|
|
935
685
|
*/
|
|
936
686
|
MatchOption: MatchOption | undefined;
|
|
937
687
|
/**
|
|
938
|
-
* <p>The values of the line item filter. This specifies the values to filter on. Currently, you can only exclude Savings
|
|
688
|
+
* <p>The values of the line item filter. This specifies the values to filter on. Currently, you can only exclude Savings Plans discounts.</p>
|
|
939
689
|
* @public
|
|
940
690
|
*/
|
|
941
691
|
Values: LineItemFilterValue[] | undefined;
|
|
@@ -956,18 +706,6 @@ export interface CustomLineItemPercentageChargeDetails {
|
|
|
956
706
|
*/
|
|
957
707
|
AssociatedValues?: string[] | undefined;
|
|
958
708
|
}
|
|
959
|
-
/**
|
|
960
|
-
* @public
|
|
961
|
-
* @enum
|
|
962
|
-
*/
|
|
963
|
-
export declare const CustomLineItemType: {
|
|
964
|
-
readonly CREDIT: "CREDIT";
|
|
965
|
-
readonly FEE: "FEE";
|
|
966
|
-
};
|
|
967
|
-
/**
|
|
968
|
-
* @public
|
|
969
|
-
*/
|
|
970
|
-
export type CustomLineItemType = (typeof CustomLineItemType)[keyof typeof CustomLineItemType];
|
|
971
709
|
/**
|
|
972
710
|
* <p>The charge details of a custom line item. It should contain only one of <code>Flat</code> or <code>Percentage</code>.</p>
|
|
973
711
|
* @public
|
|
@@ -995,23 +733,12 @@ export interface CustomLineItemChargeDetails {
|
|
|
995
733
|
LineItemFilters?: LineItemFilter[] | undefined;
|
|
996
734
|
}
|
|
997
735
|
/**
|
|
998
|
-
*
|
|
999
|
-
* @enum
|
|
1000
|
-
*/
|
|
1001
|
-
export declare const ComputationRuleEnum: {
|
|
1002
|
-
readonly CONSOLIDATED: "CONSOLIDATED";
|
|
1003
|
-
};
|
|
1004
|
-
/**
|
|
1005
|
-
* @public
|
|
1006
|
-
*/
|
|
1007
|
-
export type ComputationRuleEnum = (typeof ComputationRuleEnum)[keyof typeof ComputationRuleEnum];
|
|
1008
|
-
/**
|
|
1009
|
-
* The presentation configuration of the custom line item
|
|
736
|
+
* <p> An object that defines how custom line item charges are presented in the bill, containing specifications for service presentation. </p>
|
|
1010
737
|
* @public
|
|
1011
738
|
*/
|
|
1012
739
|
export interface PresentationObject {
|
|
1013
740
|
/**
|
|
1014
|
-
*
|
|
741
|
+
* <p> The service under which the custom line item charges will be presented. Must be a string between 1 and 128 characters matching the pattern "<code>^[a-zA-Z0-9]+$</code>". </p>
|
|
1015
742
|
* @public
|
|
1016
743
|
*/
|
|
1017
744
|
Service: string | undefined;
|
|
@@ -1061,12 +788,12 @@ export interface CreateCustomLineItemInput {
|
|
|
1061
788
|
*/
|
|
1062
789
|
AccountId?: string | undefined;
|
|
1063
790
|
/**
|
|
1064
|
-
*
|
|
791
|
+
* <p> Specifies how the custom line item charges are computed. </p>
|
|
1065
792
|
* @public
|
|
1066
793
|
*/
|
|
1067
794
|
ComputationRule?: ComputationRuleEnum | undefined;
|
|
1068
795
|
/**
|
|
1069
|
-
*
|
|
796
|
+
* <p> Details controlling how the custom line item charges are presented in the bill. Contains specifications for which service the charges will be shown under. </p>
|
|
1070
797
|
* @public
|
|
1071
798
|
*/
|
|
1072
799
|
PresentationDetails?: PresentationObject | undefined;
|
|
@@ -1205,18 +932,6 @@ export interface ListCustomLineItemChargeDetails {
|
|
|
1205
932
|
*/
|
|
1206
933
|
LineItemFilters?: LineItemFilter[] | undefined;
|
|
1207
934
|
}
|
|
1208
|
-
/**
|
|
1209
|
-
* @public
|
|
1210
|
-
* @enum
|
|
1211
|
-
*/
|
|
1212
|
-
export declare const CurrencyCode: {
|
|
1213
|
-
readonly CNY: "CNY";
|
|
1214
|
-
readonly USD: "USD";
|
|
1215
|
-
};
|
|
1216
|
-
/**
|
|
1217
|
-
* @public
|
|
1218
|
-
*/
|
|
1219
|
-
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
1220
935
|
/**
|
|
1221
936
|
* <p>A representation of a custom line item.</p>
|
|
1222
937
|
* @public
|
|
@@ -1278,12 +993,12 @@ export interface CustomLineItemListElement {
|
|
|
1278
993
|
*/
|
|
1279
994
|
AccountId?: string | undefined;
|
|
1280
995
|
/**
|
|
1281
|
-
* The
|
|
996
|
+
* <p> The computation rule that determines how the custom line item charges are computed and reflected in the bill. </p>
|
|
1282
997
|
* @public
|
|
1283
998
|
*/
|
|
1284
999
|
ComputationRule?: ComputationRuleEnum | undefined;
|
|
1285
1000
|
/**
|
|
1286
|
-
*
|
|
1001
|
+
* <p> Configuration details specifying how the custom line item charges are presented, including which service the charges are shown under. </p>
|
|
1287
1002
|
* @public
|
|
1288
1003
|
*/
|
|
1289
1004
|
PresentationDetails?: PresentationObject | undefined;
|
|
@@ -1431,12 +1146,12 @@ export interface CustomLineItemVersionListElement {
|
|
|
1431
1146
|
*/
|
|
1432
1147
|
AccountId?: string | undefined;
|
|
1433
1148
|
/**
|
|
1434
|
-
* The
|
|
1149
|
+
* <p> The computation rule for a specific version of a custom line item, determining how charges are computed and reflected in the bill. </p>
|
|
1435
1150
|
* @public
|
|
1436
1151
|
*/
|
|
1437
1152
|
ComputationRule?: ComputationRuleEnum | undefined;
|
|
1438
1153
|
/**
|
|
1439
|
-
*
|
|
1154
|
+
* <p> Presentation configuration for a specific version of a custom line item, specifying how charges are displayed in the bill. </p>
|
|
1440
1155
|
* @public
|
|
1441
1156
|
*/
|
|
1442
1157
|
PresentationDetails?: PresentationObject | undefined;
|
|
@@ -1456,18 +1171,6 @@ export interface ListCustomLineItemVersionsOutput {
|
|
|
1456
1171
|
*/
|
|
1457
1172
|
NextToken?: string | undefined;
|
|
1458
1173
|
}
|
|
1459
|
-
/**
|
|
1460
|
-
* @public
|
|
1461
|
-
* @enum
|
|
1462
|
-
*/
|
|
1463
|
-
export declare const CustomLineItemRelationship: {
|
|
1464
|
-
readonly CHILD: "CHILD";
|
|
1465
|
-
readonly PARENT: "PARENT";
|
|
1466
|
-
};
|
|
1467
|
-
/**
|
|
1468
|
-
* @public
|
|
1469
|
-
*/
|
|
1470
|
-
export type CustomLineItemRelationship = (typeof CustomLineItemRelationship)[keyof typeof CustomLineItemRelationship];
|
|
1471
1174
|
/**
|
|
1472
1175
|
* <p> A filter that specifies the type of resource associations that should be retrieved for a custom line item. </p>
|
|
1473
1176
|
* @public
|
|
@@ -1679,18 +1382,6 @@ export interface BillingPeriodRange {
|
|
|
1679
1382
|
*/
|
|
1680
1383
|
ExclusiveEndBillingPeriod: string | undefined;
|
|
1681
1384
|
}
|
|
1682
|
-
/**
|
|
1683
|
-
* @public
|
|
1684
|
-
* @enum
|
|
1685
|
-
*/
|
|
1686
|
-
export declare const GroupByAttributeName: {
|
|
1687
|
-
readonly BILLING_PERIOD: "BILLING_PERIOD";
|
|
1688
|
-
readonly PRODUCT_NAME: "PRODUCT_NAME";
|
|
1689
|
-
};
|
|
1690
|
-
/**
|
|
1691
|
-
* @public
|
|
1692
|
-
*/
|
|
1693
|
-
export type GroupByAttributeName = (typeof GroupByAttributeName)[keyof typeof GroupByAttributeName];
|
|
1694
1385
|
/**
|
|
1695
1386
|
* @public
|
|
1696
1387
|
*/
|
|
@@ -2217,20 +1908,6 @@ export interface UpdatePricingPlanOutput {
|
|
|
2217
1908
|
*/
|
|
2218
1909
|
LastModifiedTime?: number | undefined;
|
|
2219
1910
|
}
|
|
2220
|
-
/**
|
|
2221
|
-
* @public
|
|
2222
|
-
* @enum
|
|
2223
|
-
*/
|
|
2224
|
-
export declare const PricingRuleScope: {
|
|
2225
|
-
readonly BILLING_ENTITY: "BILLING_ENTITY";
|
|
2226
|
-
readonly GLOBAL: "GLOBAL";
|
|
2227
|
-
readonly SERVICE: "SERVICE";
|
|
2228
|
-
readonly SKU: "SKU";
|
|
2229
|
-
};
|
|
2230
|
-
/**
|
|
2231
|
-
* @public
|
|
2232
|
-
*/
|
|
2233
|
-
export type PricingRuleScope = (typeof PricingRuleScope)[keyof typeof PricingRuleScope];
|
|
2234
1911
|
/**
|
|
2235
1912
|
* <p> The possible Amazon Web Services Free Tier configurations. </p>
|
|
2236
1913
|
* @public
|
|
@@ -2253,19 +1930,6 @@ export interface CreateTieringInput {
|
|
|
2253
1930
|
*/
|
|
2254
1931
|
FreeTier: CreateFreeTierConfig | undefined;
|
|
2255
1932
|
}
|
|
2256
|
-
/**
|
|
2257
|
-
* @public
|
|
2258
|
-
* @enum
|
|
2259
|
-
*/
|
|
2260
|
-
export declare const PricingRuleType: {
|
|
2261
|
-
readonly DISCOUNT: "DISCOUNT";
|
|
2262
|
-
readonly MARKUP: "MARKUP";
|
|
2263
|
-
readonly TIERING: "TIERING";
|
|
2264
|
-
};
|
|
2265
|
-
/**
|
|
2266
|
-
* @public
|
|
2267
|
-
*/
|
|
2268
|
-
export type PricingRuleType = (typeof PricingRuleType)[keyof typeof PricingRuleType];
|
|
2269
1933
|
/**
|
|
2270
1934
|
* @public
|
|
2271
1935
|
*/
|
|
@@ -104,6 +104,7 @@ export declare var PricingPlanListElement: StaticStructureSchema;
|
|
|
104
104
|
export declare var PricingRuleListElement: StaticStructureSchema;
|
|
105
105
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
106
106
|
export declare var ServiceLimitExceededException: StaticErrorSchema;
|
|
107
|
+
export declare var StringSearch: StaticStructureSchema;
|
|
107
108
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
108
109
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
109
110
|
export declare var ThrottlingException: StaticErrorSchema;
|
|
@@ -138,6 +139,7 @@ export declare var BillingGroupCostReportList: StaticListSchema;
|
|
|
138
139
|
export declare var BillingGroupCostReportResultsList: StaticListSchema;
|
|
139
140
|
export declare var BillingGroupList: StaticListSchema;
|
|
140
141
|
export declare var BillingGroupStatusList: number;
|
|
142
|
+
export declare var BillingGroupTypeList: number;
|
|
141
143
|
export declare var CustomLineItemArns: number;
|
|
142
144
|
export declare var CustomLineItemAssociationsList: number;
|
|
143
145
|
export declare var CustomLineItemBatchAssociationsList: number;
|
|
@@ -156,6 +158,9 @@ export declare var PricingRuleArns: number;
|
|
|
156
158
|
export declare var PricingRuleArnsInput: number;
|
|
157
159
|
export declare var PricingRuleArnsNonEmptyInput: number;
|
|
158
160
|
export declare var PricingRuleList: StaticListSchema;
|
|
161
|
+
export declare var PrimaryAccountIdList: number;
|
|
162
|
+
export declare var ResponsibilityTransferArnsList: number;
|
|
163
|
+
export declare var StringSearches: StaticListSchema;
|
|
159
164
|
export declare var TagKeyList: number;
|
|
160
165
|
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
161
166
|
export declare var TagMap: number;
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { BillingconductorExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { BillingconductorServiceException } from "./models/BillingconductorServiceException";
|