@aws-sdk/client-billingconductor 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/Billingconductor.d.ts +109 -144
- package/dist-types/ts3.4/BillingconductorClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/AssociatePricingRulesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateBillingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCustomLineItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePricingPlanCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreatePricingRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteCustomLineItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeletePricingPlanCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeletePricingRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociatePricingRulesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBillingGroupCostReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListBillingGroupCostReportsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListBillingGroupsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListCustomLineItemVersionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListCustomLineItemsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPricingPlansCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPricingRulesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBillingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateCustomLineItemCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdatePricingRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -108,10 +108,7 @@ import {
|
|
|
108
108
|
ListTagsForResourceCommandInput,
|
|
109
109
|
ListTagsForResourceCommandOutput,
|
|
110
110
|
} from "./commands/ListTagsForResourceCommand";
|
|
111
|
-
import {
|
|
112
|
-
TagResourceCommandInput,
|
|
113
|
-
TagResourceCommandOutput,
|
|
114
|
-
} from "./commands/TagResourceCommand";
|
|
111
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
115
112
|
import {
|
|
116
113
|
UntagResourceCommandInput,
|
|
117
114
|
UntagResourceCommandOutput,
|
|
@@ -135,534 +132,502 @@ import {
|
|
|
135
132
|
export interface Billingconductor {
|
|
136
133
|
associateAccounts(
|
|
137
134
|
args: AssociateAccountsCommandInput,
|
|
138
|
-
options?: __HttpHandlerOptions
|
|
135
|
+
options?: __HttpHandlerOptions,
|
|
139
136
|
): Promise<AssociateAccountsCommandOutput>;
|
|
140
137
|
associateAccounts(
|
|
141
138
|
args: AssociateAccountsCommandInput,
|
|
142
|
-
cb: (err: any, data?: AssociateAccountsCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: AssociateAccountsCommandOutput) => void,
|
|
143
140
|
): void;
|
|
144
141
|
associateAccounts(
|
|
145
142
|
args: AssociateAccountsCommandInput,
|
|
146
143
|
options: __HttpHandlerOptions,
|
|
147
|
-
cb: (err: any, data?: AssociateAccountsCommandOutput) => void
|
|
144
|
+
cb: (err: any, data?: AssociateAccountsCommandOutput) => void,
|
|
148
145
|
): void;
|
|
149
146
|
associatePricingRules(
|
|
150
147
|
args: AssociatePricingRulesCommandInput,
|
|
151
|
-
options?: __HttpHandlerOptions
|
|
148
|
+
options?: __HttpHandlerOptions,
|
|
152
149
|
): Promise<AssociatePricingRulesCommandOutput>;
|
|
153
150
|
associatePricingRules(
|
|
154
151
|
args: AssociatePricingRulesCommandInput,
|
|
155
|
-
cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void,
|
|
156
153
|
): void;
|
|
157
154
|
associatePricingRules(
|
|
158
155
|
args: AssociatePricingRulesCommandInput,
|
|
159
156
|
options: __HttpHandlerOptions,
|
|
160
|
-
cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void
|
|
157
|
+
cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void,
|
|
161
158
|
): void;
|
|
162
159
|
batchAssociateResourcesToCustomLineItem(
|
|
163
160
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
164
|
-
options?: __HttpHandlerOptions
|
|
161
|
+
options?: __HttpHandlerOptions,
|
|
165
162
|
): Promise<BatchAssociateResourcesToCustomLineItemCommandOutput>;
|
|
166
163
|
batchAssociateResourcesToCustomLineItem(
|
|
167
164
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
168
|
-
cb: (
|
|
169
|
-
err: any,
|
|
170
|
-
data?: BatchAssociateResourcesToCustomLineItemCommandOutput
|
|
171
|
-
) => void
|
|
165
|
+
cb: (err: any, data?: BatchAssociateResourcesToCustomLineItemCommandOutput) => void,
|
|
172
166
|
): void;
|
|
173
167
|
batchAssociateResourcesToCustomLineItem(
|
|
174
168
|
args: BatchAssociateResourcesToCustomLineItemCommandInput,
|
|
175
169
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (
|
|
177
|
-
err: any,
|
|
178
|
-
data?: BatchAssociateResourcesToCustomLineItemCommandOutput
|
|
179
|
-
) => void
|
|
170
|
+
cb: (err: any, data?: BatchAssociateResourcesToCustomLineItemCommandOutput) => void,
|
|
180
171
|
): void;
|
|
181
172
|
batchDisassociateResourcesFromCustomLineItem(
|
|
182
173
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
183
|
-
options?: __HttpHandlerOptions
|
|
174
|
+
options?: __HttpHandlerOptions,
|
|
184
175
|
): Promise<BatchDisassociateResourcesFromCustomLineItemCommandOutput>;
|
|
185
176
|
batchDisassociateResourcesFromCustomLineItem(
|
|
186
177
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
187
|
-
cb: (
|
|
188
|
-
err: any,
|
|
189
|
-
data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput
|
|
190
|
-
) => void
|
|
178
|
+
cb: (err: any, data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput) => void,
|
|
191
179
|
): void;
|
|
192
180
|
batchDisassociateResourcesFromCustomLineItem(
|
|
193
181
|
args: BatchDisassociateResourcesFromCustomLineItemCommandInput,
|
|
194
182
|
options: __HttpHandlerOptions,
|
|
195
|
-
cb: (
|
|
196
|
-
err: any,
|
|
197
|
-
data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput
|
|
198
|
-
) => void
|
|
183
|
+
cb: (err: any, data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput) => void,
|
|
199
184
|
): void;
|
|
200
185
|
createBillingGroup(
|
|
201
186
|
args: CreateBillingGroupCommandInput,
|
|
202
|
-
options?: __HttpHandlerOptions
|
|
187
|
+
options?: __HttpHandlerOptions,
|
|
203
188
|
): Promise<CreateBillingGroupCommandOutput>;
|
|
204
189
|
createBillingGroup(
|
|
205
190
|
args: CreateBillingGroupCommandInput,
|
|
206
|
-
cb: (err: any, data?: CreateBillingGroupCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: CreateBillingGroupCommandOutput) => void,
|
|
207
192
|
): void;
|
|
208
193
|
createBillingGroup(
|
|
209
194
|
args: CreateBillingGroupCommandInput,
|
|
210
195
|
options: __HttpHandlerOptions,
|
|
211
|
-
cb: (err: any, data?: CreateBillingGroupCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: CreateBillingGroupCommandOutput) => void,
|
|
212
197
|
): void;
|
|
213
198
|
createCustomLineItem(
|
|
214
199
|
args: CreateCustomLineItemCommandInput,
|
|
215
|
-
options?: __HttpHandlerOptions
|
|
200
|
+
options?: __HttpHandlerOptions,
|
|
216
201
|
): Promise<CreateCustomLineItemCommandOutput>;
|
|
217
202
|
createCustomLineItem(
|
|
218
203
|
args: CreateCustomLineItemCommandInput,
|
|
219
|
-
cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void
|
|
204
|
+
cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void,
|
|
220
205
|
): void;
|
|
221
206
|
createCustomLineItem(
|
|
222
207
|
args: CreateCustomLineItemCommandInput,
|
|
223
208
|
options: __HttpHandlerOptions,
|
|
224
|
-
cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void
|
|
209
|
+
cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void,
|
|
225
210
|
): void;
|
|
226
211
|
createPricingPlan(
|
|
227
212
|
args: CreatePricingPlanCommandInput,
|
|
228
|
-
options?: __HttpHandlerOptions
|
|
213
|
+
options?: __HttpHandlerOptions,
|
|
229
214
|
): Promise<CreatePricingPlanCommandOutput>;
|
|
230
215
|
createPricingPlan(
|
|
231
216
|
args: CreatePricingPlanCommandInput,
|
|
232
|
-
cb: (err: any, data?: CreatePricingPlanCommandOutput) => void
|
|
217
|
+
cb: (err: any, data?: CreatePricingPlanCommandOutput) => void,
|
|
233
218
|
): void;
|
|
234
219
|
createPricingPlan(
|
|
235
220
|
args: CreatePricingPlanCommandInput,
|
|
236
221
|
options: __HttpHandlerOptions,
|
|
237
|
-
cb: (err: any, data?: CreatePricingPlanCommandOutput) => void
|
|
222
|
+
cb: (err: any, data?: CreatePricingPlanCommandOutput) => void,
|
|
238
223
|
): void;
|
|
239
224
|
createPricingRule(
|
|
240
225
|
args: CreatePricingRuleCommandInput,
|
|
241
|
-
options?: __HttpHandlerOptions
|
|
226
|
+
options?: __HttpHandlerOptions,
|
|
242
227
|
): Promise<CreatePricingRuleCommandOutput>;
|
|
243
228
|
createPricingRule(
|
|
244
229
|
args: CreatePricingRuleCommandInput,
|
|
245
|
-
cb: (err: any, data?: CreatePricingRuleCommandOutput) => void
|
|
230
|
+
cb: (err: any, data?: CreatePricingRuleCommandOutput) => void,
|
|
246
231
|
): void;
|
|
247
232
|
createPricingRule(
|
|
248
233
|
args: CreatePricingRuleCommandInput,
|
|
249
234
|
options: __HttpHandlerOptions,
|
|
250
|
-
cb: (err: any, data?: CreatePricingRuleCommandOutput) => void
|
|
235
|
+
cb: (err: any, data?: CreatePricingRuleCommandOutput) => void,
|
|
251
236
|
): void;
|
|
252
237
|
deleteBillingGroup(
|
|
253
238
|
args: DeleteBillingGroupCommandInput,
|
|
254
|
-
options?: __HttpHandlerOptions
|
|
239
|
+
options?: __HttpHandlerOptions,
|
|
255
240
|
): Promise<DeleteBillingGroupCommandOutput>;
|
|
256
241
|
deleteBillingGroup(
|
|
257
242
|
args: DeleteBillingGroupCommandInput,
|
|
258
|
-
cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void
|
|
243
|
+
cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void,
|
|
259
244
|
): void;
|
|
260
245
|
deleteBillingGroup(
|
|
261
246
|
args: DeleteBillingGroupCommandInput,
|
|
262
247
|
options: __HttpHandlerOptions,
|
|
263
|
-
cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void
|
|
248
|
+
cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void,
|
|
264
249
|
): void;
|
|
265
250
|
deleteCustomLineItem(
|
|
266
251
|
args: DeleteCustomLineItemCommandInput,
|
|
267
|
-
options?: __HttpHandlerOptions
|
|
252
|
+
options?: __HttpHandlerOptions,
|
|
268
253
|
): Promise<DeleteCustomLineItemCommandOutput>;
|
|
269
254
|
deleteCustomLineItem(
|
|
270
255
|
args: DeleteCustomLineItemCommandInput,
|
|
271
|
-
cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void
|
|
256
|
+
cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void,
|
|
272
257
|
): void;
|
|
273
258
|
deleteCustomLineItem(
|
|
274
259
|
args: DeleteCustomLineItemCommandInput,
|
|
275
260
|
options: __HttpHandlerOptions,
|
|
276
|
-
cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void
|
|
261
|
+
cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void,
|
|
277
262
|
): void;
|
|
278
263
|
deletePricingPlan(
|
|
279
264
|
args: DeletePricingPlanCommandInput,
|
|
280
|
-
options?: __HttpHandlerOptions
|
|
265
|
+
options?: __HttpHandlerOptions,
|
|
281
266
|
): Promise<DeletePricingPlanCommandOutput>;
|
|
282
267
|
deletePricingPlan(
|
|
283
268
|
args: DeletePricingPlanCommandInput,
|
|
284
|
-
cb: (err: any, data?: DeletePricingPlanCommandOutput) => void
|
|
269
|
+
cb: (err: any, data?: DeletePricingPlanCommandOutput) => void,
|
|
285
270
|
): void;
|
|
286
271
|
deletePricingPlan(
|
|
287
272
|
args: DeletePricingPlanCommandInput,
|
|
288
273
|
options: __HttpHandlerOptions,
|
|
289
|
-
cb: (err: any, data?: DeletePricingPlanCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: DeletePricingPlanCommandOutput) => void,
|
|
290
275
|
): void;
|
|
291
276
|
deletePricingRule(
|
|
292
277
|
args: DeletePricingRuleCommandInput,
|
|
293
|
-
options?: __HttpHandlerOptions
|
|
278
|
+
options?: __HttpHandlerOptions,
|
|
294
279
|
): Promise<DeletePricingRuleCommandOutput>;
|
|
295
280
|
deletePricingRule(
|
|
296
281
|
args: DeletePricingRuleCommandInput,
|
|
297
|
-
cb: (err: any, data?: DeletePricingRuleCommandOutput) => void
|
|
282
|
+
cb: (err: any, data?: DeletePricingRuleCommandOutput) => void,
|
|
298
283
|
): void;
|
|
299
284
|
deletePricingRule(
|
|
300
285
|
args: DeletePricingRuleCommandInput,
|
|
301
286
|
options: __HttpHandlerOptions,
|
|
302
|
-
cb: (err: any, data?: DeletePricingRuleCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: DeletePricingRuleCommandOutput) => void,
|
|
303
288
|
): void;
|
|
304
289
|
disassociateAccounts(
|
|
305
290
|
args: DisassociateAccountsCommandInput,
|
|
306
|
-
options?: __HttpHandlerOptions
|
|
291
|
+
options?: __HttpHandlerOptions,
|
|
307
292
|
): Promise<DisassociateAccountsCommandOutput>;
|
|
308
293
|
disassociateAccounts(
|
|
309
294
|
args: DisassociateAccountsCommandInput,
|
|
310
|
-
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void,
|
|
311
296
|
): void;
|
|
312
297
|
disassociateAccounts(
|
|
313
298
|
args: DisassociateAccountsCommandInput,
|
|
314
299
|
options: __HttpHandlerOptions,
|
|
315
|
-
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void,
|
|
316
301
|
): void;
|
|
317
302
|
disassociatePricingRules(
|
|
318
303
|
args: DisassociatePricingRulesCommandInput,
|
|
319
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
320
305
|
): Promise<DisassociatePricingRulesCommandOutput>;
|
|
321
306
|
disassociatePricingRules(
|
|
322
307
|
args: DisassociatePricingRulesCommandInput,
|
|
323
|
-
cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void,
|
|
324
309
|
): void;
|
|
325
310
|
disassociatePricingRules(
|
|
326
311
|
args: DisassociatePricingRulesCommandInput,
|
|
327
312
|
options: __HttpHandlerOptions,
|
|
328
|
-
cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void,
|
|
329
314
|
): void;
|
|
330
315
|
getBillingGroupCostReport(
|
|
331
316
|
args: GetBillingGroupCostReportCommandInput,
|
|
332
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
333
318
|
): Promise<GetBillingGroupCostReportCommandOutput>;
|
|
334
319
|
getBillingGroupCostReport(
|
|
335
320
|
args: GetBillingGroupCostReportCommandInput,
|
|
336
|
-
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void,
|
|
337
322
|
): void;
|
|
338
323
|
getBillingGroupCostReport(
|
|
339
324
|
args: GetBillingGroupCostReportCommandInput,
|
|
340
325
|
options: __HttpHandlerOptions,
|
|
341
|
-
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: GetBillingGroupCostReportCommandOutput) => void,
|
|
342
327
|
): void;
|
|
343
328
|
listAccountAssociations(): Promise<ListAccountAssociationsCommandOutput>;
|
|
344
329
|
listAccountAssociations(
|
|
345
330
|
args: ListAccountAssociationsCommandInput,
|
|
346
|
-
options?: __HttpHandlerOptions
|
|
331
|
+
options?: __HttpHandlerOptions,
|
|
347
332
|
): Promise<ListAccountAssociationsCommandOutput>;
|
|
348
333
|
listAccountAssociations(
|
|
349
334
|
args: ListAccountAssociationsCommandInput,
|
|
350
|
-
cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void,
|
|
351
336
|
): void;
|
|
352
337
|
listAccountAssociations(
|
|
353
338
|
args: ListAccountAssociationsCommandInput,
|
|
354
339
|
options: __HttpHandlerOptions,
|
|
355
|
-
cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void,
|
|
356
341
|
): void;
|
|
357
342
|
listBillingGroupCostReports(): Promise<ListBillingGroupCostReportsCommandOutput>;
|
|
358
343
|
listBillingGroupCostReports(
|
|
359
344
|
args: ListBillingGroupCostReportsCommandInput,
|
|
360
|
-
options?: __HttpHandlerOptions
|
|
345
|
+
options?: __HttpHandlerOptions,
|
|
361
346
|
): Promise<ListBillingGroupCostReportsCommandOutput>;
|
|
362
347
|
listBillingGroupCostReports(
|
|
363
348
|
args: ListBillingGroupCostReportsCommandInput,
|
|
364
|
-
cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void
|
|
349
|
+
cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void,
|
|
365
350
|
): void;
|
|
366
351
|
listBillingGroupCostReports(
|
|
367
352
|
args: ListBillingGroupCostReportsCommandInput,
|
|
368
353
|
options: __HttpHandlerOptions,
|
|
369
|
-
cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void
|
|
354
|
+
cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void,
|
|
370
355
|
): void;
|
|
371
356
|
listBillingGroups(): Promise<ListBillingGroupsCommandOutput>;
|
|
372
357
|
listBillingGroups(
|
|
373
358
|
args: ListBillingGroupsCommandInput,
|
|
374
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
375
360
|
): Promise<ListBillingGroupsCommandOutput>;
|
|
376
361
|
listBillingGroups(
|
|
377
362
|
args: ListBillingGroupsCommandInput,
|
|
378
|
-
cb: (err: any, data?: ListBillingGroupsCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: ListBillingGroupsCommandOutput) => void,
|
|
379
364
|
): void;
|
|
380
365
|
listBillingGroups(
|
|
381
366
|
args: ListBillingGroupsCommandInput,
|
|
382
367
|
options: __HttpHandlerOptions,
|
|
383
|
-
cb: (err: any, data?: ListBillingGroupsCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: ListBillingGroupsCommandOutput) => void,
|
|
384
369
|
): void;
|
|
385
370
|
listCustomLineItems(): Promise<ListCustomLineItemsCommandOutput>;
|
|
386
371
|
listCustomLineItems(
|
|
387
372
|
args: ListCustomLineItemsCommandInput,
|
|
388
|
-
options?: __HttpHandlerOptions
|
|
373
|
+
options?: __HttpHandlerOptions,
|
|
389
374
|
): Promise<ListCustomLineItemsCommandOutput>;
|
|
390
375
|
listCustomLineItems(
|
|
391
376
|
args: ListCustomLineItemsCommandInput,
|
|
392
|
-
cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void,
|
|
393
378
|
): void;
|
|
394
379
|
listCustomLineItems(
|
|
395
380
|
args: ListCustomLineItemsCommandInput,
|
|
396
381
|
options: __HttpHandlerOptions,
|
|
397
|
-
cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void,
|
|
398
383
|
): void;
|
|
399
384
|
listCustomLineItemVersions(
|
|
400
385
|
args: ListCustomLineItemVersionsCommandInput,
|
|
401
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
402
387
|
): Promise<ListCustomLineItemVersionsCommandOutput>;
|
|
403
388
|
listCustomLineItemVersions(
|
|
404
389
|
args: ListCustomLineItemVersionsCommandInput,
|
|
405
|
-
cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void,
|
|
406
391
|
): void;
|
|
407
392
|
listCustomLineItemVersions(
|
|
408
393
|
args: ListCustomLineItemVersionsCommandInput,
|
|
409
394
|
options: __HttpHandlerOptions,
|
|
410
|
-
cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void,
|
|
411
396
|
): void;
|
|
412
397
|
listPricingPlans(): Promise<ListPricingPlansCommandOutput>;
|
|
413
398
|
listPricingPlans(
|
|
414
399
|
args: ListPricingPlansCommandInput,
|
|
415
|
-
options?: __HttpHandlerOptions
|
|
400
|
+
options?: __HttpHandlerOptions,
|
|
416
401
|
): Promise<ListPricingPlansCommandOutput>;
|
|
417
402
|
listPricingPlans(
|
|
418
403
|
args: ListPricingPlansCommandInput,
|
|
419
|
-
cb: (err: any, data?: ListPricingPlansCommandOutput) => void
|
|
404
|
+
cb: (err: any, data?: ListPricingPlansCommandOutput) => void,
|
|
420
405
|
): void;
|
|
421
406
|
listPricingPlans(
|
|
422
407
|
args: ListPricingPlansCommandInput,
|
|
423
408
|
options: __HttpHandlerOptions,
|
|
424
|
-
cb: (err: any, data?: ListPricingPlansCommandOutput) => void
|
|
409
|
+
cb: (err: any, data?: ListPricingPlansCommandOutput) => void,
|
|
425
410
|
): void;
|
|
426
411
|
listPricingPlansAssociatedWithPricingRule(
|
|
427
412
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
428
|
-
options?: __HttpHandlerOptions
|
|
413
|
+
options?: __HttpHandlerOptions,
|
|
429
414
|
): Promise<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
430
415
|
listPricingPlansAssociatedWithPricingRule(
|
|
431
416
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
432
|
-
cb: (
|
|
433
|
-
err: any,
|
|
434
|
-
data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput
|
|
435
|
-
) => void
|
|
417
|
+
cb: (err: any, data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput) => void,
|
|
436
418
|
): void;
|
|
437
419
|
listPricingPlansAssociatedWithPricingRule(
|
|
438
420
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
439
421
|
options: __HttpHandlerOptions,
|
|
440
|
-
cb: (
|
|
441
|
-
err: any,
|
|
442
|
-
data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput
|
|
443
|
-
) => void
|
|
422
|
+
cb: (err: any, data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput) => void,
|
|
444
423
|
): void;
|
|
445
424
|
listPricingRules(): Promise<ListPricingRulesCommandOutput>;
|
|
446
425
|
listPricingRules(
|
|
447
426
|
args: ListPricingRulesCommandInput,
|
|
448
|
-
options?: __HttpHandlerOptions
|
|
427
|
+
options?: __HttpHandlerOptions,
|
|
449
428
|
): Promise<ListPricingRulesCommandOutput>;
|
|
450
429
|
listPricingRules(
|
|
451
430
|
args: ListPricingRulesCommandInput,
|
|
452
|
-
cb: (err: any, data?: ListPricingRulesCommandOutput) => void
|
|
431
|
+
cb: (err: any, data?: ListPricingRulesCommandOutput) => void,
|
|
453
432
|
): void;
|
|
454
433
|
listPricingRules(
|
|
455
434
|
args: ListPricingRulesCommandInput,
|
|
456
435
|
options: __HttpHandlerOptions,
|
|
457
|
-
cb: (err: any, data?: ListPricingRulesCommandOutput) => void
|
|
436
|
+
cb: (err: any, data?: ListPricingRulesCommandOutput) => void,
|
|
458
437
|
): void;
|
|
459
438
|
listPricingRulesAssociatedToPricingPlan(
|
|
460
439
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
461
|
-
options?: __HttpHandlerOptions
|
|
440
|
+
options?: __HttpHandlerOptions,
|
|
462
441
|
): Promise<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
463
442
|
listPricingRulesAssociatedToPricingPlan(
|
|
464
443
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
465
|
-
cb: (
|
|
466
|
-
err: any,
|
|
467
|
-
data?: ListPricingRulesAssociatedToPricingPlanCommandOutput
|
|
468
|
-
) => void
|
|
444
|
+
cb: (err: any, data?: ListPricingRulesAssociatedToPricingPlanCommandOutput) => void,
|
|
469
445
|
): void;
|
|
470
446
|
listPricingRulesAssociatedToPricingPlan(
|
|
471
447
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
472
448
|
options: __HttpHandlerOptions,
|
|
473
|
-
cb: (
|
|
474
|
-
err: any,
|
|
475
|
-
data?: ListPricingRulesAssociatedToPricingPlanCommandOutput
|
|
476
|
-
) => void
|
|
449
|
+
cb: (err: any, data?: ListPricingRulesAssociatedToPricingPlanCommandOutput) => void,
|
|
477
450
|
): void;
|
|
478
451
|
listResourcesAssociatedToCustomLineItem(
|
|
479
452
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
480
|
-
options?: __HttpHandlerOptions
|
|
453
|
+
options?: __HttpHandlerOptions,
|
|
481
454
|
): Promise<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
|
482
455
|
listResourcesAssociatedToCustomLineItem(
|
|
483
456
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
484
|
-
cb: (
|
|
485
|
-
err: any,
|
|
486
|
-
data?: ListResourcesAssociatedToCustomLineItemCommandOutput
|
|
487
|
-
) => void
|
|
457
|
+
cb: (err: any, data?: ListResourcesAssociatedToCustomLineItemCommandOutput) => void,
|
|
488
458
|
): void;
|
|
489
459
|
listResourcesAssociatedToCustomLineItem(
|
|
490
460
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
491
461
|
options: __HttpHandlerOptions,
|
|
492
|
-
cb: (
|
|
493
|
-
err: any,
|
|
494
|
-
data?: ListResourcesAssociatedToCustomLineItemCommandOutput
|
|
495
|
-
) => void
|
|
462
|
+
cb: (err: any, data?: ListResourcesAssociatedToCustomLineItemCommandOutput) => void,
|
|
496
463
|
): void;
|
|
497
464
|
listTagsForResource(
|
|
498
465
|
args: ListTagsForResourceCommandInput,
|
|
499
|
-
options?: __HttpHandlerOptions
|
|
466
|
+
options?: __HttpHandlerOptions,
|
|
500
467
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
501
468
|
listTagsForResource(
|
|
502
469
|
args: ListTagsForResourceCommandInput,
|
|
503
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
470
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
504
471
|
): void;
|
|
505
472
|
listTagsForResource(
|
|
506
473
|
args: ListTagsForResourceCommandInput,
|
|
507
474
|
options: __HttpHandlerOptions,
|
|
508
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
475
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
509
476
|
): void;
|
|
510
477
|
tagResource(
|
|
511
478
|
args: TagResourceCommandInput,
|
|
512
|
-
options?: __HttpHandlerOptions
|
|
479
|
+
options?: __HttpHandlerOptions,
|
|
513
480
|
): Promise<TagResourceCommandOutput>;
|
|
514
481
|
tagResource(
|
|
515
482
|
args: TagResourceCommandInput,
|
|
516
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
483
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
517
484
|
): void;
|
|
518
485
|
tagResource(
|
|
519
486
|
args: TagResourceCommandInput,
|
|
520
487
|
options: __HttpHandlerOptions,
|
|
521
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
488
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
522
489
|
): void;
|
|
523
490
|
untagResource(
|
|
524
491
|
args: UntagResourceCommandInput,
|
|
525
|
-
options?: __HttpHandlerOptions
|
|
492
|
+
options?: __HttpHandlerOptions,
|
|
526
493
|
): Promise<UntagResourceCommandOutput>;
|
|
527
494
|
untagResource(
|
|
528
495
|
args: UntagResourceCommandInput,
|
|
529
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
496
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
530
497
|
): void;
|
|
531
498
|
untagResource(
|
|
532
499
|
args: UntagResourceCommandInput,
|
|
533
500
|
options: __HttpHandlerOptions,
|
|
534
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
501
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
535
502
|
): void;
|
|
536
503
|
updateBillingGroup(
|
|
537
504
|
args: UpdateBillingGroupCommandInput,
|
|
538
|
-
options?: __HttpHandlerOptions
|
|
505
|
+
options?: __HttpHandlerOptions,
|
|
539
506
|
): Promise<UpdateBillingGroupCommandOutput>;
|
|
540
507
|
updateBillingGroup(
|
|
541
508
|
args: UpdateBillingGroupCommandInput,
|
|
542
|
-
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void
|
|
509
|
+
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void,
|
|
543
510
|
): void;
|
|
544
511
|
updateBillingGroup(
|
|
545
512
|
args: UpdateBillingGroupCommandInput,
|
|
546
513
|
options: __HttpHandlerOptions,
|
|
547
|
-
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void
|
|
514
|
+
cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void,
|
|
548
515
|
): void;
|
|
549
516
|
updateCustomLineItem(
|
|
550
517
|
args: UpdateCustomLineItemCommandInput,
|
|
551
|
-
options?: __HttpHandlerOptions
|
|
518
|
+
options?: __HttpHandlerOptions,
|
|
552
519
|
): Promise<UpdateCustomLineItemCommandOutput>;
|
|
553
520
|
updateCustomLineItem(
|
|
554
521
|
args: UpdateCustomLineItemCommandInput,
|
|
555
|
-
cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void
|
|
522
|
+
cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void,
|
|
556
523
|
): void;
|
|
557
524
|
updateCustomLineItem(
|
|
558
525
|
args: UpdateCustomLineItemCommandInput,
|
|
559
526
|
options: __HttpHandlerOptions,
|
|
560
|
-
cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void
|
|
527
|
+
cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void,
|
|
561
528
|
): void;
|
|
562
529
|
updatePricingPlan(
|
|
563
530
|
args: UpdatePricingPlanCommandInput,
|
|
564
|
-
options?: __HttpHandlerOptions
|
|
531
|
+
options?: __HttpHandlerOptions,
|
|
565
532
|
): Promise<UpdatePricingPlanCommandOutput>;
|
|
566
533
|
updatePricingPlan(
|
|
567
534
|
args: UpdatePricingPlanCommandInput,
|
|
568
|
-
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void
|
|
535
|
+
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void,
|
|
569
536
|
): void;
|
|
570
537
|
updatePricingPlan(
|
|
571
538
|
args: UpdatePricingPlanCommandInput,
|
|
572
539
|
options: __HttpHandlerOptions,
|
|
573
|
-
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void
|
|
540
|
+
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void,
|
|
574
541
|
): void;
|
|
575
542
|
updatePricingRule(
|
|
576
543
|
args: UpdatePricingRuleCommandInput,
|
|
577
|
-
options?: __HttpHandlerOptions
|
|
544
|
+
options?: __HttpHandlerOptions,
|
|
578
545
|
): Promise<UpdatePricingRuleCommandOutput>;
|
|
579
546
|
updatePricingRule(
|
|
580
547
|
args: UpdatePricingRuleCommandInput,
|
|
581
|
-
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void
|
|
548
|
+
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void,
|
|
582
549
|
): void;
|
|
583
550
|
updatePricingRule(
|
|
584
551
|
args: UpdatePricingRuleCommandInput,
|
|
585
552
|
options: __HttpHandlerOptions,
|
|
586
|
-
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void
|
|
553
|
+
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void,
|
|
587
554
|
): void;
|
|
588
555
|
paginateGetBillingGroupCostReport(
|
|
589
556
|
args: GetBillingGroupCostReportCommandInput,
|
|
590
557
|
paginationConfig?: Pick<
|
|
591
558
|
PaginationConfiguration,
|
|
592
559
|
Exclude<keyof PaginationConfiguration, "client">
|
|
593
|
-
|
|
560
|
+
>,
|
|
594
561
|
): Paginator<GetBillingGroupCostReportCommandOutput>;
|
|
595
562
|
paginateListAccountAssociations(
|
|
596
563
|
args?: ListAccountAssociationsCommandInput,
|
|
597
564
|
paginationConfig?: Pick<
|
|
598
565
|
PaginationConfiguration,
|
|
599
566
|
Exclude<keyof PaginationConfiguration, "client">
|
|
600
|
-
|
|
567
|
+
>,
|
|
601
568
|
): Paginator<ListAccountAssociationsCommandOutput>;
|
|
602
569
|
paginateListBillingGroupCostReports(
|
|
603
570
|
args?: ListBillingGroupCostReportsCommandInput,
|
|
604
571
|
paginationConfig?: Pick<
|
|
605
572
|
PaginationConfiguration,
|
|
606
573
|
Exclude<keyof PaginationConfiguration, "client">
|
|
607
|
-
|
|
574
|
+
>,
|
|
608
575
|
): Paginator<ListBillingGroupCostReportsCommandOutput>;
|
|
609
576
|
paginateListBillingGroups(
|
|
610
577
|
args?: ListBillingGroupsCommandInput,
|
|
611
578
|
paginationConfig?: Pick<
|
|
612
579
|
PaginationConfiguration,
|
|
613
580
|
Exclude<keyof PaginationConfiguration, "client">
|
|
614
|
-
|
|
581
|
+
>,
|
|
615
582
|
): Paginator<ListBillingGroupsCommandOutput>;
|
|
616
583
|
paginateListCustomLineItems(
|
|
617
584
|
args?: ListCustomLineItemsCommandInput,
|
|
618
585
|
paginationConfig?: Pick<
|
|
619
586
|
PaginationConfiguration,
|
|
620
587
|
Exclude<keyof PaginationConfiguration, "client">
|
|
621
|
-
|
|
588
|
+
>,
|
|
622
589
|
): Paginator<ListCustomLineItemsCommandOutput>;
|
|
623
590
|
paginateListCustomLineItemVersions(
|
|
624
591
|
args: ListCustomLineItemVersionsCommandInput,
|
|
625
592
|
paginationConfig?: Pick<
|
|
626
593
|
PaginationConfiguration,
|
|
627
594
|
Exclude<keyof PaginationConfiguration, "client">
|
|
628
|
-
|
|
595
|
+
>,
|
|
629
596
|
): Paginator<ListCustomLineItemVersionsCommandOutput>;
|
|
630
597
|
paginateListPricingPlans(
|
|
631
598
|
args?: ListPricingPlansCommandInput,
|
|
632
599
|
paginationConfig?: Pick<
|
|
633
600
|
PaginationConfiguration,
|
|
634
601
|
Exclude<keyof PaginationConfiguration, "client">
|
|
635
|
-
|
|
602
|
+
>,
|
|
636
603
|
): Paginator<ListPricingPlansCommandOutput>;
|
|
637
604
|
paginateListPricingPlansAssociatedWithPricingRule(
|
|
638
605
|
args: ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
639
606
|
paginationConfig?: Pick<
|
|
640
607
|
PaginationConfiguration,
|
|
641
608
|
Exclude<keyof PaginationConfiguration, "client">
|
|
642
|
-
|
|
609
|
+
>,
|
|
643
610
|
): Paginator<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
644
611
|
paginateListPricingRules(
|
|
645
612
|
args?: ListPricingRulesCommandInput,
|
|
646
613
|
paginationConfig?: Pick<
|
|
647
614
|
PaginationConfiguration,
|
|
648
615
|
Exclude<keyof PaginationConfiguration, "client">
|
|
649
|
-
|
|
616
|
+
>,
|
|
650
617
|
): Paginator<ListPricingRulesCommandOutput>;
|
|
651
618
|
paginateListPricingRulesAssociatedToPricingPlan(
|
|
652
619
|
args: ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
653
620
|
paginationConfig?: Pick<
|
|
654
621
|
PaginationConfiguration,
|
|
655
622
|
Exclude<keyof PaginationConfiguration, "client">
|
|
656
|
-
|
|
623
|
+
>,
|
|
657
624
|
): Paginator<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
658
625
|
paginateListResourcesAssociatedToCustomLineItem(
|
|
659
626
|
args: ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
660
627
|
paginationConfig?: Pick<
|
|
661
628
|
PaginationConfiguration,
|
|
662
629
|
Exclude<keyof PaginationConfiguration, "client">
|
|
663
|
-
|
|
630
|
+
>,
|
|
664
631
|
): Paginator<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
|
665
632
|
}
|
|
666
|
-
export declare class Billingconductor
|
|
667
|
-
extends BillingconductorClient
|
|
668
|
-
implements Billingconductor {}
|
|
633
|
+
export declare class Billingconductor extends BillingconductorClient implements Billingconductor {}
|