@aws-sdk/client-billingconductor 3.1136.0 → 3.1138.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 +14 -0
- package/dist-cjs/index.js +61 -3
- package/dist-es/Billingconductor.js +4 -0
- package/dist-es/commands/GetBillingTransferPreferenceCommand.js +4 -0
- package/dist-es/commands/UpdateBillingTransferPreferenceCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +42 -2
- package/dist-types/Billingconductor.d.ts +85 -65
- package/dist-types/BillingconductorClient.d.ts +4 -2
- package/dist-types/commands/GetBillingTransferPreferenceCommand.d.ts +91 -0
- package/dist-types/commands/UpdateBillingTransferPreferenceCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +86 -0
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Billingconductor.d.ts +102 -64
- package/dist-types/ts3.4/BillingconductorClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetBillingTransferPreferenceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateBillingTransferPreferenceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +8 -8
|
@@ -160,6 +160,22 @@ export interface Attribute {
|
|
|
160
160
|
*/
|
|
161
161
|
Value?: string | undefined;
|
|
162
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* <p> The auto billing group creation preference for a billing transfer. When the preference is enabled, Billing Conductor automatically creates an indirect billing transfer billing group, with the specified pricing plan, for each account that transfers its bill to the bill source account of the billing transfer. </p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export interface AutoTransferBillingGroupCreationPreference {
|
|
168
|
+
/**
|
|
169
|
+
* <p> Specifies whether Billing Conductor automatically creates billing groups for the billing transfer. The preference is disabled by default. </p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
Enabled: boolean | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* <p> The Amazon Resource Name (ARN) of the pricing plan to apply to the automatically created billing groups. This value is required when <code>Enabled</code> is <code>true</code>, and must be omitted when <code>Enabled</code> is <code>false</code>. </p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
PricingPlanArn?: string | undefined;
|
|
178
|
+
}
|
|
163
179
|
/**
|
|
164
180
|
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
165
181
|
* @public
|
|
@@ -1473,6 +1489,36 @@ export interface GetBillingGroupCostReportOutput {
|
|
|
1473
1489
|
*/
|
|
1474
1490
|
NextToken?: string | undefined;
|
|
1475
1491
|
}
|
|
1492
|
+
/**
|
|
1493
|
+
* @public
|
|
1494
|
+
*/
|
|
1495
|
+
export interface GetBillingTransferPreferenceInput {
|
|
1496
|
+
/**
|
|
1497
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer whose preference you want to retrieve.</p>
|
|
1498
|
+
* @public
|
|
1499
|
+
*/
|
|
1500
|
+
ResponsibilityTransferArn: string | undefined;
|
|
1501
|
+
}
|
|
1502
|
+
/**
|
|
1503
|
+
* @public
|
|
1504
|
+
*/
|
|
1505
|
+
export interface GetBillingTransferPreferenceOutput {
|
|
1506
|
+
/**
|
|
1507
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer that the preference applies to.</p>
|
|
1508
|
+
* @public
|
|
1509
|
+
*/
|
|
1510
|
+
ResponsibilityTransferArn: string | undefined;
|
|
1511
|
+
/**
|
|
1512
|
+
* <p>The auto billing group creation preference for the billing transfer.</p>
|
|
1513
|
+
* @public
|
|
1514
|
+
*/
|
|
1515
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
1516
|
+
/**
|
|
1517
|
+
* <p>The most recent time when the preference was modified. This value is empty if the preference has never been set for the billing transfer.</p>
|
|
1518
|
+
* @public
|
|
1519
|
+
*/
|
|
1520
|
+
LastModifiedTime?: number | undefined;
|
|
1521
|
+
}
|
|
1476
1522
|
/**
|
|
1477
1523
|
* <p>The filter on the account ID of the linked account, or any of the following:</p> <p> <code>MONITORED</code>: linked accounts that are associated to billing groups.</p> <p> <code>UNMONITORED</code>: linked accounts that are not associated to billing groups.</p> <p> <code>Billing Group Arn</code>: linked accounts that are associated to the provided Billing Group Arn.</p>
|
|
1478
1524
|
* @public
|
|
@@ -2437,3 +2483,43 @@ export interface UntagResourceRequest {
|
|
|
2437
2483
|
*/
|
|
2438
2484
|
export interface UntagResourceResponse {
|
|
2439
2485
|
}
|
|
2486
|
+
/**
|
|
2487
|
+
* @public
|
|
2488
|
+
*/
|
|
2489
|
+
export interface UpdateBillingTransferPreferenceInput {
|
|
2490
|
+
/**
|
|
2491
|
+
* <p>A unique, case-sensitive identifier that you specify to ensure idempotency of the request. Idempotency ensures that an API request completes no more than one time. With an idempotent request, if the original request completes successfully, any subsequent retries complete successfully without performing any further actions.</p>
|
|
2492
|
+
* @public
|
|
2493
|
+
*/
|
|
2494
|
+
ClientToken?: string | undefined;
|
|
2495
|
+
/**
|
|
2496
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer whose preference you want to set.</p>
|
|
2497
|
+
* @public
|
|
2498
|
+
*/
|
|
2499
|
+
ResponsibilityTransferArn: string | undefined;
|
|
2500
|
+
/**
|
|
2501
|
+
* <p>The auto billing group creation preference to set for the billing transfer.</p>
|
|
2502
|
+
* @public
|
|
2503
|
+
*/
|
|
2504
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
2505
|
+
}
|
|
2506
|
+
/**
|
|
2507
|
+
* @public
|
|
2508
|
+
*/
|
|
2509
|
+
export interface UpdateBillingTransferPreferenceOutput {
|
|
2510
|
+
/**
|
|
2511
|
+
* <p>The Amazon Resource Name (ARN) of the billing transfer that the preference applies to.</p>
|
|
2512
|
+
* @public
|
|
2513
|
+
*/
|
|
2514
|
+
ResponsibilityTransferArn: string | undefined;
|
|
2515
|
+
/**
|
|
2516
|
+
* <p>The updated auto billing group creation preference for the billing transfer.</p>
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2519
|
+
AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
|
|
2520
|
+
/**
|
|
2521
|
+
* <p>The most recent time when the preference was modified.</p>
|
|
2522
|
+
* @public
|
|
2523
|
+
*/
|
|
2524
|
+
LastModifiedTime: number | undefined;
|
|
2525
|
+
}
|
|
@@ -23,6 +23,7 @@ export declare var AssociatePricingRulesOutput$: StaticStructureSchema;
|
|
|
23
23
|
export declare var AssociateResourceError$: StaticStructureSchema;
|
|
24
24
|
export declare var AssociateResourceResponseElement$: StaticStructureSchema;
|
|
25
25
|
export declare var Attribute$: StaticStructureSchema;
|
|
26
|
+
export declare var AutoTransferBillingGroupCreationPreference$: StaticStructureSchema;
|
|
26
27
|
export declare var BatchAssociateResourcesToCustomLineItemInput$: StaticStructureSchema;
|
|
27
28
|
export declare var BatchAssociateResourcesToCustomLineItemOutput$: StaticStructureSchema;
|
|
28
29
|
export declare var BatchDisassociateResourcesFromCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -65,6 +66,8 @@ export declare var DisassociateResourceResponseElement$: StaticStructureSchema;
|
|
|
65
66
|
export declare var FreeTierConfig$: StaticStructureSchema;
|
|
66
67
|
export declare var GetBillingGroupCostReportInput$: StaticStructureSchema;
|
|
67
68
|
export declare var GetBillingGroupCostReportOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var GetBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
70
|
+
export declare var GetBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
68
71
|
export declare var LineItemFilter$: StaticStructureSchema;
|
|
69
72
|
export declare var ListAccountAssociationsFilter$: StaticStructureSchema;
|
|
70
73
|
export declare var ListAccountAssociationsInput$: StaticStructureSchema;
|
|
@@ -114,6 +117,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
114
117
|
export declare var UpdateBillingGroupAccountGrouping$: StaticStructureSchema;
|
|
115
118
|
export declare var UpdateBillingGroupInput$: StaticStructureSchema;
|
|
116
119
|
export declare var UpdateBillingGroupOutput$: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateBillingTransferPreferenceInput$: StaticStructureSchema;
|
|
121
|
+
export declare var UpdateBillingTransferPreferenceOutput$: StaticStructureSchema;
|
|
117
122
|
export declare var UpdateCustomLineItemChargeDetails$: StaticStructureSchema;
|
|
118
123
|
export declare var UpdateCustomLineItemFlatChargeDetails$: StaticStructureSchema;
|
|
119
124
|
export declare var UpdateCustomLineItemInput$: StaticStructureSchema;
|
|
@@ -141,6 +146,7 @@ export declare var DeletePricingRule$: StaticOperationSchema;
|
|
|
141
146
|
export declare var DisassociateAccounts$: StaticOperationSchema;
|
|
142
147
|
export declare var DisassociatePricingRules$: StaticOperationSchema;
|
|
143
148
|
export declare var GetBillingGroupCostReport$: StaticOperationSchema;
|
|
149
|
+
export declare var GetBillingTransferPreference$: StaticOperationSchema;
|
|
144
150
|
export declare var ListAccountAssociations$: StaticOperationSchema;
|
|
145
151
|
export declare var ListBillingGroupCostReports$: StaticOperationSchema;
|
|
146
152
|
export declare var ListBillingGroups$: StaticOperationSchema;
|
|
@@ -155,6 +161,7 @@ export declare var ListTagsForResource$: StaticOperationSchema;
|
|
|
155
161
|
export declare var TagResource$: StaticOperationSchema;
|
|
156
162
|
export declare var UntagResource$: StaticOperationSchema;
|
|
157
163
|
export declare var UpdateBillingGroup$: StaticOperationSchema;
|
|
164
|
+
export declare var UpdateBillingTransferPreference$: StaticOperationSchema;
|
|
158
165
|
export declare var UpdateCustomLineItem$: StaticOperationSchema;
|
|
159
166
|
export declare var UpdatePricingPlan$: StaticOperationSchema;
|
|
160
167
|
export declare var UpdatePricingRule$: StaticOperationSchema;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
MetricsRecorder as __MetricsRecorder,
|
|
3
4
|
PaginationConfiguration,
|
|
4
5
|
Paginator,
|
|
5
6
|
} from "@smithy/types";
|
|
@@ -64,6 +65,10 @@ import {
|
|
|
64
65
|
GetBillingGroupCostReportCommandInput,
|
|
65
66
|
GetBillingGroupCostReportCommandOutput,
|
|
66
67
|
} from "./commands/GetBillingGroupCostReportCommand";
|
|
68
|
+
import {
|
|
69
|
+
GetBillingTransferPreferenceCommandInput,
|
|
70
|
+
GetBillingTransferPreferenceCommandOutput,
|
|
71
|
+
} from "./commands/GetBillingTransferPreferenceCommand";
|
|
67
72
|
import {
|
|
68
73
|
ListAccountAssociationsCommandInput,
|
|
69
74
|
ListAccountAssociationsCommandOutput,
|
|
@@ -117,6 +122,10 @@ import {
|
|
|
117
122
|
UpdateBillingGroupCommandInput,
|
|
118
123
|
UpdateBillingGroupCommandOutput,
|
|
119
124
|
} from "./commands/UpdateBillingGroupCommand";
|
|
125
|
+
import {
|
|
126
|
+
UpdateBillingTransferPreferenceCommandInput,
|
|
127
|
+
UpdateBillingTransferPreferenceCommandOutput,
|
|
128
|
+
} from "./commands/UpdateBillingTransferPreferenceCommand";
|
|
120
129
|
import {
|
|
121
130
|
UpdateCustomLineItemCommandInput,
|
|
122
131
|
UpdateCustomLineItemCommandOutput,
|
|
@@ -129,10 +138,13 @@ import {
|
|
|
129
138
|
UpdatePricingRuleCommandInput,
|
|
130
139
|
UpdatePricingRuleCommandOutput,
|
|
131
140
|
} from "./commands/UpdatePricingRuleCommand";
|
|
141
|
+
export interface BillingconductorRequestOptions extends __HttpHandlerOptions {
|
|
142
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
143
|
+
}
|
|
132
144
|
export interface Billingconductor {
|
|
133
145
|
associateAccounts(
|
|
134
146
|
args: AssociateAccountsCommandInput,
|
|
135
|
-
options?:
|
|
147
|
+
options?: BillingconductorRequestOptions,
|
|
136
148
|
): Promise<AssociateAccountsCommandOutput>;
|
|
137
149
|
associateAccounts(
|
|
138
150
|
args: AssociateAccountsCommandInput,
|
|
@@ -140,12 +152,12 @@ export interface Billingconductor {
|
|
|
140
152
|
): void;
|
|
141
153
|
associateAccounts(
|
|
142
154
|
args: AssociateAccountsCommandInput,
|
|
143
|
-
options:
|
|
155
|
+
options: BillingconductorRequestOptions,
|
|
144
156
|
cb: (err: any, data?: AssociateAccountsCommandOutput) => void,
|
|
145
157
|
): void;
|
|
146
158
|
associatePricingRules(
|
|
147
159
|
args: AssociatePricingRulesCommandInput,
|
|
148
|
-
options?:
|
|
160
|
+
options?: BillingconductorRequestOptions,
|
|
149
161
|
): Promise<AssociatePricingRulesCommandOutput>;
|
|
150
162
|
associatePricingRules(
|
|
151
163
|
args: AssociatePricingRulesCommandInput,
|
|
@@ -153,12 +165,12 @@ export interface Billingconductor {
|
|
|
153
165
|
): void;
|
|
154
166
|
associatePricingRules(
|
|
155
167
|
args: AssociatePricingRulesCommandInput,
|
|
156
|
-
options:
|
|
168
|
+
options: BillingconductorRequestOptions,
|
|
157
169
|
cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void,
|
|
158
170
|
): void;
|
|
159
171
|
batchAssociateResourcesToCustomLineItem(
|
|
160
172
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
161
|
-
options?:
|
|
173
|
+
options?: BillingconductorRequestOptions,
|
|
162
174
|
): Promise<BatchAssociateResourcesToCustomLineItemCommandOutput>;
|
|
163
175
|
batchAssociateResourcesToCustomLineItem(
|
|
164
176
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
@@ -166,12 +178,12 @@ export interface Billingconductor {
|
|
|
166
178
|
): void;
|
|
167
179
|
batchAssociateResourcesToCustomLineItem(
|
|
168
180
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
169
|
-
options:
|
|
181
|
+
options: BillingconductorRequestOptions,
|
|
170
182
|
cb: (err: any, data?: BatchAssociateResourcesToCustomLineItemCommandOutput) => void,
|
|
171
183
|
): void;
|
|
172
184
|
batchDisassociateResourcesFromCustomLineItem(
|
|
173
185
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
174
|
-
options?:
|
|
186
|
+
options?: BillingconductorRequestOptions,
|
|
175
187
|
): Promise<BatchDisassociateResourcesFromCustomLineItemCommandOutput>;
|
|
176
188
|
batchDisassociateResourcesFromCustomLineItem(
|
|
177
189
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
@@ -179,12 +191,12 @@ export interface Billingconductor {
|
|
|
179
191
|
): void;
|
|
180
192
|
batchDisassociateResourcesFromCustomLineItem(
|
|
181
193
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
182
|
-
options:
|
|
194
|
+
options: BillingconductorRequestOptions,
|
|
183
195
|
cb: (err: any, data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput) => void,
|
|
184
196
|
): void;
|
|
185
197
|
createBillingGroup(
|
|
186
198
|
args: CreateBillingGroupCommandInput,
|
|
187
|
-
options?:
|
|
199
|
+
options?: BillingconductorRequestOptions,
|
|
188
200
|
): Promise<CreateBillingGroupCommandOutput>;
|
|
189
201
|
createBillingGroup(
|
|
190
202
|
args: CreateBillingGroupCommandInput,
|
|
@@ -192,12 +204,12 @@ export interface Billingconductor {
|
|
|
192
204
|
): void;
|
|
193
205
|
createBillingGroup(
|
|
194
206
|
args: CreateBillingGroupCommandInput,
|
|
195
|
-
options:
|
|
207
|
+
options: BillingconductorRequestOptions,
|
|
196
208
|
cb: (err: any, data?: CreateBillingGroupCommandOutput) => void,
|
|
197
209
|
): void;
|
|
198
210
|
createCustomLineItem(
|
|
199
211
|
args: CreateCustomLineItemCommandInput,
|
|
200
|
-
options?:
|
|
212
|
+
options?: BillingconductorRequestOptions,
|
|
201
213
|
): Promise<CreateCustomLineItemCommandOutput>;
|
|
202
214
|
createCustomLineItem(
|
|
203
215
|
args: CreateCustomLineItemCommandInput,
|
|
@@ -205,12 +217,12 @@ export interface Billingconductor {
|
|
|
205
217
|
): void;
|
|
206
218
|
createCustomLineItem(
|
|
207
219
|
args: CreateCustomLineItemCommandInput,
|
|
208
|
-
options:
|
|
220
|
+
options: BillingconductorRequestOptions,
|
|
209
221
|
cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void,
|
|
210
222
|
): void;
|
|
211
223
|
createPricingPlan(
|
|
212
224
|
args: CreatePricingPlanCommandInput,
|
|
213
|
-
options?:
|
|
225
|
+
options?: BillingconductorRequestOptions,
|
|
214
226
|
): Promise<CreatePricingPlanCommandOutput>;
|
|
215
227
|
createPricingPlan(
|
|
216
228
|
args: CreatePricingPlanCommandInput,
|
|
@@ -218,12 +230,12 @@ export interface Billingconductor {
|
|
|
218
230
|
): void;
|
|
219
231
|
createPricingPlan(
|
|
220
232
|
args: CreatePricingPlanCommandInput,
|
|
221
|
-
options:
|
|
233
|
+
options: BillingconductorRequestOptions,
|
|
222
234
|
cb: (err: any, data?: CreatePricingPlanCommandOutput) => void,
|
|
223
235
|
): void;
|
|
224
236
|
createPricingRule(
|
|
225
237
|
args: CreatePricingRuleCommandInput,
|
|
226
|
-
options?:
|
|
238
|
+
options?: BillingconductorRequestOptions,
|
|
227
239
|
): Promise<CreatePricingRuleCommandOutput>;
|
|
228
240
|
createPricingRule(
|
|
229
241
|
args: CreatePricingRuleCommandInput,
|
|
@@ -231,12 +243,12 @@ export interface Billingconductor {
|
|
|
231
243
|
): void;
|
|
232
244
|
createPricingRule(
|
|
233
245
|
args: CreatePricingRuleCommandInput,
|
|
234
|
-
options:
|
|
246
|
+
options: BillingconductorRequestOptions,
|
|
235
247
|
cb: (err: any, data?: CreatePricingRuleCommandOutput) => void,
|
|
236
248
|
): void;
|
|
237
249
|
deleteBillingGroup(
|
|
238
250
|
args: DeleteBillingGroupCommandInput,
|
|
239
|
-
options?:
|
|
251
|
+
options?: BillingconductorRequestOptions,
|
|
240
252
|
): Promise<DeleteBillingGroupCommandOutput>;
|
|
241
253
|
deleteBillingGroup(
|
|
242
254
|
args: DeleteBillingGroupCommandInput,
|
|
@@ -244,12 +256,12 @@ export interface Billingconductor {
|
|
|
244
256
|
): void;
|
|
245
257
|
deleteBillingGroup(
|
|
246
258
|
args: DeleteBillingGroupCommandInput,
|
|
247
|
-
options:
|
|
259
|
+
options: BillingconductorRequestOptions,
|
|
248
260
|
cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void,
|
|
249
261
|
): void;
|
|
250
262
|
deleteCustomLineItem(
|
|
251
263
|
args: DeleteCustomLineItemCommandInput,
|
|
252
|
-
options?:
|
|
264
|
+
options?: BillingconductorRequestOptions,
|
|
253
265
|
): Promise<DeleteCustomLineItemCommandOutput>;
|
|
254
266
|
deleteCustomLineItem(
|
|
255
267
|
args: DeleteCustomLineItemCommandInput,
|
|
@@ -257,12 +269,12 @@ export interface Billingconductor {
|
|
|
257
269
|
): void;
|
|
258
270
|
deleteCustomLineItem(
|
|
259
271
|
args: DeleteCustomLineItemCommandInput,
|
|
260
|
-
options:
|
|
272
|
+
options: BillingconductorRequestOptions,
|
|
261
273
|
cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void,
|
|
262
274
|
): void;
|
|
263
275
|
deletePricingPlan(
|
|
264
276
|
args: DeletePricingPlanCommandInput,
|
|
265
|
-
options?:
|
|
277
|
+
options?: BillingconductorRequestOptions,
|
|
266
278
|
): Promise<DeletePricingPlanCommandOutput>;
|
|
267
279
|
deletePricingPlan(
|
|
268
280
|
args: DeletePricingPlanCommandInput,
|
|
@@ -270,12 +282,12 @@ export interface Billingconductor {
|
|
|
270
282
|
): void;
|
|
271
283
|
deletePricingPlan(
|
|
272
284
|
args: DeletePricingPlanCommandInput,
|
|
273
|
-
options:
|
|
285
|
+
options: BillingconductorRequestOptions,
|
|
274
286
|
cb: (err: any, data?: DeletePricingPlanCommandOutput) => void,
|
|
275
287
|
): void;
|
|
276
288
|
deletePricingRule(
|
|
277
289
|
args: DeletePricingRuleCommandInput,
|
|
278
|
-
options?:
|
|
290
|
+
options?: BillingconductorRequestOptions,
|
|
279
291
|
): Promise<DeletePricingRuleCommandOutput>;
|
|
280
292
|
deletePricingRule(
|
|
281
293
|
args: DeletePricingRuleCommandInput,
|
|
@@ -283,12 +295,12 @@ export interface Billingconductor {
|
|
|
283
295
|
): void;
|
|
284
296
|
deletePricingRule(
|
|
285
297
|
args: DeletePricingRuleCommandInput,
|
|
286
|
-
options:
|
|
298
|
+
options: BillingconductorRequestOptions,
|
|
287
299
|
cb: (err: any, data?: DeletePricingRuleCommandOutput) => void,
|
|
288
300
|
): void;
|
|
289
301
|
disassociateAccounts(
|
|
290
302
|
args: DisassociateAccountsCommandInput,
|
|
291
|
-
options?:
|
|
303
|
+
options?: BillingconductorRequestOptions,
|
|
292
304
|
): Promise<DisassociateAccountsCommandOutput>;
|
|
293
305
|
disassociateAccounts(
|
|
294
306
|
args: DisassociateAccountsCommandInput,
|
|
@@ -296,12 +308,12 @@ export interface Billingconductor {
|
|
|
296
308
|
): void;
|
|
297
309
|
disassociateAccounts(
|
|
298
310
|
args: DisassociateAccountsCommandInput,
|
|
299
|
-
options:
|
|
311
|
+
options: BillingconductorRequestOptions,
|
|
300
312
|
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void,
|
|
301
313
|
): void;
|
|
302
314
|
disassociatePricingRules(
|
|
303
315
|
args: DisassociatePricingRulesCommandInput,
|
|
304
|
-
options?:
|
|
316
|
+
options?: BillingconductorRequestOptions,
|
|
305
317
|
): Promise<DisassociatePricingRulesCommandOutput>;
|
|
306
318
|
disassociatePricingRules(
|
|
307
319
|
args: DisassociatePricingRulesCommandInput,
|
|
@@ -309,12 +321,12 @@ export interface Billingconductor {
|
|
|
309
321
|
): void;
|
|
310
322
|
disassociatePricingRules(
|
|
311
323
|
args: DisassociatePricingRulesCommandInput,
|
|
312
|
-
options:
|
|
324
|
+
options: BillingconductorRequestOptions,
|
|
313
325
|
cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void,
|
|
314
326
|
): void;
|
|
315
327
|
getBillingGroupCostReport(
|
|
316
328
|
args: GetBillingGroupCostReportCommandInput,
|
|
317
|
-
options?:
|
|
329
|
+
options?: BillingconductorRequestOptions,
|
|
318
330
|
): Promise<GetBillingGroupCostReportCommandOutput>;
|
|
319
331
|
getBillingGroupCostReport(
|
|
320
332
|
args: GetBillingGroupCostReportCommandInput,
|
|
@@ -322,13 +334,26 @@ export interface Billingconductor {
|
|
|
322
334
|
): void;
|
|
323
335
|
getBillingGroupCostReport(
|
|
324
336
|
args: GetBillingGroupCostReportCommandInput,
|
|
325
|
-
options:
|
|
337
|
+
options: BillingconductorRequestOptions,
|
|
326
338
|
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void,
|
|
327
339
|
): void;
|
|
340
|
+
getBillingTransferPreference(
|
|
341
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
342
|
+
options?: BillingconductorRequestOptions,
|
|
343
|
+
): Promise<GetBillingTransferPreferenceCommandOutput>;
|
|
344
|
+
getBillingTransferPreference(
|
|
345
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
346
|
+
cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void,
|
|
347
|
+
): void;
|
|
348
|
+
getBillingTransferPreference(
|
|
349
|
+
args: GetBillingTransferPreferenceCommandInput,
|
|
350
|
+
options: BillingconductorRequestOptions,
|
|
351
|
+
cb: (err: any, data?: GetBillingTransferPreferenceCommandOutput) => void,
|
|
352
|
+
): void;
|
|
328
353
|
listAccountAssociations(): Promise<ListAccountAssociationsCommandOutput>;
|
|
329
354
|
listAccountAssociations(
|
|
330
355
|
args: ListAccountAssociationsCommandInput,
|
|
331
|
-
options?:
|
|
356
|
+
options?: BillingconductorRequestOptions,
|
|
332
357
|
): Promise<ListAccountAssociationsCommandOutput>;
|
|
333
358
|
listAccountAssociations(
|
|
334
359
|
args: ListAccountAssociationsCommandInput,
|
|
@@ -336,13 +361,13 @@ export interface Billingconductor {
|
|
|
336
361
|
): void;
|
|
337
362
|
listAccountAssociations(
|
|
338
363
|
args: ListAccountAssociationsCommandInput,
|
|
339
|
-
options:
|
|
364
|
+
options: BillingconductorRequestOptions,
|
|
340
365
|
cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void,
|
|
341
366
|
): void;
|
|
342
367
|
listBillingGroupCostReports(): Promise<ListBillingGroupCostReportsCommandOutput>;
|
|
343
368
|
listBillingGroupCostReports(
|
|
344
369
|
args: ListBillingGroupCostReportsCommandInput,
|
|
345
|
-
options?:
|
|
370
|
+
options?: BillingconductorRequestOptions,
|
|
346
371
|
): Promise<ListBillingGroupCostReportsCommandOutput>;
|
|
347
372
|
listBillingGroupCostReports(
|
|
348
373
|
args: ListBillingGroupCostReportsCommandInput,
|
|
@@ -350,13 +375,13 @@ export interface Billingconductor {
|
|
|
350
375
|
): void;
|
|
351
376
|
listBillingGroupCostReports(
|
|
352
377
|
args: ListBillingGroupCostReportsCommandInput,
|
|
353
|
-
options:
|
|
378
|
+
options: BillingconductorRequestOptions,
|
|
354
379
|
cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void,
|
|
355
380
|
): void;
|
|
356
381
|
listBillingGroups(): Promise<ListBillingGroupsCommandOutput>;
|
|
357
382
|
listBillingGroups(
|
|
358
383
|
args: ListBillingGroupsCommandInput,
|
|
359
|
-
options?:
|
|
384
|
+
options?: BillingconductorRequestOptions,
|
|
360
385
|
): Promise<ListBillingGroupsCommandOutput>;
|
|
361
386
|
listBillingGroups(
|
|
362
387
|
args: ListBillingGroupsCommandInput,
|
|
@@ -364,13 +389,13 @@ export interface Billingconductor {
|
|
|
364
389
|
): void;
|
|
365
390
|
listBillingGroups(
|
|
366
391
|
args: ListBillingGroupsCommandInput,
|
|
367
|
-
options:
|
|
392
|
+
options: BillingconductorRequestOptions,
|
|
368
393
|
cb: (err: any, data?: ListBillingGroupsCommandOutput) => void,
|
|
369
394
|
): void;
|
|
370
395
|
listCustomLineItems(): Promise<ListCustomLineItemsCommandOutput>;
|
|
371
396
|
listCustomLineItems(
|
|
372
397
|
args: ListCustomLineItemsCommandInput,
|
|
373
|
-
options?:
|
|
398
|
+
options?: BillingconductorRequestOptions,
|
|
374
399
|
): Promise<ListCustomLineItemsCommandOutput>;
|
|
375
400
|
listCustomLineItems(
|
|
376
401
|
args: ListCustomLineItemsCommandInput,
|
|
@@ -378,12 +403,12 @@ export interface Billingconductor {
|
|
|
378
403
|
): void;
|
|
379
404
|
listCustomLineItems(
|
|
380
405
|
args: ListCustomLineItemsCommandInput,
|
|
381
|
-
options:
|
|
406
|
+
options: BillingconductorRequestOptions,
|
|
382
407
|
cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void,
|
|
383
408
|
): void;
|
|
384
409
|
listCustomLineItemVersions(
|
|
385
410
|
args: ListCustomLineItemVersionsCommandInput,
|
|
386
|
-
options?:
|
|
411
|
+
options?: BillingconductorRequestOptions,
|
|
387
412
|
): Promise<ListCustomLineItemVersionsCommandOutput>;
|
|
388
413
|
listCustomLineItemVersions(
|
|
389
414
|
args: ListCustomLineItemVersionsCommandInput,
|
|
@@ -391,13 +416,13 @@ export interface Billingconductor {
|
|
|
391
416
|
): void;
|
|
392
417
|
listCustomLineItemVersions(
|
|
393
418
|
args: ListCustomLineItemVersionsCommandInput,
|
|
394
|
-
options:
|
|
419
|
+
options: BillingconductorRequestOptions,
|
|
395
420
|
cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void,
|
|
396
421
|
): void;
|
|
397
422
|
listPricingPlans(): Promise<ListPricingPlansCommandOutput>;
|
|
398
423
|
listPricingPlans(
|
|
399
424
|
args: ListPricingPlansCommandInput,
|
|
400
|
-
options?:
|
|
425
|
+
options?: BillingconductorRequestOptions,
|
|
401
426
|
): Promise<ListPricingPlansCommandOutput>;
|
|
402
427
|
listPricingPlans(
|
|
403
428
|
args: ListPricingPlansCommandInput,
|
|
@@ -405,12 +430,12 @@ export interface Billingconductor {
|
|
|
405
430
|
): void;
|
|
406
431
|
listPricingPlans(
|
|
407
432
|
args: ListPricingPlansCommandInput,
|
|
408
|
-
options:
|
|
433
|
+
options: BillingconductorRequestOptions,
|
|
409
434
|
cb: (err: any, data?: ListPricingPlansCommandOutput) => void,
|
|
410
435
|
): void;
|
|
411
436
|
listPricingPlansAssociatedWithPricingRule(
|
|
412
437
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
413
|
-
options?:
|
|
438
|
+
options?: BillingconductorRequestOptions,
|
|
414
439
|
): Promise<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
415
440
|
listPricingPlansAssociatedWithPricingRule(
|
|
416
441
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
@@ -418,13 +443,13 @@ export interface Billingconductor {
|
|
|
418
443
|
): void;
|
|
419
444
|
listPricingPlansAssociatedWithPricingRule(
|
|
420
445
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
421
|
-
options:
|
|
446
|
+
options: BillingconductorRequestOptions,
|
|
422
447
|
cb: (err: any, data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput) => void,
|
|
423
448
|
): void;
|
|
424
449
|
listPricingRules(): Promise<ListPricingRulesCommandOutput>;
|
|
425
450
|
listPricingRules(
|
|
426
451
|
args: ListPricingRulesCommandInput,
|
|
427
|
-
options?:
|
|
452
|
+
options?: BillingconductorRequestOptions,
|
|
428
453
|
): Promise<ListPricingRulesCommandOutput>;
|
|
429
454
|
listPricingRules(
|
|
430
455
|
args: ListPricingRulesCommandInput,
|
|
@@ -432,12 +457,12 @@ export interface Billingconductor {
|
|
|
432
457
|
): void;
|
|
433
458
|
listPricingRules(
|
|
434
459
|
args: ListPricingRulesCommandInput,
|
|
435
|
-
options:
|
|
460
|
+
options: BillingconductorRequestOptions,
|
|
436
461
|
cb: (err: any, data?: ListPricingRulesCommandOutput) => void,
|
|
437
462
|
): void;
|
|
438
463
|
listPricingRulesAssociatedToPricingPlan(
|
|
439
464
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
440
|
-
options?:
|
|
465
|
+
options?: BillingconductorRequestOptions,
|
|
441
466
|
): Promise<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
442
467
|
listPricingRulesAssociatedToPricingPlan(
|
|
443
468
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
@@ -445,12 +470,12 @@ export interface Billingconductor {
|
|
|
445
470
|
): void;
|
|
446
471
|
listPricingRulesAssociatedToPricingPlan(
|
|
447
472
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
448
|
-
options:
|
|
473
|
+
options: BillingconductorRequestOptions,
|
|
449
474
|
cb: (err: any, data?: ListPricingRulesAssociatedToPricingPlanCommandOutput) => void,
|
|
450
475
|
): void;
|
|
451
476
|
listResourcesAssociatedToCustomLineItem(
|
|
452
477
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
453
|
-
options?:
|
|
478
|
+
options?: BillingconductorRequestOptions,
|
|
454
479
|
): Promise<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
|
455
480
|
listResourcesAssociatedToCustomLineItem(
|
|
456
481
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
@@ -458,12 +483,12 @@ export interface Billingconductor {
|
|
|
458
483
|
): void;
|
|
459
484
|
listResourcesAssociatedToCustomLineItem(
|
|
460
485
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
461
|
-
options:
|
|
486
|
+
options: BillingconductorRequestOptions,
|
|
462
487
|
cb: (err: any, data?: ListResourcesAssociatedToCustomLineItemCommandOutput) => void,
|
|
463
488
|
): void;
|
|
464
489
|
listTagsForResource(
|
|
465
490
|
args: ListTagsForResourceCommandInput,
|
|
466
|
-
options?:
|
|
491
|
+
options?: BillingconductorRequestOptions,
|
|
467
492
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
468
493
|
listTagsForResource(
|
|
469
494
|
args: ListTagsForResourceCommandInput,
|
|
@@ -471,12 +496,12 @@ export interface Billingconductor {
|
|
|
471
496
|
): void;
|
|
472
497
|
listTagsForResource(
|
|
473
498
|
args: ListTagsForResourceCommandInput,
|
|
474
|
-
options:
|
|
499
|
+
options: BillingconductorRequestOptions,
|
|
475
500
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
476
501
|
): void;
|
|
477
502
|
tagResource(
|
|
478
503
|
args: TagResourceCommandInput,
|
|
479
|
-
options?:
|
|
504
|
+
options?: BillingconductorRequestOptions,
|
|
480
505
|
): Promise<TagResourceCommandOutput>;
|
|
481
506
|
tagResource(
|
|
482
507
|
args: TagResourceCommandInput,
|
|
@@ -484,12 +509,12 @@ export interface Billingconductor {
|
|
|
484
509
|
): void;
|
|
485
510
|
tagResource(
|
|
486
511
|
args: TagResourceCommandInput,
|
|
487
|
-
options:
|
|
512
|
+
options: BillingconductorRequestOptions,
|
|
488
513
|
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
489
514
|
): void;
|
|
490
515
|
untagResource(
|
|
491
516
|
args: UntagResourceCommandInput,
|
|
492
|
-
options?:
|
|
517
|
+
options?: BillingconductorRequestOptions,
|
|
493
518
|
): Promise<UntagResourceCommandOutput>;
|
|
494
519
|
untagResource(
|
|
495
520
|
args: UntagResourceCommandInput,
|
|
@@ -497,12 +522,12 @@ export interface Billingconductor {
|
|
|
497
522
|
): void;
|
|
498
523
|
untagResource(
|
|
499
524
|
args: UntagResourceCommandInput,
|
|
500
|
-
options:
|
|
525
|
+
options: BillingconductorRequestOptions,
|
|
501
526
|
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
502
527
|
): void;
|
|
503
528
|
updateBillingGroup(
|
|
504
529
|
args: UpdateBillingGroupCommandInput,
|
|
505
|
-
options?:
|
|
530
|
+
options?: BillingconductorRequestOptions,
|
|
506
531
|
): Promise<UpdateBillingGroupCommandOutput>;
|
|
507
532
|
updateBillingGroup(
|
|
508
533
|
args: UpdateBillingGroupCommandInput,
|
|
@@ -510,12 +535,25 @@ export interface Billingconductor {
|
|
|
510
535
|
): void;
|
|
511
536
|
updateBillingGroup(
|
|
512
537
|
args: UpdateBillingGroupCommandInput,
|
|
513
|
-
options:
|
|
538
|
+
options: BillingconductorRequestOptions,
|
|
514
539
|
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void,
|
|
515
540
|
): void;
|
|
541
|
+
updateBillingTransferPreference(
|
|
542
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
543
|
+
options?: BillingconductorRequestOptions,
|
|
544
|
+
): Promise<UpdateBillingTransferPreferenceCommandOutput>;
|
|
545
|
+
updateBillingTransferPreference(
|
|
546
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
547
|
+
cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void,
|
|
548
|
+
): void;
|
|
549
|
+
updateBillingTransferPreference(
|
|
550
|
+
args: UpdateBillingTransferPreferenceCommandInput,
|
|
551
|
+
options: BillingconductorRequestOptions,
|
|
552
|
+
cb: (err: any, data?: UpdateBillingTransferPreferenceCommandOutput) => void,
|
|
553
|
+
): void;
|
|
516
554
|
updateCustomLineItem(
|
|
517
555
|
args: UpdateCustomLineItemCommandInput,
|
|
518
|
-
options?:
|
|
556
|
+
options?: BillingconductorRequestOptions,
|
|
519
557
|
): Promise<UpdateCustomLineItemCommandOutput>;
|
|
520
558
|
updateCustomLineItem(
|
|
521
559
|
args: UpdateCustomLineItemCommandInput,
|
|
@@ -523,12 +561,12 @@ export interface Billingconductor {
|
|
|
523
561
|
): void;
|
|
524
562
|
updateCustomLineItem(
|
|
525
563
|
args: UpdateCustomLineItemCommandInput,
|
|
526
|
-
options:
|
|
564
|
+
options: BillingconductorRequestOptions,
|
|
527
565
|
cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void,
|
|
528
566
|
): void;
|
|
529
567
|
updatePricingPlan(
|
|
530
568
|
args: UpdatePricingPlanCommandInput,
|
|
531
|
-
options?:
|
|
569
|
+
options?: BillingconductorRequestOptions,
|
|
532
570
|
): Promise<UpdatePricingPlanCommandOutput>;
|
|
533
571
|
updatePricingPlan(
|
|
534
572
|
args: UpdatePricingPlanCommandInput,
|
|
@@ -536,12 +574,12 @@ export interface Billingconductor {
|
|
|
536
574
|
): void;
|
|
537
575
|
updatePricingPlan(
|
|
538
576
|
args: UpdatePricingPlanCommandInput,
|
|
539
|
-
options:
|
|
577
|
+
options: BillingconductorRequestOptions,
|
|
540
578
|
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void,
|
|
541
579
|
): void;
|
|
542
580
|
updatePricingRule(
|
|
543
581
|
args: UpdatePricingRuleCommandInput,
|
|
544
|
-
options?:
|
|
582
|
+
options?: BillingconductorRequestOptions,
|
|
545
583
|
): Promise<UpdatePricingRuleCommandOutput>;
|
|
546
584
|
updatePricingRule(
|
|
547
585
|
args: UpdatePricingRuleCommandInput,
|
|
@@ -549,7 +587,7 @@ export interface Billingconductor {
|
|
|
549
587
|
): void;
|
|
550
588
|
updatePricingRule(
|
|
551
589
|
args: UpdatePricingRuleCommandInput,
|
|
552
|
-
options:
|
|
590
|
+
options: BillingconductorRequestOptions,
|
|
553
591
|
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void,
|
|
554
592
|
): void;
|
|
555
593
|
paginateGetBillingGroupCostReport(
|