@aws-sdk/client-bcm-pricing-calculator 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/dist-cjs/index.js
CHANGED
|
@@ -67,7 +67,7 @@ const commonParams = {
|
|
|
67
67
|
Region: { type: "builtInParams", name: "region" },
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
-
var version = "3.
|
|
70
|
+
var version = "3.1137.0";
|
|
71
71
|
var packageInfo = {
|
|
72
72
|
version: version};
|
|
73
73
|
|
|
@@ -564,10 +564,10 @@ const _un = "unit";
|
|
|
564
564
|
const _v = "values";
|
|
565
565
|
const _wEI = "workloadEstimateId";
|
|
566
566
|
const n0 = "com.amazonaws.bcmpricingcalculator";
|
|
567
|
-
const _s_registry = TypeRegistry
|
|
567
|
+
const _s_registry = new TypeRegistry(_s);
|
|
568
568
|
var BCMPricingCalculatorServiceException$ = [-3, _s, "BCMPricingCalculatorServiceException", 0, [], []];
|
|
569
569
|
_s_registry.registerError(BCMPricingCalculatorServiceException$, BCMPricingCalculatorServiceException);
|
|
570
|
-
const n0_registry = TypeRegistry
|
|
570
|
+
const n0_registry = new TypeRegistry(n0);
|
|
571
571
|
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
572
572
|
{ [_aQE]: [`AccessDeniedCode`, 403], [_e]: _c, [_hE]: 403 },
|
|
573
573
|
[_m],
|
|
@@ -321,10 +321,10 @@ const n0 = "com.amazonaws.bcmpricingcalculator";
|
|
|
321
321
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
322
322
|
import { BCMPricingCalculatorServiceException } from "../models/BCMPricingCalculatorServiceException";
|
|
323
323
|
import { AccessDeniedException, ConflictException, DataUnavailableException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
324
|
-
const _s_registry = TypeRegistry
|
|
324
|
+
const _s_registry = new TypeRegistry(_s);
|
|
325
325
|
export var BCMPricingCalculatorServiceException$ = [-3, _s, "BCMPricingCalculatorServiceException", 0, [], []];
|
|
326
326
|
_s_registry.registerError(BCMPricingCalculatorServiceException$, BCMPricingCalculatorServiceException);
|
|
327
|
-
const n0_registry = TypeRegistry
|
|
327
|
+
const n0_registry = new TypeRegistry(n0);
|
|
328
328
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
329
329
|
{ [_aQE]: [`AccessDeniedCode`, 403], [_e]: _c, [_hE]: 403 },
|
|
330
330
|
[_m],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BCMPricingCalculatorClient } from "./BCMPricingCalculatorClient";
|
|
3
3
|
import { type BatchCreateBillScenarioCommitmentModificationCommandInput, type BatchCreateBillScenarioCommitmentModificationCommandOutput } from "./commands/BatchCreateBillScenarioCommitmentModificationCommand";
|
|
4
4
|
import { type BatchCreateBillScenarioUsageModificationCommandInput, type BatchCreateBillScenarioUsageModificationCommandOutput } from "./commands/BatchCreateBillScenarioUsageModificationCommand";
|
|
@@ -36,228 +36,234 @@ import { type UpdateBillEstimateCommandInput, type UpdateBillEstimateCommandOutp
|
|
|
36
36
|
import { type UpdateBillScenarioCommandInput, type UpdateBillScenarioCommandOutput } from "./commands/UpdateBillScenarioCommand";
|
|
37
37
|
import { type UpdatePreferencesCommandInput, type UpdatePreferencesCommandOutput } from "./commands/UpdatePreferencesCommand";
|
|
38
38
|
import { type UpdateWorkloadEstimateCommandInput, type UpdateWorkloadEstimateCommandOutput } from "./commands/UpdateWorkloadEstimateCommand";
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export interface BCMPricingCalculatorRequestOptions extends __HttpHandlerOptions {
|
|
43
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
44
|
+
}
|
|
39
45
|
export interface BCMPricingCalculator {
|
|
40
46
|
/**
|
|
41
47
|
* @see {@link BatchCreateBillScenarioCommitmentModificationCommand}
|
|
42
48
|
*/
|
|
43
|
-
batchCreateBillScenarioCommitmentModification(args: BatchCreateBillScenarioCommitmentModificationCommandInput, options?:
|
|
49
|
+
batchCreateBillScenarioCommitmentModification(args: BatchCreateBillScenarioCommitmentModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchCreateBillScenarioCommitmentModificationCommandOutput>;
|
|
44
50
|
batchCreateBillScenarioCommitmentModification(args: BatchCreateBillScenarioCommitmentModificationCommandInput, cb: (err: any, data?: BatchCreateBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
45
|
-
batchCreateBillScenarioCommitmentModification(args: BatchCreateBillScenarioCommitmentModificationCommandInput, options:
|
|
51
|
+
batchCreateBillScenarioCommitmentModification(args: BatchCreateBillScenarioCommitmentModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchCreateBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
46
52
|
/**
|
|
47
53
|
* @see {@link BatchCreateBillScenarioUsageModificationCommand}
|
|
48
54
|
*/
|
|
49
|
-
batchCreateBillScenarioUsageModification(args: BatchCreateBillScenarioUsageModificationCommandInput, options?:
|
|
55
|
+
batchCreateBillScenarioUsageModification(args: BatchCreateBillScenarioUsageModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchCreateBillScenarioUsageModificationCommandOutput>;
|
|
50
56
|
batchCreateBillScenarioUsageModification(args: BatchCreateBillScenarioUsageModificationCommandInput, cb: (err: any, data?: BatchCreateBillScenarioUsageModificationCommandOutput) => void): void;
|
|
51
|
-
batchCreateBillScenarioUsageModification(args: BatchCreateBillScenarioUsageModificationCommandInput, options:
|
|
57
|
+
batchCreateBillScenarioUsageModification(args: BatchCreateBillScenarioUsageModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchCreateBillScenarioUsageModificationCommandOutput) => void): void;
|
|
52
58
|
/**
|
|
53
59
|
* @see {@link BatchCreateWorkloadEstimateUsageCommand}
|
|
54
60
|
*/
|
|
55
|
-
batchCreateWorkloadEstimateUsage(args: BatchCreateWorkloadEstimateUsageCommandInput, options?:
|
|
61
|
+
batchCreateWorkloadEstimateUsage(args: BatchCreateWorkloadEstimateUsageCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchCreateWorkloadEstimateUsageCommandOutput>;
|
|
56
62
|
batchCreateWorkloadEstimateUsage(args: BatchCreateWorkloadEstimateUsageCommandInput, cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void): void;
|
|
57
|
-
batchCreateWorkloadEstimateUsage(args: BatchCreateWorkloadEstimateUsageCommandInput, options:
|
|
63
|
+
batchCreateWorkloadEstimateUsage(args: BatchCreateWorkloadEstimateUsageCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void): void;
|
|
58
64
|
/**
|
|
59
65
|
* @see {@link BatchDeleteBillScenarioCommitmentModificationCommand}
|
|
60
66
|
*/
|
|
61
|
-
batchDeleteBillScenarioCommitmentModification(args: BatchDeleteBillScenarioCommitmentModificationCommandInput, options?:
|
|
67
|
+
batchDeleteBillScenarioCommitmentModification(args: BatchDeleteBillScenarioCommitmentModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchDeleteBillScenarioCommitmentModificationCommandOutput>;
|
|
62
68
|
batchDeleteBillScenarioCommitmentModification(args: BatchDeleteBillScenarioCommitmentModificationCommandInput, cb: (err: any, data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
63
|
-
batchDeleteBillScenarioCommitmentModification(args: BatchDeleteBillScenarioCommitmentModificationCommandInput, options:
|
|
69
|
+
batchDeleteBillScenarioCommitmentModification(args: BatchDeleteBillScenarioCommitmentModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
64
70
|
/**
|
|
65
71
|
* @see {@link BatchDeleteBillScenarioUsageModificationCommand}
|
|
66
72
|
*/
|
|
67
|
-
batchDeleteBillScenarioUsageModification(args: BatchDeleteBillScenarioUsageModificationCommandInput, options?:
|
|
73
|
+
batchDeleteBillScenarioUsageModification(args: BatchDeleteBillScenarioUsageModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchDeleteBillScenarioUsageModificationCommandOutput>;
|
|
68
74
|
batchDeleteBillScenarioUsageModification(args: BatchDeleteBillScenarioUsageModificationCommandInput, cb: (err: any, data?: BatchDeleteBillScenarioUsageModificationCommandOutput) => void): void;
|
|
69
|
-
batchDeleteBillScenarioUsageModification(args: BatchDeleteBillScenarioUsageModificationCommandInput, options:
|
|
75
|
+
batchDeleteBillScenarioUsageModification(args: BatchDeleteBillScenarioUsageModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchDeleteBillScenarioUsageModificationCommandOutput) => void): void;
|
|
70
76
|
/**
|
|
71
77
|
* @see {@link BatchDeleteWorkloadEstimateUsageCommand}
|
|
72
78
|
*/
|
|
73
|
-
batchDeleteWorkloadEstimateUsage(args: BatchDeleteWorkloadEstimateUsageCommandInput, options?:
|
|
79
|
+
batchDeleteWorkloadEstimateUsage(args: BatchDeleteWorkloadEstimateUsageCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchDeleteWorkloadEstimateUsageCommandOutput>;
|
|
74
80
|
batchDeleteWorkloadEstimateUsage(args: BatchDeleteWorkloadEstimateUsageCommandInput, cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void): void;
|
|
75
|
-
batchDeleteWorkloadEstimateUsage(args: BatchDeleteWorkloadEstimateUsageCommandInput, options:
|
|
81
|
+
batchDeleteWorkloadEstimateUsage(args: BatchDeleteWorkloadEstimateUsageCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void): void;
|
|
76
82
|
/**
|
|
77
83
|
* @see {@link BatchUpdateBillScenarioCommitmentModificationCommand}
|
|
78
84
|
*/
|
|
79
|
-
batchUpdateBillScenarioCommitmentModification(args: BatchUpdateBillScenarioCommitmentModificationCommandInput, options?:
|
|
85
|
+
batchUpdateBillScenarioCommitmentModification(args: BatchUpdateBillScenarioCommitmentModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchUpdateBillScenarioCommitmentModificationCommandOutput>;
|
|
80
86
|
batchUpdateBillScenarioCommitmentModification(args: BatchUpdateBillScenarioCommitmentModificationCommandInput, cb: (err: any, data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
81
|
-
batchUpdateBillScenarioCommitmentModification(args: BatchUpdateBillScenarioCommitmentModificationCommandInput, options:
|
|
87
|
+
batchUpdateBillScenarioCommitmentModification(args: BatchUpdateBillScenarioCommitmentModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput) => void): void;
|
|
82
88
|
/**
|
|
83
89
|
* @see {@link BatchUpdateBillScenarioUsageModificationCommand}
|
|
84
90
|
*/
|
|
85
|
-
batchUpdateBillScenarioUsageModification(args: BatchUpdateBillScenarioUsageModificationCommandInput, options?:
|
|
91
|
+
batchUpdateBillScenarioUsageModification(args: BatchUpdateBillScenarioUsageModificationCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchUpdateBillScenarioUsageModificationCommandOutput>;
|
|
86
92
|
batchUpdateBillScenarioUsageModification(args: BatchUpdateBillScenarioUsageModificationCommandInput, cb: (err: any, data?: BatchUpdateBillScenarioUsageModificationCommandOutput) => void): void;
|
|
87
|
-
batchUpdateBillScenarioUsageModification(args: BatchUpdateBillScenarioUsageModificationCommandInput, options:
|
|
93
|
+
batchUpdateBillScenarioUsageModification(args: BatchUpdateBillScenarioUsageModificationCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchUpdateBillScenarioUsageModificationCommandOutput) => void): void;
|
|
88
94
|
/**
|
|
89
95
|
* @see {@link BatchUpdateWorkloadEstimateUsageCommand}
|
|
90
96
|
*/
|
|
91
|
-
batchUpdateWorkloadEstimateUsage(args: BatchUpdateWorkloadEstimateUsageCommandInput, options?:
|
|
97
|
+
batchUpdateWorkloadEstimateUsage(args: BatchUpdateWorkloadEstimateUsageCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<BatchUpdateWorkloadEstimateUsageCommandOutput>;
|
|
92
98
|
batchUpdateWorkloadEstimateUsage(args: BatchUpdateWorkloadEstimateUsageCommandInput, cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void): void;
|
|
93
|
-
batchUpdateWorkloadEstimateUsage(args: BatchUpdateWorkloadEstimateUsageCommandInput, options:
|
|
99
|
+
batchUpdateWorkloadEstimateUsage(args: BatchUpdateWorkloadEstimateUsageCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void): void;
|
|
94
100
|
/**
|
|
95
101
|
* @see {@link CreateBillEstimateCommand}
|
|
96
102
|
*/
|
|
97
|
-
createBillEstimate(args: CreateBillEstimateCommandInput, options?:
|
|
103
|
+
createBillEstimate(args: CreateBillEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<CreateBillEstimateCommandOutput>;
|
|
98
104
|
createBillEstimate(args: CreateBillEstimateCommandInput, cb: (err: any, data?: CreateBillEstimateCommandOutput) => void): void;
|
|
99
|
-
createBillEstimate(args: CreateBillEstimateCommandInput, options:
|
|
105
|
+
createBillEstimate(args: CreateBillEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: CreateBillEstimateCommandOutput) => void): void;
|
|
100
106
|
/**
|
|
101
107
|
* @see {@link CreateBillScenarioCommand}
|
|
102
108
|
*/
|
|
103
|
-
createBillScenario(args: CreateBillScenarioCommandInput, options?:
|
|
109
|
+
createBillScenario(args: CreateBillScenarioCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<CreateBillScenarioCommandOutput>;
|
|
104
110
|
createBillScenario(args: CreateBillScenarioCommandInput, cb: (err: any, data?: CreateBillScenarioCommandOutput) => void): void;
|
|
105
|
-
createBillScenario(args: CreateBillScenarioCommandInput, options:
|
|
111
|
+
createBillScenario(args: CreateBillScenarioCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: CreateBillScenarioCommandOutput) => void): void;
|
|
106
112
|
/**
|
|
107
113
|
* @see {@link CreateWorkloadEstimateCommand}
|
|
108
114
|
*/
|
|
109
|
-
createWorkloadEstimate(args: CreateWorkloadEstimateCommandInput, options?:
|
|
115
|
+
createWorkloadEstimate(args: CreateWorkloadEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<CreateWorkloadEstimateCommandOutput>;
|
|
110
116
|
createWorkloadEstimate(args: CreateWorkloadEstimateCommandInput, cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void): void;
|
|
111
|
-
createWorkloadEstimate(args: CreateWorkloadEstimateCommandInput, options:
|
|
117
|
+
createWorkloadEstimate(args: CreateWorkloadEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void): void;
|
|
112
118
|
/**
|
|
113
119
|
* @see {@link DeleteBillEstimateCommand}
|
|
114
120
|
*/
|
|
115
|
-
deleteBillEstimate(args: DeleteBillEstimateCommandInput, options?:
|
|
121
|
+
deleteBillEstimate(args: DeleteBillEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<DeleteBillEstimateCommandOutput>;
|
|
116
122
|
deleteBillEstimate(args: DeleteBillEstimateCommandInput, cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void): void;
|
|
117
|
-
deleteBillEstimate(args: DeleteBillEstimateCommandInput, options:
|
|
123
|
+
deleteBillEstimate(args: DeleteBillEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void): void;
|
|
118
124
|
/**
|
|
119
125
|
* @see {@link DeleteBillScenarioCommand}
|
|
120
126
|
*/
|
|
121
|
-
deleteBillScenario(args: DeleteBillScenarioCommandInput, options?:
|
|
127
|
+
deleteBillScenario(args: DeleteBillScenarioCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<DeleteBillScenarioCommandOutput>;
|
|
122
128
|
deleteBillScenario(args: DeleteBillScenarioCommandInput, cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void): void;
|
|
123
|
-
deleteBillScenario(args: DeleteBillScenarioCommandInput, options:
|
|
129
|
+
deleteBillScenario(args: DeleteBillScenarioCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void): void;
|
|
124
130
|
/**
|
|
125
131
|
* @see {@link DeleteWorkloadEstimateCommand}
|
|
126
132
|
*/
|
|
127
|
-
deleteWorkloadEstimate(args: DeleteWorkloadEstimateCommandInput, options?:
|
|
133
|
+
deleteWorkloadEstimate(args: DeleteWorkloadEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<DeleteWorkloadEstimateCommandOutput>;
|
|
128
134
|
deleteWorkloadEstimate(args: DeleteWorkloadEstimateCommandInput, cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void): void;
|
|
129
|
-
deleteWorkloadEstimate(args: DeleteWorkloadEstimateCommandInput, options:
|
|
135
|
+
deleteWorkloadEstimate(args: DeleteWorkloadEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void): void;
|
|
130
136
|
/**
|
|
131
137
|
* @see {@link GetBillEstimateCommand}
|
|
132
138
|
*/
|
|
133
|
-
getBillEstimate(args: GetBillEstimateCommandInput, options?:
|
|
139
|
+
getBillEstimate(args: GetBillEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<GetBillEstimateCommandOutput>;
|
|
134
140
|
getBillEstimate(args: GetBillEstimateCommandInput, cb: (err: any, data?: GetBillEstimateCommandOutput) => void): void;
|
|
135
|
-
getBillEstimate(args: GetBillEstimateCommandInput, options:
|
|
141
|
+
getBillEstimate(args: GetBillEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: GetBillEstimateCommandOutput) => void): void;
|
|
136
142
|
/**
|
|
137
143
|
* @see {@link GetBillScenarioCommand}
|
|
138
144
|
*/
|
|
139
|
-
getBillScenario(args: GetBillScenarioCommandInput, options?:
|
|
145
|
+
getBillScenario(args: GetBillScenarioCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<GetBillScenarioCommandOutput>;
|
|
140
146
|
getBillScenario(args: GetBillScenarioCommandInput, cb: (err: any, data?: GetBillScenarioCommandOutput) => void): void;
|
|
141
|
-
getBillScenario(args: GetBillScenarioCommandInput, options:
|
|
147
|
+
getBillScenario(args: GetBillScenarioCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: GetBillScenarioCommandOutput) => void): void;
|
|
142
148
|
/**
|
|
143
149
|
* @see {@link GetPreferencesCommand}
|
|
144
150
|
*/
|
|
145
151
|
getPreferences(): Promise<GetPreferencesCommandOutput>;
|
|
146
|
-
getPreferences(args: GetPreferencesCommandInput, options?:
|
|
152
|
+
getPreferences(args: GetPreferencesCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<GetPreferencesCommandOutput>;
|
|
147
153
|
getPreferences(args: GetPreferencesCommandInput, cb: (err: any, data?: GetPreferencesCommandOutput) => void): void;
|
|
148
|
-
getPreferences(args: GetPreferencesCommandInput, options:
|
|
154
|
+
getPreferences(args: GetPreferencesCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: GetPreferencesCommandOutput) => void): void;
|
|
149
155
|
/**
|
|
150
156
|
* @see {@link GetWorkloadEstimateCommand}
|
|
151
157
|
*/
|
|
152
|
-
getWorkloadEstimate(args: GetWorkloadEstimateCommandInput, options?:
|
|
158
|
+
getWorkloadEstimate(args: GetWorkloadEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<GetWorkloadEstimateCommandOutput>;
|
|
153
159
|
getWorkloadEstimate(args: GetWorkloadEstimateCommandInput, cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void): void;
|
|
154
|
-
getWorkloadEstimate(args: GetWorkloadEstimateCommandInput, options:
|
|
160
|
+
getWorkloadEstimate(args: GetWorkloadEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void): void;
|
|
155
161
|
/**
|
|
156
162
|
* @see {@link ListBillEstimateCommitmentsCommand}
|
|
157
163
|
*/
|
|
158
|
-
listBillEstimateCommitments(args: ListBillEstimateCommitmentsCommandInput, options?:
|
|
164
|
+
listBillEstimateCommitments(args: ListBillEstimateCommitmentsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillEstimateCommitmentsCommandOutput>;
|
|
159
165
|
listBillEstimateCommitments(args: ListBillEstimateCommitmentsCommandInput, cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void): void;
|
|
160
|
-
listBillEstimateCommitments(args: ListBillEstimateCommitmentsCommandInput, options:
|
|
166
|
+
listBillEstimateCommitments(args: ListBillEstimateCommitmentsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void): void;
|
|
161
167
|
/**
|
|
162
168
|
* @see {@link ListBillEstimateInputCommitmentModificationsCommand}
|
|
163
169
|
*/
|
|
164
|
-
listBillEstimateInputCommitmentModifications(args: ListBillEstimateInputCommitmentModificationsCommandInput, options?:
|
|
170
|
+
listBillEstimateInputCommitmentModifications(args: ListBillEstimateInputCommitmentModificationsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillEstimateInputCommitmentModificationsCommandOutput>;
|
|
165
171
|
listBillEstimateInputCommitmentModifications(args: ListBillEstimateInputCommitmentModificationsCommandInput, cb: (err: any, data?: ListBillEstimateInputCommitmentModificationsCommandOutput) => void): void;
|
|
166
|
-
listBillEstimateInputCommitmentModifications(args: ListBillEstimateInputCommitmentModificationsCommandInput, options:
|
|
172
|
+
listBillEstimateInputCommitmentModifications(args: ListBillEstimateInputCommitmentModificationsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillEstimateInputCommitmentModificationsCommandOutput) => void): void;
|
|
167
173
|
/**
|
|
168
174
|
* @see {@link ListBillEstimateInputUsageModificationsCommand}
|
|
169
175
|
*/
|
|
170
|
-
listBillEstimateInputUsageModifications(args: ListBillEstimateInputUsageModificationsCommandInput, options?:
|
|
176
|
+
listBillEstimateInputUsageModifications(args: ListBillEstimateInputUsageModificationsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillEstimateInputUsageModificationsCommandOutput>;
|
|
171
177
|
listBillEstimateInputUsageModifications(args: ListBillEstimateInputUsageModificationsCommandInput, cb: (err: any, data?: ListBillEstimateInputUsageModificationsCommandOutput) => void): void;
|
|
172
|
-
listBillEstimateInputUsageModifications(args: ListBillEstimateInputUsageModificationsCommandInput, options:
|
|
178
|
+
listBillEstimateInputUsageModifications(args: ListBillEstimateInputUsageModificationsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillEstimateInputUsageModificationsCommandOutput) => void): void;
|
|
173
179
|
/**
|
|
174
180
|
* @see {@link ListBillEstimateLineItemsCommand}
|
|
175
181
|
*/
|
|
176
|
-
listBillEstimateLineItems(args: ListBillEstimateLineItemsCommandInput, options?:
|
|
182
|
+
listBillEstimateLineItems(args: ListBillEstimateLineItemsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillEstimateLineItemsCommandOutput>;
|
|
177
183
|
listBillEstimateLineItems(args: ListBillEstimateLineItemsCommandInput, cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void): void;
|
|
178
|
-
listBillEstimateLineItems(args: ListBillEstimateLineItemsCommandInput, options:
|
|
184
|
+
listBillEstimateLineItems(args: ListBillEstimateLineItemsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void): void;
|
|
179
185
|
/**
|
|
180
186
|
* @see {@link ListBillEstimatesCommand}
|
|
181
187
|
*/
|
|
182
188
|
listBillEstimates(): Promise<ListBillEstimatesCommandOutput>;
|
|
183
|
-
listBillEstimates(args: ListBillEstimatesCommandInput, options?:
|
|
189
|
+
listBillEstimates(args: ListBillEstimatesCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillEstimatesCommandOutput>;
|
|
184
190
|
listBillEstimates(args: ListBillEstimatesCommandInput, cb: (err: any, data?: ListBillEstimatesCommandOutput) => void): void;
|
|
185
|
-
listBillEstimates(args: ListBillEstimatesCommandInput, options:
|
|
191
|
+
listBillEstimates(args: ListBillEstimatesCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillEstimatesCommandOutput) => void): void;
|
|
186
192
|
/**
|
|
187
193
|
* @see {@link ListBillScenarioCommitmentModificationsCommand}
|
|
188
194
|
*/
|
|
189
|
-
listBillScenarioCommitmentModifications(args: ListBillScenarioCommitmentModificationsCommandInput, options?:
|
|
195
|
+
listBillScenarioCommitmentModifications(args: ListBillScenarioCommitmentModificationsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillScenarioCommitmentModificationsCommandOutput>;
|
|
190
196
|
listBillScenarioCommitmentModifications(args: ListBillScenarioCommitmentModificationsCommandInput, cb: (err: any, data?: ListBillScenarioCommitmentModificationsCommandOutput) => void): void;
|
|
191
|
-
listBillScenarioCommitmentModifications(args: ListBillScenarioCommitmentModificationsCommandInput, options:
|
|
197
|
+
listBillScenarioCommitmentModifications(args: ListBillScenarioCommitmentModificationsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillScenarioCommitmentModificationsCommandOutput) => void): void;
|
|
192
198
|
/**
|
|
193
199
|
* @see {@link ListBillScenariosCommand}
|
|
194
200
|
*/
|
|
195
201
|
listBillScenarios(): Promise<ListBillScenariosCommandOutput>;
|
|
196
|
-
listBillScenarios(args: ListBillScenariosCommandInput, options?:
|
|
202
|
+
listBillScenarios(args: ListBillScenariosCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillScenariosCommandOutput>;
|
|
197
203
|
listBillScenarios(args: ListBillScenariosCommandInput, cb: (err: any, data?: ListBillScenariosCommandOutput) => void): void;
|
|
198
|
-
listBillScenarios(args: ListBillScenariosCommandInput, options:
|
|
204
|
+
listBillScenarios(args: ListBillScenariosCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillScenariosCommandOutput) => void): void;
|
|
199
205
|
/**
|
|
200
206
|
* @see {@link ListBillScenarioUsageModificationsCommand}
|
|
201
207
|
*/
|
|
202
|
-
listBillScenarioUsageModifications(args: ListBillScenarioUsageModificationsCommandInput, options?:
|
|
208
|
+
listBillScenarioUsageModifications(args: ListBillScenarioUsageModificationsCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListBillScenarioUsageModificationsCommandOutput>;
|
|
203
209
|
listBillScenarioUsageModifications(args: ListBillScenarioUsageModificationsCommandInput, cb: (err: any, data?: ListBillScenarioUsageModificationsCommandOutput) => void): void;
|
|
204
|
-
listBillScenarioUsageModifications(args: ListBillScenarioUsageModificationsCommandInput, options:
|
|
210
|
+
listBillScenarioUsageModifications(args: ListBillScenarioUsageModificationsCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListBillScenarioUsageModificationsCommandOutput) => void): void;
|
|
205
211
|
/**
|
|
206
212
|
* @see {@link ListTagsForResourceCommand}
|
|
207
213
|
*/
|
|
208
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?:
|
|
214
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
209
215
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
210
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options:
|
|
216
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
211
217
|
/**
|
|
212
218
|
* @see {@link ListWorkloadEstimatesCommand}
|
|
213
219
|
*/
|
|
214
220
|
listWorkloadEstimates(): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
215
|
-
listWorkloadEstimates(args: ListWorkloadEstimatesCommandInput, options?:
|
|
221
|
+
listWorkloadEstimates(args: ListWorkloadEstimatesCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
216
222
|
listWorkloadEstimates(args: ListWorkloadEstimatesCommandInput, cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void): void;
|
|
217
|
-
listWorkloadEstimates(args: ListWorkloadEstimatesCommandInput, options:
|
|
223
|
+
listWorkloadEstimates(args: ListWorkloadEstimatesCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void): void;
|
|
218
224
|
/**
|
|
219
225
|
* @see {@link ListWorkloadEstimateUsageCommand}
|
|
220
226
|
*/
|
|
221
|
-
listWorkloadEstimateUsage(args: ListWorkloadEstimateUsageCommandInput, options?:
|
|
227
|
+
listWorkloadEstimateUsage(args: ListWorkloadEstimateUsageCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<ListWorkloadEstimateUsageCommandOutput>;
|
|
222
228
|
listWorkloadEstimateUsage(args: ListWorkloadEstimateUsageCommandInput, cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void): void;
|
|
223
|
-
listWorkloadEstimateUsage(args: ListWorkloadEstimateUsageCommandInput, options:
|
|
229
|
+
listWorkloadEstimateUsage(args: ListWorkloadEstimateUsageCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void): void;
|
|
224
230
|
/**
|
|
225
231
|
* @see {@link TagResourceCommand}
|
|
226
232
|
*/
|
|
227
|
-
tagResource(args: TagResourceCommandInput, options?:
|
|
233
|
+
tagResource(args: TagResourceCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<TagResourceCommandOutput>;
|
|
228
234
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
229
|
-
tagResource(args: TagResourceCommandInput, options:
|
|
235
|
+
tagResource(args: TagResourceCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
230
236
|
/**
|
|
231
237
|
* @see {@link UntagResourceCommand}
|
|
232
238
|
*/
|
|
233
|
-
untagResource(args: UntagResourceCommandInput, options?:
|
|
239
|
+
untagResource(args: UntagResourceCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<UntagResourceCommandOutput>;
|
|
234
240
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
235
|
-
untagResource(args: UntagResourceCommandInput, options:
|
|
241
|
+
untagResource(args: UntagResourceCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
236
242
|
/**
|
|
237
243
|
* @see {@link UpdateBillEstimateCommand}
|
|
238
244
|
*/
|
|
239
|
-
updateBillEstimate(args: UpdateBillEstimateCommandInput, options?:
|
|
245
|
+
updateBillEstimate(args: UpdateBillEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<UpdateBillEstimateCommandOutput>;
|
|
240
246
|
updateBillEstimate(args: UpdateBillEstimateCommandInput, cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void): void;
|
|
241
|
-
updateBillEstimate(args: UpdateBillEstimateCommandInput, options:
|
|
247
|
+
updateBillEstimate(args: UpdateBillEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void): void;
|
|
242
248
|
/**
|
|
243
249
|
* @see {@link UpdateBillScenarioCommand}
|
|
244
250
|
*/
|
|
245
|
-
updateBillScenario(args: UpdateBillScenarioCommandInput, options?:
|
|
251
|
+
updateBillScenario(args: UpdateBillScenarioCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<UpdateBillScenarioCommandOutput>;
|
|
246
252
|
updateBillScenario(args: UpdateBillScenarioCommandInput, cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void): void;
|
|
247
|
-
updateBillScenario(args: UpdateBillScenarioCommandInput, options:
|
|
253
|
+
updateBillScenario(args: UpdateBillScenarioCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void): void;
|
|
248
254
|
/**
|
|
249
255
|
* @see {@link UpdatePreferencesCommand}
|
|
250
256
|
*/
|
|
251
257
|
updatePreferences(): Promise<UpdatePreferencesCommandOutput>;
|
|
252
|
-
updatePreferences(args: UpdatePreferencesCommandInput, options?:
|
|
258
|
+
updatePreferences(args: UpdatePreferencesCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<UpdatePreferencesCommandOutput>;
|
|
253
259
|
updatePreferences(args: UpdatePreferencesCommandInput, cb: (err: any, data?: UpdatePreferencesCommandOutput) => void): void;
|
|
254
|
-
updatePreferences(args: UpdatePreferencesCommandInput, options:
|
|
260
|
+
updatePreferences(args: UpdatePreferencesCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: UpdatePreferencesCommandOutput) => void): void;
|
|
255
261
|
/**
|
|
256
262
|
* @see {@link UpdateWorkloadEstimateCommand}
|
|
257
263
|
*/
|
|
258
|
-
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, options?:
|
|
264
|
+
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, options?: BCMPricingCalculatorRequestOptions): Promise<UpdateWorkloadEstimateCommandOutput>;
|
|
259
265
|
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void): void;
|
|
260
|
-
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, options:
|
|
266
|
+
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, options: BCMPricingCalculatorRequestOptions, cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void): void;
|
|
261
267
|
/**
|
|
262
268
|
* @see {@link ListBillEstimateCommitmentsCommand}
|
|
263
269
|
* @param args - command input.
|
|
@@ -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";
|
|
@@ -145,10 +146,13 @@ import {
|
|
|
145
146
|
UpdateWorkloadEstimateCommandInput,
|
|
146
147
|
UpdateWorkloadEstimateCommandOutput,
|
|
147
148
|
} from "./commands/UpdateWorkloadEstimateCommand";
|
|
149
|
+
export interface BCMPricingCalculatorRequestOptions extends __HttpHandlerOptions {
|
|
150
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
151
|
+
}
|
|
148
152
|
export interface BCMPricingCalculator {
|
|
149
153
|
batchCreateBillScenarioCommitmentModification(
|
|
150
154
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
151
|
-
options?:
|
|
155
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
152
156
|
): Promise<BatchCreateBillScenarioCommitmentModificationCommandOutput>;
|
|
153
157
|
batchCreateBillScenarioCommitmentModification(
|
|
154
158
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
@@ -156,12 +160,12 @@ export interface BCMPricingCalculator {
|
|
|
156
160
|
): void;
|
|
157
161
|
batchCreateBillScenarioCommitmentModification(
|
|
158
162
|
args: BatchCreateBillScenarioCommitmentModificationCommandInput,
|
|
159
|
-
options:
|
|
163
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
160
164
|
cb: (err: any, data?: BatchCreateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
161
165
|
): void;
|
|
162
166
|
batchCreateBillScenarioUsageModification(
|
|
163
167
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
164
|
-
options?:
|
|
168
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
165
169
|
): Promise<BatchCreateBillScenarioUsageModificationCommandOutput>;
|
|
166
170
|
batchCreateBillScenarioUsageModification(
|
|
167
171
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
@@ -169,12 +173,12 @@ export interface BCMPricingCalculator {
|
|
|
169
173
|
): void;
|
|
170
174
|
batchCreateBillScenarioUsageModification(
|
|
171
175
|
args: BatchCreateBillScenarioUsageModificationCommandInput,
|
|
172
|
-
options:
|
|
176
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
173
177
|
cb: (err: any, data?: BatchCreateBillScenarioUsageModificationCommandOutput) => void,
|
|
174
178
|
): void;
|
|
175
179
|
batchCreateWorkloadEstimateUsage(
|
|
176
180
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
177
|
-
options?:
|
|
181
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
178
182
|
): Promise<BatchCreateWorkloadEstimateUsageCommandOutput>;
|
|
179
183
|
batchCreateWorkloadEstimateUsage(
|
|
180
184
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
@@ -182,12 +186,12 @@ export interface BCMPricingCalculator {
|
|
|
182
186
|
): void;
|
|
183
187
|
batchCreateWorkloadEstimateUsage(
|
|
184
188
|
args: BatchCreateWorkloadEstimateUsageCommandInput,
|
|
185
|
-
options:
|
|
189
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
186
190
|
cb: (err: any, data?: BatchCreateWorkloadEstimateUsageCommandOutput) => void,
|
|
187
191
|
): void;
|
|
188
192
|
batchDeleteBillScenarioCommitmentModification(
|
|
189
193
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
190
|
-
options?:
|
|
194
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
191
195
|
): Promise<BatchDeleteBillScenarioCommitmentModificationCommandOutput>;
|
|
192
196
|
batchDeleteBillScenarioCommitmentModification(
|
|
193
197
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
@@ -195,12 +199,12 @@ export interface BCMPricingCalculator {
|
|
|
195
199
|
): void;
|
|
196
200
|
batchDeleteBillScenarioCommitmentModification(
|
|
197
201
|
args: BatchDeleteBillScenarioCommitmentModificationCommandInput,
|
|
198
|
-
options:
|
|
202
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
199
203
|
cb: (err: any, data?: BatchDeleteBillScenarioCommitmentModificationCommandOutput) => void,
|
|
200
204
|
): void;
|
|
201
205
|
batchDeleteBillScenarioUsageModification(
|
|
202
206
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
203
|
-
options?:
|
|
207
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
204
208
|
): Promise<BatchDeleteBillScenarioUsageModificationCommandOutput>;
|
|
205
209
|
batchDeleteBillScenarioUsageModification(
|
|
206
210
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
@@ -208,12 +212,12 @@ export interface BCMPricingCalculator {
|
|
|
208
212
|
): void;
|
|
209
213
|
batchDeleteBillScenarioUsageModification(
|
|
210
214
|
args: BatchDeleteBillScenarioUsageModificationCommandInput,
|
|
211
|
-
options:
|
|
215
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
212
216
|
cb: (err: any, data?: BatchDeleteBillScenarioUsageModificationCommandOutput) => void,
|
|
213
217
|
): void;
|
|
214
218
|
batchDeleteWorkloadEstimateUsage(
|
|
215
219
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
216
|
-
options?:
|
|
220
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
217
221
|
): Promise<BatchDeleteWorkloadEstimateUsageCommandOutput>;
|
|
218
222
|
batchDeleteWorkloadEstimateUsage(
|
|
219
223
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
@@ -221,12 +225,12 @@ export interface BCMPricingCalculator {
|
|
|
221
225
|
): void;
|
|
222
226
|
batchDeleteWorkloadEstimateUsage(
|
|
223
227
|
args: BatchDeleteWorkloadEstimateUsageCommandInput,
|
|
224
|
-
options:
|
|
228
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
225
229
|
cb: (err: any, data?: BatchDeleteWorkloadEstimateUsageCommandOutput) => void,
|
|
226
230
|
): void;
|
|
227
231
|
batchUpdateBillScenarioCommitmentModification(
|
|
228
232
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
229
|
-
options?:
|
|
233
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
230
234
|
): Promise<BatchUpdateBillScenarioCommitmentModificationCommandOutput>;
|
|
231
235
|
batchUpdateBillScenarioCommitmentModification(
|
|
232
236
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
@@ -234,12 +238,12 @@ export interface BCMPricingCalculator {
|
|
|
234
238
|
): void;
|
|
235
239
|
batchUpdateBillScenarioCommitmentModification(
|
|
236
240
|
args: BatchUpdateBillScenarioCommitmentModificationCommandInput,
|
|
237
|
-
options:
|
|
241
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
238
242
|
cb: (err: any, data?: BatchUpdateBillScenarioCommitmentModificationCommandOutput) => void,
|
|
239
243
|
): void;
|
|
240
244
|
batchUpdateBillScenarioUsageModification(
|
|
241
245
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
242
|
-
options?:
|
|
246
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
243
247
|
): Promise<BatchUpdateBillScenarioUsageModificationCommandOutput>;
|
|
244
248
|
batchUpdateBillScenarioUsageModification(
|
|
245
249
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
@@ -247,12 +251,12 @@ export interface BCMPricingCalculator {
|
|
|
247
251
|
): void;
|
|
248
252
|
batchUpdateBillScenarioUsageModification(
|
|
249
253
|
args: BatchUpdateBillScenarioUsageModificationCommandInput,
|
|
250
|
-
options:
|
|
254
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
251
255
|
cb: (err: any, data?: BatchUpdateBillScenarioUsageModificationCommandOutput) => void,
|
|
252
256
|
): void;
|
|
253
257
|
batchUpdateWorkloadEstimateUsage(
|
|
254
258
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
255
|
-
options?:
|
|
259
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
256
260
|
): Promise<BatchUpdateWorkloadEstimateUsageCommandOutput>;
|
|
257
261
|
batchUpdateWorkloadEstimateUsage(
|
|
258
262
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
@@ -260,12 +264,12 @@ export interface BCMPricingCalculator {
|
|
|
260
264
|
): void;
|
|
261
265
|
batchUpdateWorkloadEstimateUsage(
|
|
262
266
|
args: BatchUpdateWorkloadEstimateUsageCommandInput,
|
|
263
|
-
options:
|
|
267
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
264
268
|
cb: (err: any, data?: BatchUpdateWorkloadEstimateUsageCommandOutput) => void,
|
|
265
269
|
): void;
|
|
266
270
|
createBillEstimate(
|
|
267
271
|
args: CreateBillEstimateCommandInput,
|
|
268
|
-
options?:
|
|
272
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
269
273
|
): Promise<CreateBillEstimateCommandOutput>;
|
|
270
274
|
createBillEstimate(
|
|
271
275
|
args: CreateBillEstimateCommandInput,
|
|
@@ -273,12 +277,12 @@ export interface BCMPricingCalculator {
|
|
|
273
277
|
): void;
|
|
274
278
|
createBillEstimate(
|
|
275
279
|
args: CreateBillEstimateCommandInput,
|
|
276
|
-
options:
|
|
280
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
277
281
|
cb: (err: any, data?: CreateBillEstimateCommandOutput) => void,
|
|
278
282
|
): void;
|
|
279
283
|
createBillScenario(
|
|
280
284
|
args: CreateBillScenarioCommandInput,
|
|
281
|
-
options?:
|
|
285
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
282
286
|
): Promise<CreateBillScenarioCommandOutput>;
|
|
283
287
|
createBillScenario(
|
|
284
288
|
args: CreateBillScenarioCommandInput,
|
|
@@ -286,12 +290,12 @@ export interface BCMPricingCalculator {
|
|
|
286
290
|
): void;
|
|
287
291
|
createBillScenario(
|
|
288
292
|
args: CreateBillScenarioCommandInput,
|
|
289
|
-
options:
|
|
293
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
290
294
|
cb: (err: any, data?: CreateBillScenarioCommandOutput) => void,
|
|
291
295
|
): void;
|
|
292
296
|
createWorkloadEstimate(
|
|
293
297
|
args: CreateWorkloadEstimateCommandInput,
|
|
294
|
-
options?:
|
|
298
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
295
299
|
): Promise<CreateWorkloadEstimateCommandOutput>;
|
|
296
300
|
createWorkloadEstimate(
|
|
297
301
|
args: CreateWorkloadEstimateCommandInput,
|
|
@@ -299,12 +303,12 @@ export interface BCMPricingCalculator {
|
|
|
299
303
|
): void;
|
|
300
304
|
createWorkloadEstimate(
|
|
301
305
|
args: CreateWorkloadEstimateCommandInput,
|
|
302
|
-
options:
|
|
306
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
303
307
|
cb: (err: any, data?: CreateWorkloadEstimateCommandOutput) => void,
|
|
304
308
|
): void;
|
|
305
309
|
deleteBillEstimate(
|
|
306
310
|
args: DeleteBillEstimateCommandInput,
|
|
307
|
-
options?:
|
|
311
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
308
312
|
): Promise<DeleteBillEstimateCommandOutput>;
|
|
309
313
|
deleteBillEstimate(
|
|
310
314
|
args: DeleteBillEstimateCommandInput,
|
|
@@ -312,12 +316,12 @@ export interface BCMPricingCalculator {
|
|
|
312
316
|
): void;
|
|
313
317
|
deleteBillEstimate(
|
|
314
318
|
args: DeleteBillEstimateCommandInput,
|
|
315
|
-
options:
|
|
319
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
316
320
|
cb: (err: any, data?: DeleteBillEstimateCommandOutput) => void,
|
|
317
321
|
): void;
|
|
318
322
|
deleteBillScenario(
|
|
319
323
|
args: DeleteBillScenarioCommandInput,
|
|
320
|
-
options?:
|
|
324
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
321
325
|
): Promise<DeleteBillScenarioCommandOutput>;
|
|
322
326
|
deleteBillScenario(
|
|
323
327
|
args: DeleteBillScenarioCommandInput,
|
|
@@ -325,12 +329,12 @@ export interface BCMPricingCalculator {
|
|
|
325
329
|
): void;
|
|
326
330
|
deleteBillScenario(
|
|
327
331
|
args: DeleteBillScenarioCommandInput,
|
|
328
|
-
options:
|
|
332
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
329
333
|
cb: (err: any, data?: DeleteBillScenarioCommandOutput) => void,
|
|
330
334
|
): void;
|
|
331
335
|
deleteWorkloadEstimate(
|
|
332
336
|
args: DeleteWorkloadEstimateCommandInput,
|
|
333
|
-
options?:
|
|
337
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
334
338
|
): Promise<DeleteWorkloadEstimateCommandOutput>;
|
|
335
339
|
deleteWorkloadEstimate(
|
|
336
340
|
args: DeleteWorkloadEstimateCommandInput,
|
|
@@ -338,12 +342,12 @@ export interface BCMPricingCalculator {
|
|
|
338
342
|
): void;
|
|
339
343
|
deleteWorkloadEstimate(
|
|
340
344
|
args: DeleteWorkloadEstimateCommandInput,
|
|
341
|
-
options:
|
|
345
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
342
346
|
cb: (err: any, data?: DeleteWorkloadEstimateCommandOutput) => void,
|
|
343
347
|
): void;
|
|
344
348
|
getBillEstimate(
|
|
345
349
|
args: GetBillEstimateCommandInput,
|
|
346
|
-
options?:
|
|
350
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
347
351
|
): Promise<GetBillEstimateCommandOutput>;
|
|
348
352
|
getBillEstimate(
|
|
349
353
|
args: GetBillEstimateCommandInput,
|
|
@@ -351,12 +355,12 @@ export interface BCMPricingCalculator {
|
|
|
351
355
|
): void;
|
|
352
356
|
getBillEstimate(
|
|
353
357
|
args: GetBillEstimateCommandInput,
|
|
354
|
-
options:
|
|
358
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
355
359
|
cb: (err: any, data?: GetBillEstimateCommandOutput) => void,
|
|
356
360
|
): void;
|
|
357
361
|
getBillScenario(
|
|
358
362
|
args: GetBillScenarioCommandInput,
|
|
359
|
-
options?:
|
|
363
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
360
364
|
): Promise<GetBillScenarioCommandOutput>;
|
|
361
365
|
getBillScenario(
|
|
362
366
|
args: GetBillScenarioCommandInput,
|
|
@@ -364,13 +368,13 @@ export interface BCMPricingCalculator {
|
|
|
364
368
|
): void;
|
|
365
369
|
getBillScenario(
|
|
366
370
|
args: GetBillScenarioCommandInput,
|
|
367
|
-
options:
|
|
371
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
368
372
|
cb: (err: any, data?: GetBillScenarioCommandOutput) => void,
|
|
369
373
|
): void;
|
|
370
374
|
getPreferences(): Promise<GetPreferencesCommandOutput>;
|
|
371
375
|
getPreferences(
|
|
372
376
|
args: GetPreferencesCommandInput,
|
|
373
|
-
options?:
|
|
377
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
374
378
|
): Promise<GetPreferencesCommandOutput>;
|
|
375
379
|
getPreferences(
|
|
376
380
|
args: GetPreferencesCommandInput,
|
|
@@ -378,12 +382,12 @@ export interface BCMPricingCalculator {
|
|
|
378
382
|
): void;
|
|
379
383
|
getPreferences(
|
|
380
384
|
args: GetPreferencesCommandInput,
|
|
381
|
-
options:
|
|
385
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
382
386
|
cb: (err: any, data?: GetPreferencesCommandOutput) => void,
|
|
383
387
|
): void;
|
|
384
388
|
getWorkloadEstimate(
|
|
385
389
|
args: GetWorkloadEstimateCommandInput,
|
|
386
|
-
options?:
|
|
390
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
387
391
|
): Promise<GetWorkloadEstimateCommandOutput>;
|
|
388
392
|
getWorkloadEstimate(
|
|
389
393
|
args: GetWorkloadEstimateCommandInput,
|
|
@@ -391,12 +395,12 @@ export interface BCMPricingCalculator {
|
|
|
391
395
|
): void;
|
|
392
396
|
getWorkloadEstimate(
|
|
393
397
|
args: GetWorkloadEstimateCommandInput,
|
|
394
|
-
options:
|
|
398
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
395
399
|
cb: (err: any, data?: GetWorkloadEstimateCommandOutput) => void,
|
|
396
400
|
): void;
|
|
397
401
|
listBillEstimateCommitments(
|
|
398
402
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
399
|
-
options?:
|
|
403
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
400
404
|
): Promise<ListBillEstimateCommitmentsCommandOutput>;
|
|
401
405
|
listBillEstimateCommitments(
|
|
402
406
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
@@ -404,12 +408,12 @@ export interface BCMPricingCalculator {
|
|
|
404
408
|
): void;
|
|
405
409
|
listBillEstimateCommitments(
|
|
406
410
|
args: ListBillEstimateCommitmentsCommandInput,
|
|
407
|
-
options:
|
|
411
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
408
412
|
cb: (err: any, data?: ListBillEstimateCommitmentsCommandOutput) => void,
|
|
409
413
|
): void;
|
|
410
414
|
listBillEstimateInputCommitmentModifications(
|
|
411
415
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
412
|
-
options?:
|
|
416
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
413
417
|
): Promise<ListBillEstimateInputCommitmentModificationsCommandOutput>;
|
|
414
418
|
listBillEstimateInputCommitmentModifications(
|
|
415
419
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
@@ -417,12 +421,12 @@ export interface BCMPricingCalculator {
|
|
|
417
421
|
): void;
|
|
418
422
|
listBillEstimateInputCommitmentModifications(
|
|
419
423
|
args: ListBillEstimateInputCommitmentModificationsCommandInput,
|
|
420
|
-
options:
|
|
424
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
421
425
|
cb: (err: any, data?: ListBillEstimateInputCommitmentModificationsCommandOutput) => void,
|
|
422
426
|
): void;
|
|
423
427
|
listBillEstimateInputUsageModifications(
|
|
424
428
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
425
|
-
options?:
|
|
429
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
426
430
|
): Promise<ListBillEstimateInputUsageModificationsCommandOutput>;
|
|
427
431
|
listBillEstimateInputUsageModifications(
|
|
428
432
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
@@ -430,12 +434,12 @@ export interface BCMPricingCalculator {
|
|
|
430
434
|
): void;
|
|
431
435
|
listBillEstimateInputUsageModifications(
|
|
432
436
|
args: ListBillEstimateInputUsageModificationsCommandInput,
|
|
433
|
-
options:
|
|
437
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
434
438
|
cb: (err: any, data?: ListBillEstimateInputUsageModificationsCommandOutput) => void,
|
|
435
439
|
): void;
|
|
436
440
|
listBillEstimateLineItems(
|
|
437
441
|
args: ListBillEstimateLineItemsCommandInput,
|
|
438
|
-
options?:
|
|
442
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
439
443
|
): Promise<ListBillEstimateLineItemsCommandOutput>;
|
|
440
444
|
listBillEstimateLineItems(
|
|
441
445
|
args: ListBillEstimateLineItemsCommandInput,
|
|
@@ -443,13 +447,13 @@ export interface BCMPricingCalculator {
|
|
|
443
447
|
): void;
|
|
444
448
|
listBillEstimateLineItems(
|
|
445
449
|
args: ListBillEstimateLineItemsCommandInput,
|
|
446
|
-
options:
|
|
450
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
447
451
|
cb: (err: any, data?: ListBillEstimateLineItemsCommandOutput) => void,
|
|
448
452
|
): void;
|
|
449
453
|
listBillEstimates(): Promise<ListBillEstimatesCommandOutput>;
|
|
450
454
|
listBillEstimates(
|
|
451
455
|
args: ListBillEstimatesCommandInput,
|
|
452
|
-
options?:
|
|
456
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
453
457
|
): Promise<ListBillEstimatesCommandOutput>;
|
|
454
458
|
listBillEstimates(
|
|
455
459
|
args: ListBillEstimatesCommandInput,
|
|
@@ -457,12 +461,12 @@ export interface BCMPricingCalculator {
|
|
|
457
461
|
): void;
|
|
458
462
|
listBillEstimates(
|
|
459
463
|
args: ListBillEstimatesCommandInput,
|
|
460
|
-
options:
|
|
464
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
461
465
|
cb: (err: any, data?: ListBillEstimatesCommandOutput) => void,
|
|
462
466
|
): void;
|
|
463
467
|
listBillScenarioCommitmentModifications(
|
|
464
468
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
465
|
-
options?:
|
|
469
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
466
470
|
): Promise<ListBillScenarioCommitmentModificationsCommandOutput>;
|
|
467
471
|
listBillScenarioCommitmentModifications(
|
|
468
472
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
@@ -470,13 +474,13 @@ export interface BCMPricingCalculator {
|
|
|
470
474
|
): void;
|
|
471
475
|
listBillScenarioCommitmentModifications(
|
|
472
476
|
args: ListBillScenarioCommitmentModificationsCommandInput,
|
|
473
|
-
options:
|
|
477
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
474
478
|
cb: (err: any, data?: ListBillScenarioCommitmentModificationsCommandOutput) => void,
|
|
475
479
|
): void;
|
|
476
480
|
listBillScenarios(): Promise<ListBillScenariosCommandOutput>;
|
|
477
481
|
listBillScenarios(
|
|
478
482
|
args: ListBillScenariosCommandInput,
|
|
479
|
-
options?:
|
|
483
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
480
484
|
): Promise<ListBillScenariosCommandOutput>;
|
|
481
485
|
listBillScenarios(
|
|
482
486
|
args: ListBillScenariosCommandInput,
|
|
@@ -484,12 +488,12 @@ export interface BCMPricingCalculator {
|
|
|
484
488
|
): void;
|
|
485
489
|
listBillScenarios(
|
|
486
490
|
args: ListBillScenariosCommandInput,
|
|
487
|
-
options:
|
|
491
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
488
492
|
cb: (err: any, data?: ListBillScenariosCommandOutput) => void,
|
|
489
493
|
): void;
|
|
490
494
|
listBillScenarioUsageModifications(
|
|
491
495
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
492
|
-
options?:
|
|
496
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
493
497
|
): Promise<ListBillScenarioUsageModificationsCommandOutput>;
|
|
494
498
|
listBillScenarioUsageModifications(
|
|
495
499
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
@@ -497,12 +501,12 @@ export interface BCMPricingCalculator {
|
|
|
497
501
|
): void;
|
|
498
502
|
listBillScenarioUsageModifications(
|
|
499
503
|
args: ListBillScenarioUsageModificationsCommandInput,
|
|
500
|
-
options:
|
|
504
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
501
505
|
cb: (err: any, data?: ListBillScenarioUsageModificationsCommandOutput) => void,
|
|
502
506
|
): void;
|
|
503
507
|
listTagsForResource(
|
|
504
508
|
args: ListTagsForResourceCommandInput,
|
|
505
|
-
options?:
|
|
509
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
506
510
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
507
511
|
listTagsForResource(
|
|
508
512
|
args: ListTagsForResourceCommandInput,
|
|
@@ -510,13 +514,13 @@ export interface BCMPricingCalculator {
|
|
|
510
514
|
): void;
|
|
511
515
|
listTagsForResource(
|
|
512
516
|
args: ListTagsForResourceCommandInput,
|
|
513
|
-
options:
|
|
517
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
514
518
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
515
519
|
): void;
|
|
516
520
|
listWorkloadEstimates(): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
517
521
|
listWorkloadEstimates(
|
|
518
522
|
args: ListWorkloadEstimatesCommandInput,
|
|
519
|
-
options?:
|
|
523
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
520
524
|
): Promise<ListWorkloadEstimatesCommandOutput>;
|
|
521
525
|
listWorkloadEstimates(
|
|
522
526
|
args: ListWorkloadEstimatesCommandInput,
|
|
@@ -524,12 +528,12 @@ export interface BCMPricingCalculator {
|
|
|
524
528
|
): void;
|
|
525
529
|
listWorkloadEstimates(
|
|
526
530
|
args: ListWorkloadEstimatesCommandInput,
|
|
527
|
-
options:
|
|
531
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
528
532
|
cb: (err: any, data?: ListWorkloadEstimatesCommandOutput) => void,
|
|
529
533
|
): void;
|
|
530
534
|
listWorkloadEstimateUsage(
|
|
531
535
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
532
|
-
options?:
|
|
536
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
533
537
|
): Promise<ListWorkloadEstimateUsageCommandOutput>;
|
|
534
538
|
listWorkloadEstimateUsage(
|
|
535
539
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
@@ -537,12 +541,12 @@ export interface BCMPricingCalculator {
|
|
|
537
541
|
): void;
|
|
538
542
|
listWorkloadEstimateUsage(
|
|
539
543
|
args: ListWorkloadEstimateUsageCommandInput,
|
|
540
|
-
options:
|
|
544
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
541
545
|
cb: (err: any, data?: ListWorkloadEstimateUsageCommandOutput) => void,
|
|
542
546
|
): void;
|
|
543
547
|
tagResource(
|
|
544
548
|
args: TagResourceCommandInput,
|
|
545
|
-
options?:
|
|
549
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
546
550
|
): Promise<TagResourceCommandOutput>;
|
|
547
551
|
tagResource(
|
|
548
552
|
args: TagResourceCommandInput,
|
|
@@ -550,12 +554,12 @@ export interface BCMPricingCalculator {
|
|
|
550
554
|
): void;
|
|
551
555
|
tagResource(
|
|
552
556
|
args: TagResourceCommandInput,
|
|
553
|
-
options:
|
|
557
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
554
558
|
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
555
559
|
): void;
|
|
556
560
|
untagResource(
|
|
557
561
|
args: UntagResourceCommandInput,
|
|
558
|
-
options?:
|
|
562
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
559
563
|
): Promise<UntagResourceCommandOutput>;
|
|
560
564
|
untagResource(
|
|
561
565
|
args: UntagResourceCommandInput,
|
|
@@ -563,12 +567,12 @@ export interface BCMPricingCalculator {
|
|
|
563
567
|
): void;
|
|
564
568
|
untagResource(
|
|
565
569
|
args: UntagResourceCommandInput,
|
|
566
|
-
options:
|
|
570
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
567
571
|
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
568
572
|
): void;
|
|
569
573
|
updateBillEstimate(
|
|
570
574
|
args: UpdateBillEstimateCommandInput,
|
|
571
|
-
options?:
|
|
575
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
572
576
|
): Promise<UpdateBillEstimateCommandOutput>;
|
|
573
577
|
updateBillEstimate(
|
|
574
578
|
args: UpdateBillEstimateCommandInput,
|
|
@@ -576,12 +580,12 @@ export interface BCMPricingCalculator {
|
|
|
576
580
|
): void;
|
|
577
581
|
updateBillEstimate(
|
|
578
582
|
args: UpdateBillEstimateCommandInput,
|
|
579
|
-
options:
|
|
583
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
580
584
|
cb: (err: any, data?: UpdateBillEstimateCommandOutput) => void,
|
|
581
585
|
): void;
|
|
582
586
|
updateBillScenario(
|
|
583
587
|
args: UpdateBillScenarioCommandInput,
|
|
584
|
-
options?:
|
|
588
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
585
589
|
): Promise<UpdateBillScenarioCommandOutput>;
|
|
586
590
|
updateBillScenario(
|
|
587
591
|
args: UpdateBillScenarioCommandInput,
|
|
@@ -589,13 +593,13 @@ export interface BCMPricingCalculator {
|
|
|
589
593
|
): void;
|
|
590
594
|
updateBillScenario(
|
|
591
595
|
args: UpdateBillScenarioCommandInput,
|
|
592
|
-
options:
|
|
596
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
593
597
|
cb: (err: any, data?: UpdateBillScenarioCommandOutput) => void,
|
|
594
598
|
): void;
|
|
595
599
|
updatePreferences(): Promise<UpdatePreferencesCommandOutput>;
|
|
596
600
|
updatePreferences(
|
|
597
601
|
args: UpdatePreferencesCommandInput,
|
|
598
|
-
options?:
|
|
602
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
599
603
|
): Promise<UpdatePreferencesCommandOutput>;
|
|
600
604
|
updatePreferences(
|
|
601
605
|
args: UpdatePreferencesCommandInput,
|
|
@@ -603,12 +607,12 @@ export interface BCMPricingCalculator {
|
|
|
603
607
|
): void;
|
|
604
608
|
updatePreferences(
|
|
605
609
|
args: UpdatePreferencesCommandInput,
|
|
606
|
-
options:
|
|
610
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
607
611
|
cb: (err: any, data?: UpdatePreferencesCommandOutput) => void,
|
|
608
612
|
): void;
|
|
609
613
|
updateWorkloadEstimate(
|
|
610
614
|
args: UpdateWorkloadEstimateCommandInput,
|
|
611
|
-
options?:
|
|
615
|
+
options?: BCMPricingCalculatorRequestOptions,
|
|
612
616
|
): Promise<UpdateWorkloadEstimateCommandOutput>;
|
|
613
617
|
updateWorkloadEstimate(
|
|
614
618
|
args: UpdateWorkloadEstimateCommandInput,
|
|
@@ -616,7 +620,7 @@ export interface BCMPricingCalculator {
|
|
|
616
620
|
): void;
|
|
617
621
|
updateWorkloadEstimate(
|
|
618
622
|
args: UpdateWorkloadEstimateCommandInput,
|
|
619
|
-
options:
|
|
623
|
+
options: BCMPricingCalculatorRequestOptions,
|
|
620
624
|
cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void,
|
|
621
625
|
): void;
|
|
622
626
|
paginateListBillEstimateCommitments(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-pricing-calculator",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1138.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Bcm Pricing Calculator Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bcm-pricing-calculator",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.978.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
51
|
-
"@aws-sdk/types": "^3.974.
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.
|
|
54
|
-
"@smithy/node-http-handler": "^4.
|
|
55
|
-
"@smithy/types": "^4.
|
|
49
|
+
"@aws-sdk/core": "^3.978.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.84",
|
|
51
|
+
"@aws-sdk/types": "^3.974.6",
|
|
52
|
+
"@smithy/core": "^3.35.0",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.8.0",
|
|
54
|
+
"@smithy/node-http-handler": "^4.12.1",
|
|
55
|
+
"@smithy/types": "^4.19.0",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|