@aws-sdk/client-billingconductor 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Billingconductor.d.ts +0 -30
- package/dist-types/ts3.4/BillingconductorClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AssociatePricingRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateBillingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePricingPlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePricingRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePricingPlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePricingRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociatePricingRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListBillingGroupCostReportsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListBillingGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCustomLineItemsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPricingPlansCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPricingRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateBillingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateCustomLineItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdatePricingRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/BillingconductorServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -321
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,109 +1,79 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
Message: string | undefined;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export interface AccountAssociationsListElement {
|
|
15
12
|
AccountId?: string;
|
|
16
|
-
|
|
17
13
|
BillingGroupArn?: string;
|
|
18
|
-
|
|
19
14
|
AccountName?: string;
|
|
20
|
-
|
|
21
15
|
AccountEmail?: string;
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export interface AccountGrouping {
|
|
25
18
|
LinkedAccountIds: string[] | undefined;
|
|
26
19
|
}
|
|
27
20
|
export interface AssociateAccountsInput {
|
|
28
21
|
Arn: string | undefined;
|
|
29
|
-
|
|
30
22
|
AccountIds: string[] | undefined;
|
|
31
23
|
}
|
|
32
24
|
export interface AssociateAccountsOutput {
|
|
33
25
|
Arn?: string;
|
|
34
26
|
}
|
|
35
|
-
|
|
36
27
|
export declare class ConflictException extends __BaseException {
|
|
37
28
|
readonly name: "ConflictException";
|
|
38
29
|
readonly $fault: "client";
|
|
39
30
|
Message: string | undefined;
|
|
40
|
-
|
|
41
31
|
ResourceId: string | undefined;
|
|
42
|
-
|
|
43
32
|
ResourceType: string | undefined;
|
|
44
|
-
|
|
45
33
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
46
34
|
}
|
|
47
|
-
|
|
48
35
|
export declare class InternalServerException extends __BaseException {
|
|
49
36
|
readonly name: "InternalServerException";
|
|
50
37
|
readonly $fault: "server";
|
|
51
38
|
Message: string | undefined;
|
|
52
|
-
|
|
53
39
|
RetryAfterSeconds?: number;
|
|
54
|
-
|
|
55
40
|
constructor(
|
|
56
41
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
57
42
|
);
|
|
58
43
|
}
|
|
59
|
-
|
|
60
44
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
45
|
readonly name: "ResourceNotFoundException";
|
|
62
46
|
readonly $fault: "client";
|
|
63
47
|
Message: string | undefined;
|
|
64
|
-
|
|
65
48
|
ResourceId: string | undefined;
|
|
66
|
-
|
|
67
49
|
ResourceType: string | undefined;
|
|
68
|
-
|
|
69
50
|
constructor(
|
|
70
51
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
71
52
|
);
|
|
72
53
|
}
|
|
73
|
-
|
|
74
54
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
75
55
|
readonly name: "ServiceLimitExceededException";
|
|
76
56
|
readonly $fault: "client";
|
|
77
57
|
Message: string | undefined;
|
|
78
|
-
|
|
79
58
|
ResourceId?: string;
|
|
80
|
-
|
|
81
59
|
ResourceType?: string;
|
|
82
|
-
|
|
83
60
|
LimitCode: string | undefined;
|
|
84
|
-
|
|
85
61
|
ServiceCode: string | undefined;
|
|
86
|
-
|
|
87
62
|
constructor(
|
|
88
63
|
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
89
64
|
);
|
|
90
65
|
}
|
|
91
|
-
|
|
92
66
|
export declare class ThrottlingException extends __BaseException {
|
|
93
67
|
readonly name: "ThrottlingException";
|
|
94
68
|
readonly $fault: "client";
|
|
95
69
|
Message: string | undefined;
|
|
96
|
-
|
|
97
70
|
RetryAfterSeconds?: number;
|
|
98
|
-
|
|
99
71
|
constructor(
|
|
100
72
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
101
73
|
);
|
|
102
74
|
}
|
|
103
|
-
|
|
104
75
|
export interface ValidationExceptionField {
|
|
105
76
|
Name: string | undefined;
|
|
106
|
-
|
|
107
77
|
Message: string | undefined;
|
|
108
78
|
}
|
|
109
79
|
export declare enum ValidationExceptionReason {
|
|
@@ -152,23 +122,18 @@ export declare enum ValidationExceptionReason {
|
|
|
152
122
|
TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST = "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST",
|
|
153
123
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
|
|
154
124
|
}
|
|
155
|
-
|
|
156
125
|
export declare class ValidationException extends __BaseException {
|
|
157
126
|
readonly name: "ValidationException";
|
|
158
127
|
readonly $fault: "client";
|
|
159
128
|
Message: string | undefined;
|
|
160
|
-
|
|
161
129
|
Reason?: ValidationExceptionReason | string;
|
|
162
|
-
|
|
163
130
|
Fields?: ValidationExceptionField[];
|
|
164
|
-
|
|
165
131
|
constructor(
|
|
166
132
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
167
133
|
);
|
|
168
134
|
}
|
|
169
135
|
export interface AssociatePricingRulesInput {
|
|
170
136
|
Arn: string | undefined;
|
|
171
|
-
|
|
172
137
|
PricingRuleArns: string[] | undefined;
|
|
173
138
|
}
|
|
174
139
|
export interface AssociatePricingRulesOutput {
|
|
@@ -180,35 +145,24 @@ export declare enum AssociateResourceErrorReason {
|
|
|
180
145
|
INVALID_ARN = "INVALID_ARN",
|
|
181
146
|
SERVICE_LIMIT_EXCEEDED = "SERVICE_LIMIT_EXCEEDED",
|
|
182
147
|
}
|
|
183
|
-
|
|
184
148
|
export interface AssociateResourceError {
|
|
185
149
|
Message?: string;
|
|
186
|
-
|
|
187
150
|
Reason?: AssociateResourceErrorReason | string;
|
|
188
151
|
}
|
|
189
|
-
|
|
190
152
|
export interface AssociateResourceResponseElement {
|
|
191
153
|
Arn?: string;
|
|
192
|
-
|
|
193
154
|
Error?: AssociateResourceError;
|
|
194
155
|
}
|
|
195
|
-
|
|
196
156
|
export interface ComputationPreference {
|
|
197
157
|
PricingPlanArn: string | undefined;
|
|
198
158
|
}
|
|
199
159
|
export interface CreateBillingGroupInput {
|
|
200
160
|
ClientToken?: string;
|
|
201
|
-
|
|
202
161
|
Name: string | undefined;
|
|
203
|
-
|
|
204
162
|
AccountGrouping: AccountGrouping | undefined;
|
|
205
|
-
|
|
206
163
|
ComputationPreference: ComputationPreference | undefined;
|
|
207
|
-
|
|
208
164
|
PrimaryAccountId?: string;
|
|
209
|
-
|
|
210
165
|
Description?: string;
|
|
211
|
-
|
|
212
166
|
Tags?: Record<string, string>;
|
|
213
167
|
}
|
|
214
168
|
export interface CreateBillingGroupOutput {
|
|
@@ -222,159 +176,108 @@ export interface DeleteBillingGroupOutput {
|
|
|
222
176
|
}
|
|
223
177
|
export interface DisassociateAccountsInput {
|
|
224
178
|
Arn: string | undefined;
|
|
225
|
-
|
|
226
179
|
AccountIds: string[] | undefined;
|
|
227
180
|
}
|
|
228
181
|
export interface DisassociateAccountsOutput {
|
|
229
182
|
Arn?: string;
|
|
230
183
|
}
|
|
231
|
-
|
|
232
184
|
export interface ListBillingGroupsFilter {
|
|
233
185
|
Arns?: string[];
|
|
234
|
-
|
|
235
186
|
PricingPlan?: string;
|
|
236
187
|
}
|
|
237
188
|
export interface ListBillingGroupsInput {
|
|
238
189
|
BillingPeriod?: string;
|
|
239
|
-
|
|
240
190
|
MaxResults?: number;
|
|
241
|
-
|
|
242
191
|
NextToken?: string;
|
|
243
|
-
|
|
244
192
|
Filters?: ListBillingGroupsFilter;
|
|
245
193
|
}
|
|
246
194
|
export declare enum BillingGroupStatus {
|
|
247
195
|
ACTIVE = "ACTIVE",
|
|
248
196
|
PRIMARY_ACCOUNT_MISSING = "PRIMARY_ACCOUNT_MISSING",
|
|
249
197
|
}
|
|
250
|
-
|
|
251
198
|
export interface BillingGroupListElement {
|
|
252
199
|
Name?: string;
|
|
253
|
-
|
|
254
200
|
Arn?: string;
|
|
255
|
-
|
|
256
201
|
Description?: string;
|
|
257
|
-
|
|
258
202
|
PrimaryAccountId?: string;
|
|
259
|
-
|
|
260
203
|
ComputationPreference?: ComputationPreference;
|
|
261
|
-
|
|
262
204
|
Size?: number;
|
|
263
|
-
|
|
264
205
|
CreationTime?: number;
|
|
265
|
-
|
|
266
206
|
LastModifiedTime?: number;
|
|
267
|
-
|
|
268
207
|
Status?: BillingGroupStatus | string;
|
|
269
|
-
|
|
270
208
|
StatusReason?: string;
|
|
271
209
|
}
|
|
272
210
|
export interface ListBillingGroupsOutput {
|
|
273
211
|
BillingGroups?: BillingGroupListElement[];
|
|
274
|
-
|
|
275
212
|
NextToken?: string;
|
|
276
213
|
}
|
|
277
214
|
export interface UpdateBillingGroupInput {
|
|
278
215
|
Arn: string | undefined;
|
|
279
|
-
|
|
280
216
|
Name?: string;
|
|
281
|
-
|
|
282
217
|
Status?: BillingGroupStatus | string;
|
|
283
|
-
|
|
284
218
|
ComputationPreference?: ComputationPreference;
|
|
285
|
-
|
|
286
219
|
Description?: string;
|
|
287
220
|
}
|
|
288
221
|
export interface UpdateBillingGroupOutput {
|
|
289
222
|
Arn?: string;
|
|
290
|
-
|
|
291
223
|
Name?: string;
|
|
292
|
-
|
|
293
224
|
Description?: string;
|
|
294
|
-
|
|
295
225
|
PrimaryAccountId?: string;
|
|
296
|
-
|
|
297
226
|
PricingPlanArn?: string;
|
|
298
|
-
|
|
299
227
|
Size?: number;
|
|
300
|
-
|
|
301
228
|
LastModifiedTime?: number;
|
|
302
|
-
|
|
303
229
|
Status?: BillingGroupStatus | string;
|
|
304
|
-
|
|
305
230
|
StatusReason?: string;
|
|
306
231
|
}
|
|
307
|
-
|
|
308
232
|
export interface CustomLineItemBillingPeriodRange {
|
|
309
233
|
InclusiveStartBillingPeriod: string | undefined;
|
|
310
|
-
|
|
311
234
|
ExclusiveEndBillingPeriod: string | undefined;
|
|
312
235
|
}
|
|
313
236
|
export interface BatchAssociateResourcesToCustomLineItemInput {
|
|
314
237
|
TargetArn: string | undefined;
|
|
315
|
-
|
|
316
238
|
ResourceArns: string[] | undefined;
|
|
317
|
-
|
|
318
239
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
319
240
|
}
|
|
320
241
|
export interface BatchAssociateResourcesToCustomLineItemOutput {
|
|
321
242
|
SuccessfullyAssociatedResources?: AssociateResourceResponseElement[];
|
|
322
|
-
|
|
323
243
|
FailedAssociatedResources?: AssociateResourceResponseElement[];
|
|
324
244
|
}
|
|
325
245
|
export interface BatchDisassociateResourcesFromCustomLineItemInput {
|
|
326
246
|
TargetArn: string | undefined;
|
|
327
|
-
|
|
328
247
|
ResourceArns: string[] | undefined;
|
|
329
|
-
|
|
330
248
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
331
249
|
}
|
|
332
|
-
|
|
333
250
|
export interface DisassociateResourceResponseElement {
|
|
334
251
|
Arn?: string;
|
|
335
|
-
|
|
336
252
|
Error?: AssociateResourceError;
|
|
337
253
|
}
|
|
338
254
|
export interface BatchDisassociateResourcesFromCustomLineItemOutput {
|
|
339
255
|
SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[];
|
|
340
|
-
|
|
341
256
|
FailedDisassociatedResources?: DisassociateResourceResponseElement[];
|
|
342
257
|
}
|
|
343
|
-
|
|
344
258
|
export interface CustomLineItemFlatChargeDetails {
|
|
345
259
|
ChargeValue: number | undefined;
|
|
346
260
|
}
|
|
347
|
-
|
|
348
261
|
export interface CustomLineItemPercentageChargeDetails {
|
|
349
262
|
PercentageValue: number | undefined;
|
|
350
|
-
|
|
351
263
|
AssociatedValues?: string[];
|
|
352
264
|
}
|
|
353
265
|
export declare enum CustomLineItemType {
|
|
354
266
|
CREDIT = "CREDIT",
|
|
355
267
|
FEE = "FEE",
|
|
356
268
|
}
|
|
357
|
-
|
|
358
269
|
export interface CustomLineItemChargeDetails {
|
|
359
270
|
Flat?: CustomLineItemFlatChargeDetails;
|
|
360
|
-
|
|
361
271
|
Percentage?: CustomLineItemPercentageChargeDetails;
|
|
362
|
-
|
|
363
272
|
Type: CustomLineItemType | string | undefined;
|
|
364
273
|
}
|
|
365
274
|
export interface CreateCustomLineItemInput {
|
|
366
275
|
ClientToken?: string;
|
|
367
|
-
|
|
368
276
|
Name: string | undefined;
|
|
369
|
-
|
|
370
277
|
Description: string | undefined;
|
|
371
|
-
|
|
372
278
|
BillingGroupArn: string | undefined;
|
|
373
|
-
|
|
374
279
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
375
|
-
|
|
376
280
|
Tags?: Record<string, string>;
|
|
377
|
-
|
|
378
281
|
ChargeDetails: CustomLineItemChargeDetails | undefined;
|
|
379
282
|
}
|
|
380
283
|
export interface CreateCustomLineItemOutput {
|
|
@@ -382,196 +285,134 @@ export interface CreateCustomLineItemOutput {
|
|
|
382
285
|
}
|
|
383
286
|
export interface DeleteCustomLineItemInput {
|
|
384
287
|
Arn: string | undefined;
|
|
385
|
-
|
|
386
288
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
387
289
|
}
|
|
388
290
|
export interface DeleteCustomLineItemOutput {
|
|
389
291
|
Arn?: string;
|
|
390
292
|
}
|
|
391
|
-
|
|
392
293
|
export interface ListCustomLineItemsFilter {
|
|
393
294
|
Names?: string[];
|
|
394
|
-
|
|
395
295
|
BillingGroups?: string[];
|
|
396
|
-
|
|
397
296
|
Arns?: string[];
|
|
398
297
|
}
|
|
399
298
|
export interface ListCustomLineItemsInput {
|
|
400
299
|
BillingPeriod?: string;
|
|
401
|
-
|
|
402
300
|
MaxResults?: number;
|
|
403
|
-
|
|
404
301
|
NextToken?: string;
|
|
405
|
-
|
|
406
302
|
Filters?: ListCustomLineItemsFilter;
|
|
407
303
|
}
|
|
408
|
-
|
|
409
304
|
export interface ListCustomLineItemFlatChargeDetails {
|
|
410
305
|
ChargeValue: number | undefined;
|
|
411
306
|
}
|
|
412
|
-
|
|
413
307
|
export interface ListCustomLineItemPercentageChargeDetails {
|
|
414
308
|
PercentageValue: number | undefined;
|
|
415
309
|
}
|
|
416
|
-
|
|
417
310
|
export interface ListCustomLineItemChargeDetails {
|
|
418
311
|
Flat?: ListCustomLineItemFlatChargeDetails;
|
|
419
|
-
|
|
420
312
|
Percentage?: ListCustomLineItemPercentageChargeDetails;
|
|
421
|
-
|
|
422
313
|
Type: CustomLineItemType | string | undefined;
|
|
423
314
|
}
|
|
424
315
|
export declare enum CurrencyCode {
|
|
425
316
|
CNY = "CNY",
|
|
426
317
|
USD = "USD",
|
|
427
318
|
}
|
|
428
|
-
|
|
429
319
|
export interface CustomLineItemListElement {
|
|
430
320
|
Arn?: string;
|
|
431
|
-
|
|
432
321
|
Name?: string;
|
|
433
|
-
|
|
434
322
|
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
435
|
-
|
|
436
323
|
CurrencyCode?: CurrencyCode | string;
|
|
437
|
-
|
|
438
324
|
Description?: string;
|
|
439
|
-
|
|
440
325
|
ProductCode?: string;
|
|
441
|
-
|
|
442
326
|
BillingGroupArn?: string;
|
|
443
|
-
|
|
444
327
|
CreationTime?: number;
|
|
445
|
-
|
|
446
328
|
LastModifiedTime?: number;
|
|
447
|
-
|
|
448
329
|
AssociationSize?: number;
|
|
449
330
|
}
|
|
450
331
|
export interface ListCustomLineItemsOutput {
|
|
451
332
|
CustomLineItems?: CustomLineItemListElement[];
|
|
452
|
-
|
|
453
333
|
NextToken?: string;
|
|
454
334
|
}
|
|
455
335
|
export declare enum CustomLineItemRelationship {
|
|
456
336
|
CHILD = "CHILD",
|
|
457
337
|
PARENT = "PARENT",
|
|
458
338
|
}
|
|
459
|
-
|
|
460
339
|
export interface ListResourcesAssociatedToCustomLineItemFilter {
|
|
461
340
|
Relationship?: CustomLineItemRelationship | string;
|
|
462
341
|
}
|
|
463
342
|
export interface ListResourcesAssociatedToCustomLineItemInput {
|
|
464
343
|
BillingPeriod?: string;
|
|
465
|
-
|
|
466
344
|
Arn: string | undefined;
|
|
467
|
-
|
|
468
345
|
MaxResults?: number;
|
|
469
|
-
|
|
470
346
|
NextToken?: string;
|
|
471
|
-
|
|
472
347
|
Filters?: ListResourcesAssociatedToCustomLineItemFilter;
|
|
473
348
|
}
|
|
474
|
-
|
|
475
349
|
export interface ListResourcesAssociatedToCustomLineItemResponseElement {
|
|
476
350
|
Arn?: string;
|
|
477
|
-
|
|
478
351
|
Relationship?: CustomLineItemRelationship | string;
|
|
479
352
|
}
|
|
480
353
|
export interface ListResourcesAssociatedToCustomLineItemOutput {
|
|
481
354
|
Arn?: string;
|
|
482
|
-
|
|
483
355
|
AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[];
|
|
484
|
-
|
|
485
356
|
NextToken?: string;
|
|
486
357
|
}
|
|
487
|
-
|
|
488
358
|
export interface UpdateCustomLineItemFlatChargeDetails {
|
|
489
359
|
ChargeValue: number | undefined;
|
|
490
360
|
}
|
|
491
|
-
|
|
492
361
|
export interface UpdateCustomLineItemPercentageChargeDetails {
|
|
493
362
|
PercentageValue: number | undefined;
|
|
494
363
|
}
|
|
495
|
-
|
|
496
364
|
export interface UpdateCustomLineItemChargeDetails {
|
|
497
365
|
Flat?: UpdateCustomLineItemFlatChargeDetails;
|
|
498
|
-
|
|
499
366
|
Percentage?: UpdateCustomLineItemPercentageChargeDetails;
|
|
500
367
|
}
|
|
501
368
|
export interface UpdateCustomLineItemInput {
|
|
502
369
|
Arn: string | undefined;
|
|
503
|
-
|
|
504
370
|
Name?: string;
|
|
505
|
-
|
|
506
371
|
Description?: string;
|
|
507
|
-
|
|
508
372
|
ChargeDetails?: UpdateCustomLineItemChargeDetails;
|
|
509
|
-
|
|
510
373
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
511
374
|
}
|
|
512
375
|
export interface UpdateCustomLineItemOutput {
|
|
513
376
|
Arn?: string;
|
|
514
|
-
|
|
515
377
|
BillingGroupArn?: string;
|
|
516
|
-
|
|
517
378
|
Name?: string;
|
|
518
|
-
|
|
519
379
|
Description?: string;
|
|
520
|
-
|
|
521
380
|
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
522
|
-
|
|
523
381
|
LastModifiedTime?: number;
|
|
524
|
-
|
|
525
382
|
AssociationSize?: number;
|
|
526
383
|
}
|
|
527
|
-
|
|
528
384
|
export interface ListAccountAssociationsFilter {
|
|
529
385
|
Association?: string;
|
|
530
|
-
|
|
531
386
|
AccountId?: string;
|
|
532
387
|
}
|
|
533
388
|
export interface ListAccountAssociationsInput {
|
|
534
389
|
BillingPeriod?: string;
|
|
535
|
-
|
|
536
390
|
Filters?: ListAccountAssociationsFilter;
|
|
537
|
-
|
|
538
391
|
NextToken?: string;
|
|
539
392
|
}
|
|
540
393
|
export interface ListAccountAssociationsOutput {
|
|
541
394
|
LinkedAccounts?: AccountAssociationsListElement[];
|
|
542
|
-
|
|
543
395
|
NextToken?: string;
|
|
544
396
|
}
|
|
545
|
-
|
|
546
397
|
export interface ListBillingGroupCostReportsFilter {
|
|
547
398
|
BillingGroupArns?: string[];
|
|
548
399
|
}
|
|
549
400
|
export interface ListBillingGroupCostReportsInput {
|
|
550
401
|
BillingPeriod?: string;
|
|
551
|
-
|
|
552
402
|
MaxResults?: number;
|
|
553
|
-
|
|
554
403
|
NextToken?: string;
|
|
555
|
-
|
|
556
404
|
Filters?: ListBillingGroupCostReportsFilter;
|
|
557
405
|
}
|
|
558
|
-
|
|
559
406
|
export interface BillingGroupCostReportElement {
|
|
560
407
|
Arn?: string;
|
|
561
|
-
|
|
562
408
|
AWSCost?: string;
|
|
563
|
-
|
|
564
409
|
ProformaCost?: string;
|
|
565
|
-
|
|
566
410
|
Margin?: string;
|
|
567
|
-
|
|
568
411
|
MarginPercentage?: string;
|
|
569
|
-
|
|
570
412
|
Currency?: string;
|
|
571
413
|
}
|
|
572
414
|
export interface ListBillingGroupCostReportsOutput {
|
|
573
415
|
BillingGroupCostReports?: BillingGroupCostReportElement[];
|
|
574
|
-
|
|
575
416
|
NextToken?: string;
|
|
576
417
|
}
|
|
577
418
|
export interface ListTagsForResourceRequest {
|
|
@@ -582,13 +423,9 @@ export interface ListTagsForResourceResponse {
|
|
|
582
423
|
}
|
|
583
424
|
export interface CreatePricingPlanInput {
|
|
584
425
|
ClientToken?: string;
|
|
585
|
-
|
|
586
426
|
Name: string | undefined;
|
|
587
|
-
|
|
588
427
|
Description?: string;
|
|
589
|
-
|
|
590
428
|
PricingRuleArns?: string[];
|
|
591
|
-
|
|
592
429
|
Tags?: Record<string, string>;
|
|
593
430
|
}
|
|
594
431
|
export interface CreatePricingPlanOutput {
|
|
@@ -602,80 +439,55 @@ export interface DeletePricingPlanOutput {
|
|
|
602
439
|
}
|
|
603
440
|
export interface DisassociatePricingRulesInput {
|
|
604
441
|
Arn: string | undefined;
|
|
605
|
-
|
|
606
442
|
PricingRuleArns: string[] | undefined;
|
|
607
443
|
}
|
|
608
444
|
export interface DisassociatePricingRulesOutput {
|
|
609
445
|
Arn?: string;
|
|
610
446
|
}
|
|
611
|
-
|
|
612
447
|
export interface ListPricingPlansFilter {
|
|
613
448
|
Arns?: string[];
|
|
614
449
|
}
|
|
615
450
|
export interface ListPricingPlansInput {
|
|
616
451
|
BillingPeriod?: string;
|
|
617
|
-
|
|
618
452
|
Filters?: ListPricingPlansFilter;
|
|
619
|
-
|
|
620
453
|
MaxResults?: number;
|
|
621
|
-
|
|
622
454
|
NextToken?: string;
|
|
623
455
|
}
|
|
624
|
-
|
|
625
456
|
export interface PricingPlanListElement {
|
|
626
457
|
Name?: string;
|
|
627
|
-
|
|
628
458
|
Arn?: string;
|
|
629
|
-
|
|
630
459
|
Description?: string;
|
|
631
|
-
|
|
632
460
|
Size?: number;
|
|
633
|
-
|
|
634
461
|
CreationTime?: number;
|
|
635
|
-
|
|
636
462
|
LastModifiedTime?: number;
|
|
637
463
|
}
|
|
638
464
|
export interface ListPricingPlansOutput {
|
|
639
465
|
BillingPeriod?: string;
|
|
640
|
-
|
|
641
466
|
PricingPlans?: PricingPlanListElement[];
|
|
642
|
-
|
|
643
467
|
NextToken?: string;
|
|
644
468
|
}
|
|
645
469
|
export interface ListPricingPlansAssociatedWithPricingRuleInput {
|
|
646
470
|
BillingPeriod?: string;
|
|
647
|
-
|
|
648
471
|
PricingRuleArn: string | undefined;
|
|
649
|
-
|
|
650
472
|
MaxResults?: number;
|
|
651
|
-
|
|
652
473
|
NextToken?: string;
|
|
653
474
|
}
|
|
654
475
|
export interface ListPricingPlansAssociatedWithPricingRuleOutput {
|
|
655
476
|
BillingPeriod?: string;
|
|
656
|
-
|
|
657
477
|
PricingRuleArn?: string;
|
|
658
|
-
|
|
659
478
|
PricingPlanArns?: string[];
|
|
660
|
-
|
|
661
479
|
NextToken?: string;
|
|
662
480
|
}
|
|
663
481
|
export interface UpdatePricingPlanInput {
|
|
664
482
|
Arn: string | undefined;
|
|
665
|
-
|
|
666
483
|
Name?: string;
|
|
667
|
-
|
|
668
484
|
Description?: string;
|
|
669
485
|
}
|
|
670
486
|
export interface UpdatePricingPlanOutput {
|
|
671
487
|
Arn?: string;
|
|
672
|
-
|
|
673
488
|
Name?: string;
|
|
674
|
-
|
|
675
489
|
Description?: string;
|
|
676
|
-
|
|
677
490
|
Size?: number;
|
|
678
|
-
|
|
679
491
|
LastModifiedTime?: number;
|
|
680
492
|
}
|
|
681
493
|
export declare enum PricingRuleScope {
|
|
@@ -688,19 +500,12 @@ export declare enum PricingRuleType {
|
|
|
688
500
|
}
|
|
689
501
|
export interface CreatePricingRuleInput {
|
|
690
502
|
ClientToken?: string;
|
|
691
|
-
|
|
692
503
|
Name: string | undefined;
|
|
693
|
-
|
|
694
504
|
Description?: string;
|
|
695
|
-
|
|
696
505
|
Scope: PricingRuleScope | string | undefined;
|
|
697
|
-
|
|
698
506
|
Type: PricingRuleType | string | undefined;
|
|
699
|
-
|
|
700
507
|
ModifierPercentage: number | undefined;
|
|
701
|
-
|
|
702
508
|
Service?: string;
|
|
703
|
-
|
|
704
509
|
Tags?: Record<string, string>;
|
|
705
510
|
}
|
|
706
511
|
export interface CreatePricingRuleOutput {
|
|
@@ -712,465 +517,339 @@ export interface DeletePricingRuleInput {
|
|
|
712
517
|
export interface DeletePricingRuleOutput {
|
|
713
518
|
Arn?: string;
|
|
714
519
|
}
|
|
715
|
-
|
|
716
520
|
export interface ListPricingRulesFilter {
|
|
717
521
|
Arns?: string[];
|
|
718
522
|
}
|
|
719
523
|
export interface ListPricingRulesInput {
|
|
720
524
|
BillingPeriod?: string;
|
|
721
|
-
|
|
722
525
|
Filters?: ListPricingRulesFilter;
|
|
723
|
-
|
|
724
526
|
MaxResults?: number;
|
|
725
|
-
|
|
726
527
|
NextToken?: string;
|
|
727
528
|
}
|
|
728
|
-
|
|
729
529
|
export interface PricingRuleListElement {
|
|
730
530
|
Name?: string;
|
|
731
|
-
|
|
732
531
|
Arn?: string;
|
|
733
|
-
|
|
734
532
|
Description?: string;
|
|
735
|
-
|
|
736
533
|
Scope?: PricingRuleScope | string;
|
|
737
|
-
|
|
738
534
|
Type?: PricingRuleType | string;
|
|
739
|
-
|
|
740
535
|
ModifierPercentage?: number;
|
|
741
|
-
|
|
742
536
|
Service?: string;
|
|
743
|
-
|
|
744
537
|
AssociatedPricingPlanCount?: number;
|
|
745
|
-
|
|
746
538
|
CreationTime?: number;
|
|
747
|
-
|
|
748
539
|
LastModifiedTime?: number;
|
|
749
540
|
}
|
|
750
541
|
export interface ListPricingRulesOutput {
|
|
751
542
|
BillingPeriod?: string;
|
|
752
|
-
|
|
753
543
|
PricingRules?: PricingRuleListElement[];
|
|
754
|
-
|
|
755
544
|
NextToken?: string;
|
|
756
545
|
}
|
|
757
546
|
export interface ListPricingRulesAssociatedToPricingPlanInput {
|
|
758
547
|
BillingPeriod?: string;
|
|
759
|
-
|
|
760
548
|
PricingPlanArn: string | undefined;
|
|
761
|
-
|
|
762
549
|
MaxResults?: number;
|
|
763
|
-
|
|
764
550
|
NextToken?: string;
|
|
765
551
|
}
|
|
766
552
|
export interface ListPricingRulesAssociatedToPricingPlanOutput {
|
|
767
553
|
BillingPeriod?: string;
|
|
768
|
-
|
|
769
554
|
PricingPlanArn?: string;
|
|
770
|
-
|
|
771
555
|
PricingRuleArns?: string[];
|
|
772
|
-
|
|
773
556
|
NextToken?: string;
|
|
774
557
|
}
|
|
775
558
|
export interface UpdatePricingRuleInput {
|
|
776
559
|
Arn: string | undefined;
|
|
777
|
-
|
|
778
560
|
Name?: string;
|
|
779
|
-
|
|
780
561
|
Description?: string;
|
|
781
|
-
|
|
782
562
|
Type?: PricingRuleType | string;
|
|
783
|
-
|
|
784
563
|
ModifierPercentage?: number;
|
|
785
564
|
}
|
|
786
565
|
export interface UpdatePricingRuleOutput {
|
|
787
566
|
Arn?: string;
|
|
788
|
-
|
|
789
567
|
Name?: string;
|
|
790
|
-
|
|
791
568
|
Description?: string;
|
|
792
|
-
|
|
793
569
|
Scope?: PricingRuleScope | string;
|
|
794
|
-
|
|
795
570
|
Type?: PricingRuleType | string;
|
|
796
|
-
|
|
797
571
|
ModifierPercentage?: number;
|
|
798
|
-
|
|
799
572
|
Service?: string;
|
|
800
|
-
|
|
801
573
|
AssociatedPricingPlanCount?: number;
|
|
802
|
-
|
|
803
574
|
LastModifiedTime?: number;
|
|
804
575
|
}
|
|
805
576
|
export interface TagResourceRequest {
|
|
806
577
|
ResourceArn: string | undefined;
|
|
807
|
-
|
|
808
578
|
Tags: Record<string, string> | undefined;
|
|
809
579
|
}
|
|
810
580
|
export interface TagResourceResponse {}
|
|
811
581
|
export interface UntagResourceRequest {
|
|
812
582
|
ResourceArn: string | undefined;
|
|
813
|
-
|
|
814
583
|
TagKeys: string[] | undefined;
|
|
815
584
|
}
|
|
816
585
|
export interface UntagResourceResponse {}
|
|
817
|
-
|
|
818
586
|
export declare const AccountAssociationsListElementFilterSensitiveLog: (
|
|
819
587
|
obj: AccountAssociationsListElement
|
|
820
588
|
) => any;
|
|
821
|
-
|
|
822
589
|
export declare const AccountGroupingFilterSensitiveLog: (
|
|
823
590
|
obj: AccountGrouping
|
|
824
591
|
) => any;
|
|
825
|
-
|
|
826
592
|
export declare const AssociateAccountsInputFilterSensitiveLog: (
|
|
827
593
|
obj: AssociateAccountsInput
|
|
828
594
|
) => any;
|
|
829
|
-
|
|
830
595
|
export declare const AssociateAccountsOutputFilterSensitiveLog: (
|
|
831
596
|
obj: AssociateAccountsOutput
|
|
832
597
|
) => any;
|
|
833
|
-
|
|
834
598
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
835
599
|
obj: ValidationExceptionField
|
|
836
600
|
) => any;
|
|
837
|
-
|
|
838
601
|
export declare const AssociatePricingRulesInputFilterSensitiveLog: (
|
|
839
602
|
obj: AssociatePricingRulesInput
|
|
840
603
|
) => any;
|
|
841
|
-
|
|
842
604
|
export declare const AssociatePricingRulesOutputFilterSensitiveLog: (
|
|
843
605
|
obj: AssociatePricingRulesOutput
|
|
844
606
|
) => any;
|
|
845
|
-
|
|
846
607
|
export declare const AssociateResourceErrorFilterSensitiveLog: (
|
|
847
608
|
obj: AssociateResourceError
|
|
848
609
|
) => any;
|
|
849
|
-
|
|
850
610
|
export declare const AssociateResourceResponseElementFilterSensitiveLog: (
|
|
851
611
|
obj: AssociateResourceResponseElement
|
|
852
612
|
) => any;
|
|
853
|
-
|
|
854
613
|
export declare const ComputationPreferenceFilterSensitiveLog: (
|
|
855
614
|
obj: ComputationPreference
|
|
856
615
|
) => any;
|
|
857
|
-
|
|
858
616
|
export declare const CreateBillingGroupInputFilterSensitiveLog: (
|
|
859
617
|
obj: CreateBillingGroupInput
|
|
860
618
|
) => any;
|
|
861
|
-
|
|
862
619
|
export declare const CreateBillingGroupOutputFilterSensitiveLog: (
|
|
863
620
|
obj: CreateBillingGroupOutput
|
|
864
621
|
) => any;
|
|
865
|
-
|
|
866
622
|
export declare const DeleteBillingGroupInputFilterSensitiveLog: (
|
|
867
623
|
obj: DeleteBillingGroupInput
|
|
868
624
|
) => any;
|
|
869
|
-
|
|
870
625
|
export declare const DeleteBillingGroupOutputFilterSensitiveLog: (
|
|
871
626
|
obj: DeleteBillingGroupOutput
|
|
872
627
|
) => any;
|
|
873
|
-
|
|
874
628
|
export declare const DisassociateAccountsInputFilterSensitiveLog: (
|
|
875
629
|
obj: DisassociateAccountsInput
|
|
876
630
|
) => any;
|
|
877
|
-
|
|
878
631
|
export declare const DisassociateAccountsOutputFilterSensitiveLog: (
|
|
879
632
|
obj: DisassociateAccountsOutput
|
|
880
633
|
) => any;
|
|
881
|
-
|
|
882
634
|
export declare const ListBillingGroupsFilterFilterSensitiveLog: (
|
|
883
635
|
obj: ListBillingGroupsFilter
|
|
884
636
|
) => any;
|
|
885
|
-
|
|
886
637
|
export declare const ListBillingGroupsInputFilterSensitiveLog: (
|
|
887
638
|
obj: ListBillingGroupsInput
|
|
888
639
|
) => any;
|
|
889
|
-
|
|
890
640
|
export declare const BillingGroupListElementFilterSensitiveLog: (
|
|
891
641
|
obj: BillingGroupListElement
|
|
892
642
|
) => any;
|
|
893
|
-
|
|
894
643
|
export declare const ListBillingGroupsOutputFilterSensitiveLog: (
|
|
895
644
|
obj: ListBillingGroupsOutput
|
|
896
645
|
) => any;
|
|
897
|
-
|
|
898
646
|
export declare const UpdateBillingGroupInputFilterSensitiveLog: (
|
|
899
647
|
obj: UpdateBillingGroupInput
|
|
900
648
|
) => any;
|
|
901
|
-
|
|
902
649
|
export declare const UpdateBillingGroupOutputFilterSensitiveLog: (
|
|
903
650
|
obj: UpdateBillingGroupOutput
|
|
904
651
|
) => any;
|
|
905
|
-
|
|
906
652
|
export declare const CustomLineItemBillingPeriodRangeFilterSensitiveLog: (
|
|
907
653
|
obj: CustomLineItemBillingPeriodRange
|
|
908
654
|
) => any;
|
|
909
|
-
|
|
910
655
|
export declare const BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog: (
|
|
911
656
|
obj: BatchAssociateResourcesToCustomLineItemInput
|
|
912
657
|
) => any;
|
|
913
|
-
|
|
914
658
|
export declare const BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog: (
|
|
915
659
|
obj: BatchAssociateResourcesToCustomLineItemOutput
|
|
916
660
|
) => any;
|
|
917
|
-
|
|
918
661
|
export declare const BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog: (
|
|
919
662
|
obj: BatchDisassociateResourcesFromCustomLineItemInput
|
|
920
663
|
) => any;
|
|
921
|
-
|
|
922
664
|
export declare const DisassociateResourceResponseElementFilterSensitiveLog: (
|
|
923
665
|
obj: DisassociateResourceResponseElement
|
|
924
666
|
) => any;
|
|
925
|
-
|
|
926
667
|
export declare const BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog: (
|
|
927
668
|
obj: BatchDisassociateResourcesFromCustomLineItemOutput
|
|
928
669
|
) => any;
|
|
929
|
-
|
|
930
670
|
export declare const CustomLineItemFlatChargeDetailsFilterSensitiveLog: (
|
|
931
671
|
obj: CustomLineItemFlatChargeDetails
|
|
932
672
|
) => any;
|
|
933
|
-
|
|
934
673
|
export declare const CustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
|
|
935
674
|
obj: CustomLineItemPercentageChargeDetails
|
|
936
675
|
) => any;
|
|
937
|
-
|
|
938
676
|
export declare const CustomLineItemChargeDetailsFilterSensitiveLog: (
|
|
939
677
|
obj: CustomLineItemChargeDetails
|
|
940
678
|
) => any;
|
|
941
|
-
|
|
942
679
|
export declare const CreateCustomLineItemInputFilterSensitiveLog: (
|
|
943
680
|
obj: CreateCustomLineItemInput
|
|
944
681
|
) => any;
|
|
945
|
-
|
|
946
682
|
export declare const CreateCustomLineItemOutputFilterSensitiveLog: (
|
|
947
683
|
obj: CreateCustomLineItemOutput
|
|
948
684
|
) => any;
|
|
949
|
-
|
|
950
685
|
export declare const DeleteCustomLineItemInputFilterSensitiveLog: (
|
|
951
686
|
obj: DeleteCustomLineItemInput
|
|
952
687
|
) => any;
|
|
953
|
-
|
|
954
688
|
export declare const DeleteCustomLineItemOutputFilterSensitiveLog: (
|
|
955
689
|
obj: DeleteCustomLineItemOutput
|
|
956
690
|
) => any;
|
|
957
|
-
|
|
958
691
|
export declare const ListCustomLineItemsFilterFilterSensitiveLog: (
|
|
959
692
|
obj: ListCustomLineItemsFilter
|
|
960
693
|
) => any;
|
|
961
|
-
|
|
962
694
|
export declare const ListCustomLineItemsInputFilterSensitiveLog: (
|
|
963
695
|
obj: ListCustomLineItemsInput
|
|
964
696
|
) => any;
|
|
965
|
-
|
|
966
697
|
export declare const ListCustomLineItemFlatChargeDetailsFilterSensitiveLog: (
|
|
967
698
|
obj: ListCustomLineItemFlatChargeDetails
|
|
968
699
|
) => any;
|
|
969
|
-
|
|
970
700
|
export declare const ListCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
|
|
971
701
|
obj: ListCustomLineItemPercentageChargeDetails
|
|
972
702
|
) => any;
|
|
973
|
-
|
|
974
703
|
export declare const ListCustomLineItemChargeDetailsFilterSensitiveLog: (
|
|
975
704
|
obj: ListCustomLineItemChargeDetails
|
|
976
705
|
) => any;
|
|
977
|
-
|
|
978
706
|
export declare const CustomLineItemListElementFilterSensitiveLog: (
|
|
979
707
|
obj: CustomLineItemListElement
|
|
980
708
|
) => any;
|
|
981
|
-
|
|
982
709
|
export declare const ListCustomLineItemsOutputFilterSensitiveLog: (
|
|
983
710
|
obj: ListCustomLineItemsOutput
|
|
984
711
|
) => any;
|
|
985
|
-
|
|
986
712
|
export declare const ListResourcesAssociatedToCustomLineItemFilterFilterSensitiveLog: (
|
|
987
713
|
obj: ListResourcesAssociatedToCustomLineItemFilter
|
|
988
714
|
) => any;
|
|
989
|
-
|
|
990
715
|
export declare const ListResourcesAssociatedToCustomLineItemInputFilterSensitiveLog: (
|
|
991
716
|
obj: ListResourcesAssociatedToCustomLineItemInput
|
|
992
717
|
) => any;
|
|
993
|
-
|
|
994
718
|
export declare const ListResourcesAssociatedToCustomLineItemResponseElementFilterSensitiveLog: (
|
|
995
719
|
obj: ListResourcesAssociatedToCustomLineItemResponseElement
|
|
996
720
|
) => any;
|
|
997
|
-
|
|
998
721
|
export declare const ListResourcesAssociatedToCustomLineItemOutputFilterSensitiveLog: (
|
|
999
722
|
obj: ListResourcesAssociatedToCustomLineItemOutput
|
|
1000
723
|
) => any;
|
|
1001
|
-
|
|
1002
724
|
export declare const UpdateCustomLineItemFlatChargeDetailsFilterSensitiveLog: (
|
|
1003
725
|
obj: UpdateCustomLineItemFlatChargeDetails
|
|
1004
726
|
) => any;
|
|
1005
|
-
|
|
1006
727
|
export declare const UpdateCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
|
|
1007
728
|
obj: UpdateCustomLineItemPercentageChargeDetails
|
|
1008
729
|
) => any;
|
|
1009
|
-
|
|
1010
730
|
export declare const UpdateCustomLineItemChargeDetailsFilterSensitiveLog: (
|
|
1011
731
|
obj: UpdateCustomLineItemChargeDetails
|
|
1012
732
|
) => any;
|
|
1013
|
-
|
|
1014
733
|
export declare const UpdateCustomLineItemInputFilterSensitiveLog: (
|
|
1015
734
|
obj: UpdateCustomLineItemInput
|
|
1016
735
|
) => any;
|
|
1017
|
-
|
|
1018
736
|
export declare const UpdateCustomLineItemOutputFilterSensitiveLog: (
|
|
1019
737
|
obj: UpdateCustomLineItemOutput
|
|
1020
738
|
) => any;
|
|
1021
|
-
|
|
1022
739
|
export declare const ListAccountAssociationsFilterFilterSensitiveLog: (
|
|
1023
740
|
obj: ListAccountAssociationsFilter
|
|
1024
741
|
) => any;
|
|
1025
|
-
|
|
1026
742
|
export declare const ListAccountAssociationsInputFilterSensitiveLog: (
|
|
1027
743
|
obj: ListAccountAssociationsInput
|
|
1028
744
|
) => any;
|
|
1029
|
-
|
|
1030
745
|
export declare const ListAccountAssociationsOutputFilterSensitiveLog: (
|
|
1031
746
|
obj: ListAccountAssociationsOutput
|
|
1032
747
|
) => any;
|
|
1033
|
-
|
|
1034
748
|
export declare const ListBillingGroupCostReportsFilterFilterSensitiveLog: (
|
|
1035
749
|
obj: ListBillingGroupCostReportsFilter
|
|
1036
750
|
) => any;
|
|
1037
|
-
|
|
1038
751
|
export declare const ListBillingGroupCostReportsInputFilterSensitiveLog: (
|
|
1039
752
|
obj: ListBillingGroupCostReportsInput
|
|
1040
753
|
) => any;
|
|
1041
|
-
|
|
1042
754
|
export declare const BillingGroupCostReportElementFilterSensitiveLog: (
|
|
1043
755
|
obj: BillingGroupCostReportElement
|
|
1044
756
|
) => any;
|
|
1045
|
-
|
|
1046
757
|
export declare const ListBillingGroupCostReportsOutputFilterSensitiveLog: (
|
|
1047
758
|
obj: ListBillingGroupCostReportsOutput
|
|
1048
759
|
) => any;
|
|
1049
|
-
|
|
1050
760
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1051
761
|
obj: ListTagsForResourceRequest
|
|
1052
762
|
) => any;
|
|
1053
|
-
|
|
1054
763
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1055
764
|
obj: ListTagsForResourceResponse
|
|
1056
765
|
) => any;
|
|
1057
|
-
|
|
1058
766
|
export declare const CreatePricingPlanInputFilterSensitiveLog: (
|
|
1059
767
|
obj: CreatePricingPlanInput
|
|
1060
768
|
) => any;
|
|
1061
|
-
|
|
1062
769
|
export declare const CreatePricingPlanOutputFilterSensitiveLog: (
|
|
1063
770
|
obj: CreatePricingPlanOutput
|
|
1064
771
|
) => any;
|
|
1065
|
-
|
|
1066
772
|
export declare const DeletePricingPlanInputFilterSensitiveLog: (
|
|
1067
773
|
obj: DeletePricingPlanInput
|
|
1068
774
|
) => any;
|
|
1069
|
-
|
|
1070
775
|
export declare const DeletePricingPlanOutputFilterSensitiveLog: (
|
|
1071
776
|
obj: DeletePricingPlanOutput
|
|
1072
777
|
) => any;
|
|
1073
|
-
|
|
1074
778
|
export declare const DisassociatePricingRulesInputFilterSensitiveLog: (
|
|
1075
779
|
obj: DisassociatePricingRulesInput
|
|
1076
780
|
) => any;
|
|
1077
|
-
|
|
1078
781
|
export declare const DisassociatePricingRulesOutputFilterSensitiveLog: (
|
|
1079
782
|
obj: DisassociatePricingRulesOutput
|
|
1080
783
|
) => any;
|
|
1081
|
-
|
|
1082
784
|
export declare const ListPricingPlansFilterFilterSensitiveLog: (
|
|
1083
785
|
obj: ListPricingPlansFilter
|
|
1084
786
|
) => any;
|
|
1085
|
-
|
|
1086
787
|
export declare const ListPricingPlansInputFilterSensitiveLog: (
|
|
1087
788
|
obj: ListPricingPlansInput
|
|
1088
789
|
) => any;
|
|
1089
|
-
|
|
1090
790
|
export declare const PricingPlanListElementFilterSensitiveLog: (
|
|
1091
791
|
obj: PricingPlanListElement
|
|
1092
792
|
) => any;
|
|
1093
|
-
|
|
1094
793
|
export declare const ListPricingPlansOutputFilterSensitiveLog: (
|
|
1095
794
|
obj: ListPricingPlansOutput
|
|
1096
795
|
) => any;
|
|
1097
|
-
|
|
1098
796
|
export declare const ListPricingPlansAssociatedWithPricingRuleInputFilterSensitiveLog: (
|
|
1099
797
|
obj: ListPricingPlansAssociatedWithPricingRuleInput
|
|
1100
798
|
) => any;
|
|
1101
|
-
|
|
1102
799
|
export declare const ListPricingPlansAssociatedWithPricingRuleOutputFilterSensitiveLog: (
|
|
1103
800
|
obj: ListPricingPlansAssociatedWithPricingRuleOutput
|
|
1104
801
|
) => any;
|
|
1105
|
-
|
|
1106
802
|
export declare const UpdatePricingPlanInputFilterSensitiveLog: (
|
|
1107
803
|
obj: UpdatePricingPlanInput
|
|
1108
804
|
) => any;
|
|
1109
|
-
|
|
1110
805
|
export declare const UpdatePricingPlanOutputFilterSensitiveLog: (
|
|
1111
806
|
obj: UpdatePricingPlanOutput
|
|
1112
807
|
) => any;
|
|
1113
|
-
|
|
1114
808
|
export declare const CreatePricingRuleInputFilterSensitiveLog: (
|
|
1115
809
|
obj: CreatePricingRuleInput
|
|
1116
810
|
) => any;
|
|
1117
|
-
|
|
1118
811
|
export declare const CreatePricingRuleOutputFilterSensitiveLog: (
|
|
1119
812
|
obj: CreatePricingRuleOutput
|
|
1120
813
|
) => any;
|
|
1121
|
-
|
|
1122
814
|
export declare const DeletePricingRuleInputFilterSensitiveLog: (
|
|
1123
815
|
obj: DeletePricingRuleInput
|
|
1124
816
|
) => any;
|
|
1125
|
-
|
|
1126
817
|
export declare const DeletePricingRuleOutputFilterSensitiveLog: (
|
|
1127
818
|
obj: DeletePricingRuleOutput
|
|
1128
819
|
) => any;
|
|
1129
|
-
|
|
1130
820
|
export declare const ListPricingRulesFilterFilterSensitiveLog: (
|
|
1131
821
|
obj: ListPricingRulesFilter
|
|
1132
822
|
) => any;
|
|
1133
|
-
|
|
1134
823
|
export declare const ListPricingRulesInputFilterSensitiveLog: (
|
|
1135
824
|
obj: ListPricingRulesInput
|
|
1136
825
|
) => any;
|
|
1137
|
-
|
|
1138
826
|
export declare const PricingRuleListElementFilterSensitiveLog: (
|
|
1139
827
|
obj: PricingRuleListElement
|
|
1140
828
|
) => any;
|
|
1141
|
-
|
|
1142
829
|
export declare const ListPricingRulesOutputFilterSensitiveLog: (
|
|
1143
830
|
obj: ListPricingRulesOutput
|
|
1144
831
|
) => any;
|
|
1145
|
-
|
|
1146
832
|
export declare const ListPricingRulesAssociatedToPricingPlanInputFilterSensitiveLog: (
|
|
1147
833
|
obj: ListPricingRulesAssociatedToPricingPlanInput
|
|
1148
834
|
) => any;
|
|
1149
|
-
|
|
1150
835
|
export declare const ListPricingRulesAssociatedToPricingPlanOutputFilterSensitiveLog: (
|
|
1151
836
|
obj: ListPricingRulesAssociatedToPricingPlanOutput
|
|
1152
837
|
) => any;
|
|
1153
|
-
|
|
1154
838
|
export declare const UpdatePricingRuleInputFilterSensitiveLog: (
|
|
1155
839
|
obj: UpdatePricingRuleInput
|
|
1156
840
|
) => any;
|
|
1157
|
-
|
|
1158
841
|
export declare const UpdatePricingRuleOutputFilterSensitiveLog: (
|
|
1159
842
|
obj: UpdatePricingRuleOutput
|
|
1160
843
|
) => any;
|
|
1161
|
-
|
|
1162
844
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1163
845
|
obj: TagResourceRequest
|
|
1164
846
|
) => any;
|
|
1165
|
-
|
|
1166
847
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1167
848
|
obj: TagResourceResponse
|
|
1168
849
|
) => any;
|
|
1169
|
-
|
|
1170
850
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1171
851
|
obj: UntagResourceRequest
|
|
1172
852
|
) => any;
|
|
1173
|
-
|
|
1174
853
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1175
854
|
obj: UntagResourceResponse
|
|
1176
855
|
) => any;
|