@aws-sdk/client-bcm-pricing-calculator 3.1087.0 → 3.1089.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/BCMPricingCalculator.d.ts +119 -182
- package/dist-types/ts3.4/BCMPricingCalculatorClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- 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/BatchCreateBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchCreateBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchCreateWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateBillScenarioCommitmentModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateBillScenarioUsageModificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBillEstimateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBillScenarioCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPreferencesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetWorkloadEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBillEstimateCommitmentsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateInputCommitmentModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateInputUsageModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimateLineItemsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillEstimatesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListBillScenarioCommitmentModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillScenarioUsageModificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillScenariosCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWorkloadEstimateUsageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListWorkloadEstimatesCommand.d.ts +4 -9
- 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/UpdateBillEstimateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBillScenarioCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePreferencesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateWorkloadEstimateCommand.d.ts +5 -10
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- 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/package.json +38 -38
|
@@ -124,10 +124,7 @@ import {
|
|
|
124
124
|
ListWorkloadEstimateUsageCommandInput,
|
|
125
125
|
ListWorkloadEstimateUsageCommandOutput,
|
|
126
126
|
} from "./commands/ListWorkloadEstimateUsageCommand";
|
|
127
|
-
import {
|
|
128
|
-
TagResourceCommandInput,
|
|
129
|
-
TagResourceCommandOutput,
|
|
130
|
-
} from "./commands/TagResourceCommand";
|
|
127
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
131
128
|
import {
|
|
132
129
|
UntagResourceCommandInput,
|
|
133
130
|
UntagResourceCommandOutput,
|
|
@@ -151,606 +148,546 @@ import {
|
|
|
151
148
|
export interface BCMPricingCalculator {
|
|
152
149
|
batchCreateBillScenarioCommitmentModification(
|
|
153
150
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
151
|
+
options?: __HttpHandlerOptions,
|
|
155
152
|
): Promise<BatchCreateBillScenarioCommitmentModificationCommandOutput>;
|
|
156
153
|
batchCreateBillScenarioCommitmentModification(
|
|
157
154
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
158
|
-
cb: (
|
|
159
|
-
err: any,
|
|
160
|
-
data?: BatchCreateBillScenarioCommitmentModificationCommandOutput
|
|
161
|
-
) => void
|
|
155
|
+
cb: (err: any, data?: BatchCreateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
162
156
|
): void;
|
|
163
157
|
batchCreateBillScenarioCommitmentModification(
|
|
164
158
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
165
159
|
options: __HttpHandlerOptions,
|
|
166
|
-
cb: (
|
|
167
|
-
err: any,
|
|
168
|
-
data?: BatchCreateBillScenarioCommitmentModificationCommandOutput
|
|
169
|
-
) => void
|
|
160
|
+
cb: (err: any, data?: BatchCreateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
170
161
|
): void;
|
|
171
162
|
batchCreateBillScenarioUsageModification(
|
|
172
163
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
174
165
|
): Promise<BatchCreateBillScenarioUsageModificationCommandOutput>;
|
|
175
166
|
batchCreateBillScenarioUsageModification(
|
|
176
167
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
177
|
-
cb: (
|
|
178
|
-
err: any,
|
|
179
|
-
data?: BatchCreateBillScenarioUsageModificationCommandOutput
|
|
180
|
-
) => void
|
|
168
|
+
cb: (err: any, data?: BatchCreateBillScenarioUsageModificationCommandOutput) => void,
|
|
181
169
|
): void;
|
|
182
170
|
batchCreateBillScenarioUsageModification(
|
|
183
171
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
184
172
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (
|
|
186
|
-
err: any,
|
|
187
|
-
data?: BatchCreateBillScenarioUsageModificationCommandOutput
|
|
188
|
-
) => void
|
|
173
|
+
cb: (err: any, data?: BatchCreateBillScenarioUsageModificationCommandOutput) => void,
|
|
189
174
|
): void;
|
|
190
175
|
batchCreateWorkloadEstimateUsage(
|
|
191
176
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
177
|
+
options?: __HttpHandlerOptions,
|
|
193
178
|
): Promise<BatchCreateWorkloadEstimateUsageCommandOutput>;
|
|
194
179
|
batchCreateWorkloadEstimateUsage(
|
|
195
180
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
196
|
-
cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void,
|
|
197
182
|
): void;
|
|
198
183
|
batchCreateWorkloadEstimateUsage(
|
|
199
184
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
200
185
|
options: __HttpHandlerOptions,
|
|
201
|
-
cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void,
|
|
202
187
|
): void;
|
|
203
188
|
batchDeleteBillScenarioCommitmentModification(
|
|
204
189
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
205
|
-
options?: __HttpHandlerOptions
|
|
190
|
+
options?: __HttpHandlerOptions,
|
|
206
191
|
): Promise<BatchDeleteBillScenarioCommitmentModificationCommandOutput>;
|
|
207
192
|
batchDeleteBillScenarioCommitmentModification(
|
|
208
193
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
209
|
-
cb: (
|
|
210
|
-
err: any,
|
|
211
|
-
data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput
|
|
212
|
-
) => void
|
|
194
|
+
cb: (err: any, data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput) => void,
|
|
213
195
|
): void;
|
|
214
196
|
batchDeleteBillScenarioCommitmentModification(
|
|
215
197
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
216
198
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (
|
|
218
|
-
err: any,
|
|
219
|
-
data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput
|
|
220
|
-
) => void
|
|
199
|
+
cb: (err: any, data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput) => void,
|
|
221
200
|
): void;
|
|
222
201
|
batchDeleteBillScenarioUsageModification(
|
|
223
202
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
224
|
-
options?: __HttpHandlerOptions
|
|
203
|
+
options?: __HttpHandlerOptions,
|
|
225
204
|
): Promise<BatchDeleteBillScenarioUsageModificationCommandOutput>;
|
|
226
205
|
batchDeleteBillScenarioUsageModification(
|
|
227
206
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
228
|
-
cb: (
|
|
229
|
-
err: any,
|
|
230
|
-
data?: BatchDeleteBillScenarioUsageModificationCommandOutput
|
|
231
|
-
) => void
|
|
207
|
+
cb: (err: any, data?: BatchDeleteBillScenarioUsageModificationCommandOutput) => void,
|
|
232
208
|
): void;
|
|
233
209
|
batchDeleteBillScenarioUsageModification(
|
|
234
210
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
235
211
|
options: __HttpHandlerOptions,
|
|
236
|
-
cb: (
|
|
237
|
-
err: any,
|
|
238
|
-
data?: BatchDeleteBillScenarioUsageModificationCommandOutput
|
|
239
|
-
) => void
|
|
212
|
+
cb: (err: any, data?: BatchDeleteBillScenarioUsageModificationCommandOutput) => void,
|
|
240
213
|
): void;
|
|
241
214
|
batchDeleteWorkloadEstimateUsage(
|
|
242
215
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
243
|
-
options?: __HttpHandlerOptions
|
|
216
|
+
options?: __HttpHandlerOptions,
|
|
244
217
|
): Promise<BatchDeleteWorkloadEstimateUsageCommandOutput>;
|
|
245
218
|
batchDeleteWorkloadEstimateUsage(
|
|
246
219
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
247
|
-
cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void,
|
|
248
221
|
): void;
|
|
249
222
|
batchDeleteWorkloadEstimateUsage(
|
|
250
223
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
251
224
|
options: __HttpHandlerOptions,
|
|
252
|
-
cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void
|
|
225
|
+
cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void,
|
|
253
226
|
): void;
|
|
254
227
|
batchUpdateBillScenarioCommitmentModification(
|
|
255
228
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
256
|
-
options?: __HttpHandlerOptions
|
|
229
|
+
options?: __HttpHandlerOptions,
|
|
257
230
|
): Promise<BatchUpdateBillScenarioCommitmentModificationCommandOutput>;
|
|
258
231
|
batchUpdateBillScenarioCommitmentModification(
|
|
259
232
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
260
|
-
cb: (
|
|
261
|
-
err: any,
|
|
262
|
-
data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput
|
|
263
|
-
) => void
|
|
233
|
+
cb: (err: any, data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
264
234
|
): void;
|
|
265
235
|
batchUpdateBillScenarioCommitmentModification(
|
|
266
236
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
267
237
|
options: __HttpHandlerOptions,
|
|
268
|
-
cb: (
|
|
269
|
-
err: any,
|
|
270
|
-
data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput
|
|
271
|
-
) => void
|
|
238
|
+
cb: (err: any, data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
272
239
|
): void;
|
|
273
240
|
batchUpdateBillScenarioUsageModification(
|
|
274
241
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
242
|
+
options?: __HttpHandlerOptions,
|
|
276
243
|
): Promise<BatchUpdateBillScenarioUsageModificationCommandOutput>;
|
|
277
244
|
batchUpdateBillScenarioUsageModification(
|
|
278
245
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
279
|
-
cb: (
|
|
280
|
-
err: any,
|
|
281
|
-
data?: BatchUpdateBillScenarioUsageModificationCommandOutput
|
|
282
|
-
) => void
|
|
246
|
+
cb: (err: any, data?: BatchUpdateBillScenarioUsageModificationCommandOutput) => void,
|
|
283
247
|
): void;
|
|
284
248
|
batchUpdateBillScenarioUsageModification(
|
|
285
249
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
286
250
|
options: __HttpHandlerOptions,
|
|
287
|
-
cb: (
|
|
288
|
-
err: any,
|
|
289
|
-
data?: BatchUpdateBillScenarioUsageModificationCommandOutput
|
|
290
|
-
) => void
|
|
251
|
+
cb: (err: any, data?: BatchUpdateBillScenarioUsageModificationCommandOutput) => void,
|
|
291
252
|
): void;
|
|
292
253
|
batchUpdateWorkloadEstimateUsage(
|
|
293
254
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
294
|
-
options?: __HttpHandlerOptions
|
|
255
|
+
options?: __HttpHandlerOptions,
|
|
295
256
|
): Promise<BatchUpdateWorkloadEstimateUsageCommandOutput>;
|
|
296
257
|
batchUpdateWorkloadEstimateUsage(
|
|
297
258
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
298
|
-
cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void,
|
|
299
260
|
): void;
|
|
300
261
|
batchUpdateWorkloadEstimateUsage(
|
|
301
262
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
302
263
|
options: __HttpHandlerOptions,
|
|
303
|
-
cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void,
|
|
304
265
|
): void;
|
|
305
266
|
createBillEstimate(
|
|
306
267
|
args: CreateBillEstimateCommandInput,
|
|
307
|
-
options?: __HttpHandlerOptions
|
|
268
|
+
options?: __HttpHandlerOptions,
|
|
308
269
|
): Promise<CreateBillEstimateCommandOutput>;
|
|
309
270
|
createBillEstimate(
|
|
310
271
|
args: CreateBillEstimateCommandInput,
|
|
311
|
-
cb: (err: any, data?: CreateBillEstimateCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: CreateBillEstimateCommandOutput) => void,
|
|
312
273
|
): void;
|
|
313
274
|
createBillEstimate(
|
|
314
275
|
args: CreateBillEstimateCommandInput,
|
|
315
276
|
options: __HttpHandlerOptions,
|
|
316
|
-
cb: (err: any, data?: CreateBillEstimateCommandOutput) => void
|
|
277
|
+
cb: (err: any, data?: CreateBillEstimateCommandOutput) => void,
|
|
317
278
|
): void;
|
|
318
279
|
createBillScenario(
|
|
319
280
|
args: CreateBillScenarioCommandInput,
|
|
320
|
-
options?: __HttpHandlerOptions
|
|
281
|
+
options?: __HttpHandlerOptions,
|
|
321
282
|
): Promise<CreateBillScenarioCommandOutput>;
|
|
322
283
|
createBillScenario(
|
|
323
284
|
args: CreateBillScenarioCommandInput,
|
|
324
|
-
cb: (err: any, data?: CreateBillScenarioCommandOutput) => void
|
|
285
|
+
cb: (err: any, data?: CreateBillScenarioCommandOutput) => void,
|
|
325
286
|
): void;
|
|
326
287
|
createBillScenario(
|
|
327
288
|
args: CreateBillScenarioCommandInput,
|
|
328
289
|
options: __HttpHandlerOptions,
|
|
329
|
-
cb: (err: any, data?: CreateBillScenarioCommandOutput) => void
|
|
290
|
+
cb: (err: any, data?: CreateBillScenarioCommandOutput) => void,
|
|
330
291
|
): void;
|
|
331
292
|
createWorkloadEstimate(
|
|
332
293
|
args: CreateWorkloadEstimateCommandInput,
|
|
333
|
-
options?: __HttpHandlerOptions
|
|
294
|
+
options?: __HttpHandlerOptions,
|
|
334
295
|
): Promise<CreateWorkloadEstimateCommandOutput>;
|
|
335
296
|
createWorkloadEstimate(
|
|
336
297
|
args: CreateWorkloadEstimateCommandInput,
|
|
337
|
-
cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void,
|
|
338
299
|
): void;
|
|
339
300
|
createWorkloadEstimate(
|
|
340
301
|
args: CreateWorkloadEstimateCommandInput,
|
|
341
302
|
options: __HttpHandlerOptions,
|
|
342
|
-
cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void,
|
|
343
304
|
): void;
|
|
344
305
|
deleteBillEstimate(
|
|
345
306
|
args: DeleteBillEstimateCommandInput,
|
|
346
|
-
options?: __HttpHandlerOptions
|
|
307
|
+
options?: __HttpHandlerOptions,
|
|
347
308
|
): Promise<DeleteBillEstimateCommandOutput>;
|
|
348
309
|
deleteBillEstimate(
|
|
349
310
|
args: DeleteBillEstimateCommandInput,
|
|
350
|
-
cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void,
|
|
351
312
|
): void;
|
|
352
313
|
deleteBillEstimate(
|
|
353
314
|
args: DeleteBillEstimateCommandInput,
|
|
354
315
|
options: __HttpHandlerOptions,
|
|
355
|
-
cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void,
|
|
356
317
|
): void;
|
|
357
318
|
deleteBillScenario(
|
|
358
319
|
args: DeleteBillScenarioCommandInput,
|
|
359
|
-
options?: __HttpHandlerOptions
|
|
320
|
+
options?: __HttpHandlerOptions,
|
|
360
321
|
): Promise<DeleteBillScenarioCommandOutput>;
|
|
361
322
|
deleteBillScenario(
|
|
362
323
|
args: DeleteBillScenarioCommandInput,
|
|
363
|
-
cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void
|
|
324
|
+
cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void,
|
|
364
325
|
): void;
|
|
365
326
|
deleteBillScenario(
|
|
366
327
|
args: DeleteBillScenarioCommandInput,
|
|
367
328
|
options: __HttpHandlerOptions,
|
|
368
|
-
cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void
|
|
329
|
+
cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void,
|
|
369
330
|
): void;
|
|
370
331
|
deleteWorkloadEstimate(
|
|
371
332
|
args: DeleteWorkloadEstimateCommandInput,
|
|
372
|
-
options?: __HttpHandlerOptions
|
|
333
|
+
options?: __HttpHandlerOptions,
|
|
373
334
|
): Promise<DeleteWorkloadEstimateCommandOutput>;
|
|
374
335
|
deleteWorkloadEstimate(
|
|
375
336
|
args: DeleteWorkloadEstimateCommandInput,
|
|
376
|
-
cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void
|
|
337
|
+
cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void,
|
|
377
338
|
): void;
|
|
378
339
|
deleteWorkloadEstimate(
|
|
379
340
|
args: DeleteWorkloadEstimateCommandInput,
|
|
380
341
|
options: __HttpHandlerOptions,
|
|
381
|
-
cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void
|
|
342
|
+
cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void,
|
|
382
343
|
): void;
|
|
383
344
|
getBillEstimate(
|
|
384
345
|
args: GetBillEstimateCommandInput,
|
|
385
|
-
options?: __HttpHandlerOptions
|
|
346
|
+
options?: __HttpHandlerOptions,
|
|
386
347
|
): Promise<GetBillEstimateCommandOutput>;
|
|
387
348
|
getBillEstimate(
|
|
388
349
|
args: GetBillEstimateCommandInput,
|
|
389
|
-
cb: (err: any, data?: GetBillEstimateCommandOutput) => void
|
|
350
|
+
cb: (err: any, data?: GetBillEstimateCommandOutput) => void,
|
|
390
351
|
): void;
|
|
391
352
|
getBillEstimate(
|
|
392
353
|
args: GetBillEstimateCommandInput,
|
|
393
354
|
options: __HttpHandlerOptions,
|
|
394
|
-
cb: (err: any, data?: GetBillEstimateCommandOutput) => void
|
|
355
|
+
cb: (err: any, data?: GetBillEstimateCommandOutput) => void,
|
|
395
356
|
): void;
|
|
396
357
|
getBillScenario(
|
|
397
358
|
args: GetBillScenarioCommandInput,
|
|
398
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
399
360
|
): Promise<GetBillScenarioCommandOutput>;
|
|
400
361
|
getBillScenario(
|
|
401
362
|
args: GetBillScenarioCommandInput,
|
|
402
|
-
cb: (err: any, data?: GetBillScenarioCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: GetBillScenarioCommandOutput) => void,
|
|
403
364
|
): void;
|
|
404
365
|
getBillScenario(
|
|
405
366
|
args: GetBillScenarioCommandInput,
|
|
406
367
|
options: __HttpHandlerOptions,
|
|
407
|
-
cb: (err: any, data?: GetBillScenarioCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: GetBillScenarioCommandOutput) => void,
|
|
408
369
|
): void;
|
|
409
370
|
getPreferences(): Promise<GetPreferencesCommandOutput>;
|
|
410
371
|
getPreferences(
|
|
411
372
|
args: GetPreferencesCommandInput,
|
|
412
|
-
options?: __HttpHandlerOptions
|
|
373
|
+
options?: __HttpHandlerOptions,
|
|
413
374
|
): Promise<GetPreferencesCommandOutput>;
|
|
414
375
|
getPreferences(
|
|
415
376
|
args: GetPreferencesCommandInput,
|
|
416
|
-
cb: (err: any, data?: GetPreferencesCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: GetPreferencesCommandOutput) => void,
|
|
417
378
|
): void;
|
|
418
379
|
getPreferences(
|
|
419
380
|
args: GetPreferencesCommandInput,
|
|
420
381
|
options: __HttpHandlerOptions,
|
|
421
|
-
cb: (err: any, data?: GetPreferencesCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: GetPreferencesCommandOutput) => void,
|
|
422
383
|
): void;
|
|
423
384
|
getWorkloadEstimate(
|
|
424
385
|
args: GetWorkloadEstimateCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
426
387
|
): Promise<GetWorkloadEstimateCommandOutput>;
|
|
427
388
|
getWorkloadEstimate(
|
|
428
389
|
args: GetWorkloadEstimateCommandInput,
|
|
429
|
-
cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void,
|
|
430
391
|
): void;
|
|
431
392
|
getWorkloadEstimate(
|
|
432
393
|
args: GetWorkloadEstimateCommandInput,
|
|
433
394
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void,
|
|
435
396
|
): void;
|
|
436
397
|
listBillEstimateCommitments(
|
|
437
398
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
438
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
439
400
|
): Promise<ListBillEstimateCommitmentsCommandOutput>;
|
|
440
401
|
listBillEstimateCommitments(
|
|
441
402
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
442
|
-
cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void,
|
|
443
404
|
): void;
|
|
444
405
|
listBillEstimateCommitments(
|
|
445
406
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
446
407
|
options: __HttpHandlerOptions,
|
|
447
|
-
cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void,
|
|
448
409
|
): void;
|
|
449
410
|
listBillEstimateInputCommitmentModifications(
|
|
450
411
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
451
|
-
options?: __HttpHandlerOptions
|
|
412
|
+
options?: __HttpHandlerOptions,
|
|
452
413
|
): Promise<ListBillEstimateInputCommitmentModificationsCommandOutput>;
|
|
453
414
|
listBillEstimateInputCommitmentModifications(
|
|
454
415
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
455
|
-
cb: (
|
|
456
|
-
err: any,
|
|
457
|
-
data?: ListBillEstimateInputCommitmentModificationsCommandOutput
|
|
458
|
-
) => void
|
|
416
|
+
cb: (err: any, data?: ListBillEstimateInputCommitmentModificationsCommandOutput) => void,
|
|
459
417
|
): void;
|
|
460
418
|
listBillEstimateInputCommitmentModifications(
|
|
461
419
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
462
420
|
options: __HttpHandlerOptions,
|
|
463
|
-
cb: (
|
|
464
|
-
err: any,
|
|
465
|
-
data?: ListBillEstimateInputCommitmentModificationsCommandOutput
|
|
466
|
-
) => void
|
|
421
|
+
cb: (err: any, data?: ListBillEstimateInputCommitmentModificationsCommandOutput) => void,
|
|
467
422
|
): void;
|
|
468
423
|
listBillEstimateInputUsageModifications(
|
|
469
424
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
470
|
-
options?: __HttpHandlerOptions
|
|
425
|
+
options?: __HttpHandlerOptions,
|
|
471
426
|
): Promise<ListBillEstimateInputUsageModificationsCommandOutput>;
|
|
472
427
|
listBillEstimateInputUsageModifications(
|
|
473
428
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
474
|
-
cb: (
|
|
475
|
-
err: any,
|
|
476
|
-
data?: ListBillEstimateInputUsageModificationsCommandOutput
|
|
477
|
-
) => void
|
|
429
|
+
cb: (err: any, data?: ListBillEstimateInputUsageModificationsCommandOutput) => void,
|
|
478
430
|
): void;
|
|
479
431
|
listBillEstimateInputUsageModifications(
|
|
480
432
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
481
433
|
options: __HttpHandlerOptions,
|
|
482
|
-
cb: (
|
|
483
|
-
err: any,
|
|
484
|
-
data?: ListBillEstimateInputUsageModificationsCommandOutput
|
|
485
|
-
) => void
|
|
434
|
+
cb: (err: any, data?: ListBillEstimateInputUsageModificationsCommandOutput) => void,
|
|
486
435
|
): void;
|
|
487
436
|
listBillEstimateLineItems(
|
|
488
437
|
args: ListBillEstimateLineItemsCommandInput,
|
|
489
|
-
options?: __HttpHandlerOptions
|
|
438
|
+
options?: __HttpHandlerOptions,
|
|
490
439
|
): Promise<ListBillEstimateLineItemsCommandOutput>;
|
|
491
440
|
listBillEstimateLineItems(
|
|
492
441
|
args: ListBillEstimateLineItemsCommandInput,
|
|
493
|
-
cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void
|
|
442
|
+
cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void,
|
|
494
443
|
): void;
|
|
495
444
|
listBillEstimateLineItems(
|
|
496
445
|
args: ListBillEstimateLineItemsCommandInput,
|
|
497
446
|
options: __HttpHandlerOptions,
|
|
498
|
-
cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void
|
|
447
|
+
cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void,
|
|
499
448
|
): void;
|
|
500
449
|
listBillEstimates(): Promise<ListBillEstimatesCommandOutput>;
|
|
501
450
|
listBillEstimates(
|
|
502
451
|
args: ListBillEstimatesCommandInput,
|
|
503
|
-
options?: __HttpHandlerOptions
|
|
452
|
+
options?: __HttpHandlerOptions,
|
|
504
453
|
): Promise<ListBillEstimatesCommandOutput>;
|
|
505
454
|
listBillEstimates(
|
|
506
455
|
args: ListBillEstimatesCommandInput,
|
|
507
|
-
cb: (err: any, data?: ListBillEstimatesCommandOutput) => void
|
|
456
|
+
cb: (err: any, data?: ListBillEstimatesCommandOutput) => void,
|
|
508
457
|
): void;
|
|
509
458
|
listBillEstimates(
|
|
510
459
|
args: ListBillEstimatesCommandInput,
|
|
511
460
|
options: __HttpHandlerOptions,
|
|
512
|
-
cb: (err: any, data?: ListBillEstimatesCommandOutput) => void
|
|
461
|
+
cb: (err: any, data?: ListBillEstimatesCommandOutput) => void,
|
|
513
462
|
): void;
|
|
514
463
|
listBillScenarioCommitmentModifications(
|
|
515
464
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
516
|
-
options?: __HttpHandlerOptions
|
|
465
|
+
options?: __HttpHandlerOptions,
|
|
517
466
|
): Promise<ListBillScenarioCommitmentModificationsCommandOutput>;
|
|
518
467
|
listBillScenarioCommitmentModifications(
|
|
519
468
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
520
|
-
cb: (
|
|
521
|
-
err: any,
|
|
522
|
-
data?: ListBillScenarioCommitmentModificationsCommandOutput
|
|
523
|
-
) => void
|
|
469
|
+
cb: (err: any, data?: ListBillScenarioCommitmentModificationsCommandOutput) => void,
|
|
524
470
|
): void;
|
|
525
471
|
listBillScenarioCommitmentModifications(
|
|
526
472
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
527
473
|
options: __HttpHandlerOptions,
|
|
528
|
-
cb: (
|
|
529
|
-
err: any,
|
|
530
|
-
data?: ListBillScenarioCommitmentModificationsCommandOutput
|
|
531
|
-
) => void
|
|
474
|
+
cb: (err: any, data?: ListBillScenarioCommitmentModificationsCommandOutput) => void,
|
|
532
475
|
): void;
|
|
533
476
|
listBillScenarios(): Promise<ListBillScenariosCommandOutput>;
|
|
534
477
|
listBillScenarios(
|
|
535
478
|
args: ListBillScenariosCommandInput,
|
|
536
|
-
options?: __HttpHandlerOptions
|
|
479
|
+
options?: __HttpHandlerOptions,
|
|
537
480
|
): Promise<ListBillScenariosCommandOutput>;
|
|
538
481
|
listBillScenarios(
|
|
539
482
|
args: ListBillScenariosCommandInput,
|
|
540
|
-
cb: (err: any, data?: ListBillScenariosCommandOutput) => void
|
|
483
|
+
cb: (err: any, data?: ListBillScenariosCommandOutput) => void,
|
|
541
484
|
): void;
|
|
542
485
|
listBillScenarios(
|
|
543
486
|
args: ListBillScenariosCommandInput,
|
|
544
487
|
options: __HttpHandlerOptions,
|
|
545
|
-
cb: (err: any, data?: ListBillScenariosCommandOutput) => void
|
|
488
|
+
cb: (err: any, data?: ListBillScenariosCommandOutput) => void,
|
|
546
489
|
): void;
|
|
547
490
|
listBillScenarioUsageModifications(
|
|
548
491
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
549
|
-
options?: __HttpHandlerOptions
|
|
492
|
+
options?: __HttpHandlerOptions,
|
|
550
493
|
): Promise<ListBillScenarioUsageModificationsCommandOutput>;
|
|
551
494
|
listBillScenarioUsageModifications(
|
|
552
495
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
553
|
-
cb: (
|
|
554
|
-
err: any,
|
|
555
|
-
data?: ListBillScenarioUsageModificationsCommandOutput
|
|
556
|
-
) => void
|
|
496
|
+
cb: (err: any, data?: ListBillScenarioUsageModificationsCommandOutput) => void,
|
|
557
497
|
): void;
|
|
558
498
|
listBillScenarioUsageModifications(
|
|
559
499
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
560
500
|
options: __HttpHandlerOptions,
|
|
561
|
-
cb: (
|
|
562
|
-
err: any,
|
|
563
|
-
data?: ListBillScenarioUsageModificationsCommandOutput
|
|
564
|
-
) => void
|
|
501
|
+
cb: (err: any, data?: ListBillScenarioUsageModificationsCommandOutput) => void,
|
|
565
502
|
): void;
|
|
566
503
|
listTagsForResource(
|
|
567
504
|
args: ListTagsForResourceCommandInput,
|
|
568
|
-
options?: __HttpHandlerOptions
|
|
505
|
+
options?: __HttpHandlerOptions,
|
|
569
506
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
570
507
|
listTagsForResource(
|
|
571
508
|
args: ListTagsForResourceCommandInput,
|
|
572
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
509
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
573
510
|
): void;
|
|
574
511
|
listTagsForResource(
|
|
575
512
|
args: ListTagsForResourceCommandInput,
|
|
576
513
|
options: __HttpHandlerOptions,
|
|
577
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
514
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
578
515
|
): void;
|
|
579
516
|
listWorkloadEstimates(): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
580
517
|
listWorkloadEstimates(
|
|
581
518
|
args: ListWorkloadEstimatesCommandInput,
|
|
582
|
-
options?: __HttpHandlerOptions
|
|
519
|
+
options?: __HttpHandlerOptions,
|
|
583
520
|
): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
584
521
|
listWorkloadEstimates(
|
|
585
522
|
args: ListWorkloadEstimatesCommandInput,
|
|
586
|
-
cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void
|
|
523
|
+
cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void,
|
|
587
524
|
): void;
|
|
588
525
|
listWorkloadEstimates(
|
|
589
526
|
args: ListWorkloadEstimatesCommandInput,
|
|
590
527
|
options: __HttpHandlerOptions,
|
|
591
|
-
cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void
|
|
528
|
+
cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void,
|
|
592
529
|
): void;
|
|
593
530
|
listWorkloadEstimateUsage(
|
|
594
531
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
595
|
-
options?: __HttpHandlerOptions
|
|
532
|
+
options?: __HttpHandlerOptions,
|
|
596
533
|
): Promise<ListWorkloadEstimateUsageCommandOutput>;
|
|
597
534
|
listWorkloadEstimateUsage(
|
|
598
535
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
599
|
-
cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void
|
|
536
|
+
cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void,
|
|
600
537
|
): void;
|
|
601
538
|
listWorkloadEstimateUsage(
|
|
602
539
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
603
540
|
options: __HttpHandlerOptions,
|
|
604
|
-
cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void
|
|
541
|
+
cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void,
|
|
605
542
|
): void;
|
|
606
543
|
tagResource(
|
|
607
544
|
args: TagResourceCommandInput,
|
|
608
|
-
options?: __HttpHandlerOptions
|
|
545
|
+
options?: __HttpHandlerOptions,
|
|
609
546
|
): Promise<TagResourceCommandOutput>;
|
|
610
547
|
tagResource(
|
|
611
548
|
args: TagResourceCommandInput,
|
|
612
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
549
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
613
550
|
): void;
|
|
614
551
|
tagResource(
|
|
615
552
|
args: TagResourceCommandInput,
|
|
616
553
|
options: __HttpHandlerOptions,
|
|
617
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
554
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
618
555
|
): void;
|
|
619
556
|
untagResource(
|
|
620
557
|
args: UntagResourceCommandInput,
|
|
621
|
-
options?: __HttpHandlerOptions
|
|
558
|
+
options?: __HttpHandlerOptions,
|
|
622
559
|
): Promise<UntagResourceCommandOutput>;
|
|
623
560
|
untagResource(
|
|
624
561
|
args: UntagResourceCommandInput,
|
|
625
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
562
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
626
563
|
): void;
|
|
627
564
|
untagResource(
|
|
628
565
|
args: UntagResourceCommandInput,
|
|
629
566
|
options: __HttpHandlerOptions,
|
|
630
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
567
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
631
568
|
): void;
|
|
632
569
|
updateBillEstimate(
|
|
633
570
|
args: UpdateBillEstimateCommandInput,
|
|
634
|
-
options?: __HttpHandlerOptions
|
|
571
|
+
options?: __HttpHandlerOptions,
|
|
635
572
|
): Promise<UpdateBillEstimateCommandOutput>;
|
|
636
573
|
updateBillEstimate(
|
|
637
574
|
args: UpdateBillEstimateCommandInput,
|
|
638
|
-
cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void
|
|
575
|
+
cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void,
|
|
639
576
|
): void;
|
|
640
577
|
updateBillEstimate(
|
|
641
578
|
args: UpdateBillEstimateCommandInput,
|
|
642
579
|
options: __HttpHandlerOptions,
|
|
643
|
-
cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void
|
|
580
|
+
cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void,
|
|
644
581
|
): void;
|
|
645
582
|
updateBillScenario(
|
|
646
583
|
args: UpdateBillScenarioCommandInput,
|
|
647
|
-
options?: __HttpHandlerOptions
|
|
584
|
+
options?: __HttpHandlerOptions,
|
|
648
585
|
): Promise<UpdateBillScenarioCommandOutput>;
|
|
649
586
|
updateBillScenario(
|
|
650
587
|
args: UpdateBillScenarioCommandInput,
|
|
651
|
-
cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void
|
|
588
|
+
cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void,
|
|
652
589
|
): void;
|
|
653
590
|
updateBillScenario(
|
|
654
591
|
args: UpdateBillScenarioCommandInput,
|
|
655
592
|
options: __HttpHandlerOptions,
|
|
656
|
-
cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void
|
|
593
|
+
cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void,
|
|
657
594
|
): void;
|
|
658
595
|
updatePreferences(): Promise<UpdatePreferencesCommandOutput>;
|
|
659
596
|
updatePreferences(
|
|
660
597
|
args: UpdatePreferencesCommandInput,
|
|
661
|
-
options?: __HttpHandlerOptions
|
|
598
|
+
options?: __HttpHandlerOptions,
|
|
662
599
|
): Promise<UpdatePreferencesCommandOutput>;
|
|
663
600
|
updatePreferences(
|
|
664
601
|
args: UpdatePreferencesCommandInput,
|
|
665
|
-
cb: (err: any, data?: UpdatePreferencesCommandOutput) => void
|
|
602
|
+
cb: (err: any, data?: UpdatePreferencesCommandOutput) => void,
|
|
666
603
|
): void;
|
|
667
604
|
updatePreferences(
|
|
668
605
|
args: UpdatePreferencesCommandInput,
|
|
669
606
|
options: __HttpHandlerOptions,
|
|
670
|
-
cb: (err: any, data?: UpdatePreferencesCommandOutput) => void
|
|
607
|
+
cb: (err: any, data?: UpdatePreferencesCommandOutput) => void,
|
|
671
608
|
): void;
|
|
672
609
|
updateWorkloadEstimate(
|
|
673
610
|
args: UpdateWorkloadEstimateCommandInput,
|
|
674
|
-
options?: __HttpHandlerOptions
|
|
611
|
+
options?: __HttpHandlerOptions,
|
|
675
612
|
): Promise<UpdateWorkloadEstimateCommandOutput>;
|
|
676
613
|
updateWorkloadEstimate(
|
|
677
614
|
args: UpdateWorkloadEstimateCommandInput,
|
|
678
|
-
cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void
|
|
615
|
+
cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void,
|
|
679
616
|
): void;
|
|
680
617
|
updateWorkloadEstimate(
|
|
681
618
|
args: UpdateWorkloadEstimateCommandInput,
|
|
682
619
|
options: __HttpHandlerOptions,
|
|
683
|
-
cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void
|
|
620
|
+
cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void,
|
|
684
621
|
): void;
|
|
685
622
|
paginateListBillEstimateCommitments(
|
|
686
623
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
687
624
|
paginationConfig?: Pick<
|
|
688
625
|
PaginationConfiguration,
|
|
689
626
|
Exclude<keyof PaginationConfiguration, "client">
|
|
690
|
-
|
|
627
|
+
>,
|
|
691
628
|
): Paginator<ListBillEstimateCommitmentsCommandOutput>;
|
|
692
629
|
paginateListBillEstimateInputCommitmentModifications(
|
|
693
630
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
694
631
|
paginationConfig?: Pick<
|
|
695
632
|
PaginationConfiguration,
|
|
696
633
|
Exclude<keyof PaginationConfiguration, "client">
|
|
697
|
-
|
|
634
|
+
>,
|
|
698
635
|
): Paginator<ListBillEstimateInputCommitmentModificationsCommandOutput>;
|
|
699
636
|
paginateListBillEstimateInputUsageModifications(
|
|
700
637
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
701
638
|
paginationConfig?: Pick<
|
|
702
639
|
PaginationConfiguration,
|
|
703
640
|
Exclude<keyof PaginationConfiguration, "client">
|
|
704
|
-
|
|
641
|
+
>,
|
|
705
642
|
): Paginator<ListBillEstimateInputUsageModificationsCommandOutput>;
|
|
706
643
|
paginateListBillEstimateLineItems(
|
|
707
644
|
args: ListBillEstimateLineItemsCommandInput,
|
|
708
645
|
paginationConfig?: Pick<
|
|
709
646
|
PaginationConfiguration,
|
|
710
647
|
Exclude<keyof PaginationConfiguration, "client">
|
|
711
|
-
|
|
648
|
+
>,
|
|
712
649
|
): Paginator<ListBillEstimateLineItemsCommandOutput>;
|
|
713
650
|
paginateListBillEstimates(
|
|
714
651
|
args?: ListBillEstimatesCommandInput,
|
|
715
652
|
paginationConfig?: Pick<
|
|
716
653
|
PaginationConfiguration,
|
|
717
654
|
Exclude<keyof PaginationConfiguration, "client">
|
|
718
|
-
|
|
655
|
+
>,
|
|
719
656
|
): Paginator<ListBillEstimatesCommandOutput>;
|
|
720
657
|
paginateListBillScenarioCommitmentModifications(
|
|
721
658
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
722
659
|
paginationConfig?: Pick<
|
|
723
660
|
PaginationConfiguration,
|
|
724
661
|
Exclude<keyof PaginationConfiguration, "client">
|
|
725
|
-
|
|
662
|
+
>,
|
|
726
663
|
): Paginator<ListBillScenarioCommitmentModificationsCommandOutput>;
|
|
727
664
|
paginateListBillScenarios(
|
|
728
665
|
args?: ListBillScenariosCommandInput,
|
|
729
666
|
paginationConfig?: Pick<
|
|
730
667
|
PaginationConfiguration,
|
|
731
668
|
Exclude<keyof PaginationConfiguration, "client">
|
|
732
|
-
|
|
669
|
+
>,
|
|
733
670
|
): Paginator<ListBillScenariosCommandOutput>;
|
|
734
671
|
paginateListBillScenarioUsageModifications(
|
|
735
672
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
736
673
|
paginationConfig?: Pick<
|
|
737
674
|
PaginationConfiguration,
|
|
738
675
|
Exclude<keyof PaginationConfiguration, "client">
|
|
739
|
-
|
|
676
|
+
>,
|
|
740
677
|
): Paginator<ListBillScenarioUsageModificationsCommandOutput>;
|
|
741
678
|
paginateListWorkloadEstimates(
|
|
742
679
|
args?: ListWorkloadEstimatesCommandInput,
|
|
743
680
|
paginationConfig?: Pick<
|
|
744
681
|
PaginationConfiguration,
|
|
745
682
|
Exclude<keyof PaginationConfiguration, "client">
|
|
746
|
-
|
|
683
|
+
>,
|
|
747
684
|
): Paginator<ListWorkloadEstimatesCommandOutput>;
|
|
748
685
|
paginateListWorkloadEstimateUsage(
|
|
749
686
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
750
687
|
paginationConfig?: Pick<
|
|
751
688
|
PaginationConfiguration,
|
|
752
689
|
Exclude<keyof PaginationConfiguration, "client">
|
|
753
|
-
|
|
690
|
+
>,
|
|
754
691
|
): Paginator<ListWorkloadEstimateUsageCommandOutput>;
|
|
755
692
|
}
|
|
756
693
|
export declare class BCMPricingCalculator
|