@aws-sdk/client-cost-explorer 3.1068.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +196 -216
- package/dist-cjs/models/CostExplorerServiceException.js +4 -8
- package/dist-cjs/models/errors.js +31 -49
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +605 -403
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultCostExplorerHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { CreateAnomalyMonitor$, CreateAnomalySubscription$, CreateCostCategoryDefinition$, DeleteAnomalyMonitor$, DeleteAnomalySubscription$, DeleteCostCategoryDefinition$, DescribeCostCategoryDefinition$, GetAnomalies$, GetAnomalyMonitors$, GetAnomalySubscriptions$, GetApproximateUsageRecords$, GetCommitmentPurchaseAnalysis$, GetCostAndUsage$, GetCostAndUsageComparisons$, GetCostAndUsageWithResources$, GetCostCategories$, GetCostComparisonDrivers$, GetCostForecast$, GetDimensionValues$, GetReservationCoverage$, GetReservationPurchaseRecommendation$, GetReservationUtilization$, GetRightsizingRecommendation$, GetSavingsPlanPurchaseRecommendationDetails$, GetSavingsPlansCoverage$, GetSavingsPlansPurchaseRecommendation$, GetSavingsPlansUtilization$, GetSavingsPlansUtilizationDetails$, GetTags$, GetUsageForecast$, ListCommitmentPurchaseAnalyses$, ListCostAllocationTagBackfillHistory$, ListCostAllocationTags$, ListCostCategoryDefinitions$, ListCostCategoryResourceAssociations$, ListSavingsPlansPurchaseRecommendationGeneration$, ListTagsForResource$, ProvideAnomalyFeedback$, StartCommitmentPurchaseAnalysis$, StartCostAllocationTagBackfill$, StartSavingsPlansPurchaseRecommendationGeneration$, TagResource$, UntagResource$, UpdateAnomalyMonitor$, UpdateAnomalySubscription$, UpdateCostAllocationTagsStatus$, UpdateCostCategoryDefinition$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { CostExplorerServiceException } = require("./models/CostExplorerServiceException");
|
|
18
|
+
exports.CostExplorerServiceException = CostExplorerServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,639 +71,639 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class CostExplorerClient extends
|
|
79
|
+
class CostExplorerClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultCostExplorerHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class CreateAnomalyMonitorCommand extends
|
|
114
|
+
class CreateAnomalyMonitorCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("AWSInsightsIndexService", "CreateAnomalyMonitor", {})
|
|
118
121
|
.n("CostExplorerClient", "CreateAnomalyMonitorCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(CreateAnomalyMonitor$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class CreateAnomalySubscriptionCommand extends
|
|
126
|
+
class CreateAnomalySubscriptionCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("AWSInsightsIndexService", "CreateAnomalySubscription", {})
|
|
130
133
|
.n("CostExplorerClient", "CreateAnomalySubscriptionCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(CreateAnomalySubscription$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class CreateCostCategoryDefinitionCommand extends
|
|
138
|
+
class CreateCostCategoryDefinitionCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("AWSInsightsIndexService", "CreateCostCategoryDefinition", {})
|
|
142
145
|
.n("CostExplorerClient", "CreateCostCategoryDefinitionCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(CreateCostCategoryDefinition$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class DeleteAnomalyMonitorCommand extends
|
|
150
|
+
class DeleteAnomalyMonitorCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("AWSInsightsIndexService", "DeleteAnomalyMonitor", {})
|
|
154
157
|
.n("CostExplorerClient", "DeleteAnomalyMonitorCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(DeleteAnomalyMonitor$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class DeleteAnomalySubscriptionCommand extends
|
|
162
|
+
class DeleteAnomalySubscriptionCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("AWSInsightsIndexService", "DeleteAnomalySubscription", {})
|
|
166
169
|
.n("CostExplorerClient", "DeleteAnomalySubscriptionCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(DeleteAnomalySubscription$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class DeleteCostCategoryDefinitionCommand extends
|
|
174
|
+
class DeleteCostCategoryDefinitionCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("AWSInsightsIndexService", "DeleteCostCategoryDefinition", {})
|
|
178
181
|
.n("CostExplorerClient", "DeleteCostCategoryDefinitionCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(DeleteCostCategoryDefinition$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class DescribeCostCategoryDefinitionCommand extends
|
|
186
|
+
class DescribeCostCategoryDefinitionCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("AWSInsightsIndexService", "DescribeCostCategoryDefinition", {})
|
|
190
193
|
.n("CostExplorerClient", "DescribeCostCategoryDefinitionCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(DescribeCostCategoryDefinition$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class GetAnomaliesCommand extends
|
|
198
|
+
class GetAnomaliesCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("AWSInsightsIndexService", "GetAnomalies", {})
|
|
202
205
|
.n("CostExplorerClient", "GetAnomaliesCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(GetAnomalies$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
class GetAnomalyMonitorsCommand extends
|
|
210
|
+
class GetAnomalyMonitorsCommand extends Command
|
|
208
211
|
.classBuilder()
|
|
209
212
|
.ep(commonParams)
|
|
210
213
|
.m(function (Command, cs, config, o) {
|
|
211
|
-
return [
|
|
214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
215
|
})
|
|
213
216
|
.s("AWSInsightsIndexService", "GetAnomalyMonitors", {})
|
|
214
217
|
.n("CostExplorerClient", "GetAnomalyMonitorsCommand")
|
|
215
|
-
.sc(
|
|
218
|
+
.sc(GetAnomalyMonitors$)
|
|
216
219
|
.build() {
|
|
217
220
|
}
|
|
218
221
|
|
|
219
|
-
class GetAnomalySubscriptionsCommand extends
|
|
222
|
+
class GetAnomalySubscriptionsCommand extends Command
|
|
220
223
|
.classBuilder()
|
|
221
224
|
.ep(commonParams)
|
|
222
225
|
.m(function (Command, cs, config, o) {
|
|
223
|
-
return [
|
|
226
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
227
|
})
|
|
225
228
|
.s("AWSInsightsIndexService", "GetAnomalySubscriptions", {})
|
|
226
229
|
.n("CostExplorerClient", "GetAnomalySubscriptionsCommand")
|
|
227
|
-
.sc(
|
|
230
|
+
.sc(GetAnomalySubscriptions$)
|
|
228
231
|
.build() {
|
|
229
232
|
}
|
|
230
233
|
|
|
231
|
-
class GetApproximateUsageRecordsCommand extends
|
|
234
|
+
class GetApproximateUsageRecordsCommand extends Command
|
|
232
235
|
.classBuilder()
|
|
233
236
|
.ep(commonParams)
|
|
234
237
|
.m(function (Command, cs, config, o) {
|
|
235
|
-
return [
|
|
238
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
236
239
|
})
|
|
237
240
|
.s("AWSInsightsIndexService", "GetApproximateUsageRecords", {})
|
|
238
241
|
.n("CostExplorerClient", "GetApproximateUsageRecordsCommand")
|
|
239
|
-
.sc(
|
|
242
|
+
.sc(GetApproximateUsageRecords$)
|
|
240
243
|
.build() {
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
class GetCommitmentPurchaseAnalysisCommand extends
|
|
246
|
+
class GetCommitmentPurchaseAnalysisCommand extends Command
|
|
244
247
|
.classBuilder()
|
|
245
248
|
.ep(commonParams)
|
|
246
249
|
.m(function (Command, cs, config, o) {
|
|
247
|
-
return [
|
|
250
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
248
251
|
})
|
|
249
252
|
.s("AWSInsightsIndexService", "GetCommitmentPurchaseAnalysis", {})
|
|
250
253
|
.n("CostExplorerClient", "GetCommitmentPurchaseAnalysisCommand")
|
|
251
|
-
.sc(
|
|
254
|
+
.sc(GetCommitmentPurchaseAnalysis$)
|
|
252
255
|
.build() {
|
|
253
256
|
}
|
|
254
257
|
|
|
255
|
-
class GetCostAndUsageCommand extends
|
|
258
|
+
class GetCostAndUsageCommand extends Command
|
|
256
259
|
.classBuilder()
|
|
257
260
|
.ep(commonParams)
|
|
258
261
|
.m(function (Command, cs, config, o) {
|
|
259
|
-
return [
|
|
262
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
260
263
|
})
|
|
261
264
|
.s("AWSInsightsIndexService", "GetCostAndUsage", {})
|
|
262
265
|
.n("CostExplorerClient", "GetCostAndUsageCommand")
|
|
263
|
-
.sc(
|
|
266
|
+
.sc(GetCostAndUsage$)
|
|
264
267
|
.build() {
|
|
265
268
|
}
|
|
266
269
|
|
|
267
|
-
class GetCostAndUsageComparisonsCommand extends
|
|
270
|
+
class GetCostAndUsageComparisonsCommand extends Command
|
|
268
271
|
.classBuilder()
|
|
269
272
|
.ep(commonParams)
|
|
270
273
|
.m(function (Command, cs, config, o) {
|
|
271
|
-
return [
|
|
274
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
275
|
})
|
|
273
276
|
.s("AWSInsightsIndexService", "GetCostAndUsageComparisons", {})
|
|
274
277
|
.n("CostExplorerClient", "GetCostAndUsageComparisonsCommand")
|
|
275
|
-
.sc(
|
|
278
|
+
.sc(GetCostAndUsageComparisons$)
|
|
276
279
|
.build() {
|
|
277
280
|
}
|
|
278
281
|
|
|
279
|
-
class GetCostAndUsageWithResourcesCommand extends
|
|
282
|
+
class GetCostAndUsageWithResourcesCommand extends Command
|
|
280
283
|
.classBuilder()
|
|
281
284
|
.ep(commonParams)
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
|
-
return [
|
|
286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
284
287
|
})
|
|
285
288
|
.s("AWSInsightsIndexService", "GetCostAndUsageWithResources", {})
|
|
286
289
|
.n("CostExplorerClient", "GetCostAndUsageWithResourcesCommand")
|
|
287
|
-
.sc(
|
|
290
|
+
.sc(GetCostAndUsageWithResources$)
|
|
288
291
|
.build() {
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
class GetCostCategoriesCommand extends
|
|
294
|
+
class GetCostCategoriesCommand extends Command
|
|
292
295
|
.classBuilder()
|
|
293
296
|
.ep(commonParams)
|
|
294
297
|
.m(function (Command, cs, config, o) {
|
|
295
|
-
return [
|
|
298
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
296
299
|
})
|
|
297
300
|
.s("AWSInsightsIndexService", "GetCostCategories", {})
|
|
298
301
|
.n("CostExplorerClient", "GetCostCategoriesCommand")
|
|
299
|
-
.sc(
|
|
302
|
+
.sc(GetCostCategories$)
|
|
300
303
|
.build() {
|
|
301
304
|
}
|
|
302
305
|
|
|
303
|
-
class GetCostComparisonDriversCommand extends
|
|
306
|
+
class GetCostComparisonDriversCommand extends Command
|
|
304
307
|
.classBuilder()
|
|
305
308
|
.ep(commonParams)
|
|
306
309
|
.m(function (Command, cs, config, o) {
|
|
307
|
-
return [
|
|
310
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
308
311
|
})
|
|
309
312
|
.s("AWSInsightsIndexService", "GetCostComparisonDrivers", {})
|
|
310
313
|
.n("CostExplorerClient", "GetCostComparisonDriversCommand")
|
|
311
|
-
.sc(
|
|
314
|
+
.sc(GetCostComparisonDrivers$)
|
|
312
315
|
.build() {
|
|
313
316
|
}
|
|
314
317
|
|
|
315
|
-
class GetCostForecastCommand extends
|
|
318
|
+
class GetCostForecastCommand extends Command
|
|
316
319
|
.classBuilder()
|
|
317
320
|
.ep(commonParams)
|
|
318
321
|
.m(function (Command, cs, config, o) {
|
|
319
|
-
return [
|
|
322
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
320
323
|
})
|
|
321
324
|
.s("AWSInsightsIndexService", "GetCostForecast", {})
|
|
322
325
|
.n("CostExplorerClient", "GetCostForecastCommand")
|
|
323
|
-
.sc(
|
|
326
|
+
.sc(GetCostForecast$)
|
|
324
327
|
.build() {
|
|
325
328
|
}
|
|
326
329
|
|
|
327
|
-
class GetDimensionValuesCommand extends
|
|
330
|
+
class GetDimensionValuesCommand extends Command
|
|
328
331
|
.classBuilder()
|
|
329
332
|
.ep(commonParams)
|
|
330
333
|
.m(function (Command, cs, config, o) {
|
|
331
|
-
return [
|
|
334
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
332
335
|
})
|
|
333
336
|
.s("AWSInsightsIndexService", "GetDimensionValues", {})
|
|
334
337
|
.n("CostExplorerClient", "GetDimensionValuesCommand")
|
|
335
|
-
.sc(
|
|
338
|
+
.sc(GetDimensionValues$)
|
|
336
339
|
.build() {
|
|
337
340
|
}
|
|
338
341
|
|
|
339
|
-
class GetReservationCoverageCommand extends
|
|
342
|
+
class GetReservationCoverageCommand extends Command
|
|
340
343
|
.classBuilder()
|
|
341
344
|
.ep(commonParams)
|
|
342
345
|
.m(function (Command, cs, config, o) {
|
|
343
|
-
return [
|
|
346
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
344
347
|
})
|
|
345
348
|
.s("AWSInsightsIndexService", "GetReservationCoverage", {})
|
|
346
349
|
.n("CostExplorerClient", "GetReservationCoverageCommand")
|
|
347
|
-
.sc(
|
|
350
|
+
.sc(GetReservationCoverage$)
|
|
348
351
|
.build() {
|
|
349
352
|
}
|
|
350
353
|
|
|
351
|
-
class GetReservationPurchaseRecommendationCommand extends
|
|
354
|
+
class GetReservationPurchaseRecommendationCommand extends Command
|
|
352
355
|
.classBuilder()
|
|
353
356
|
.ep(commonParams)
|
|
354
357
|
.m(function (Command, cs, config, o) {
|
|
355
|
-
return [
|
|
358
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
356
359
|
})
|
|
357
360
|
.s("AWSInsightsIndexService", "GetReservationPurchaseRecommendation", {})
|
|
358
361
|
.n("CostExplorerClient", "GetReservationPurchaseRecommendationCommand")
|
|
359
|
-
.sc(
|
|
362
|
+
.sc(GetReservationPurchaseRecommendation$)
|
|
360
363
|
.build() {
|
|
361
364
|
}
|
|
362
365
|
|
|
363
|
-
class GetReservationUtilizationCommand extends
|
|
366
|
+
class GetReservationUtilizationCommand extends Command
|
|
364
367
|
.classBuilder()
|
|
365
368
|
.ep(commonParams)
|
|
366
369
|
.m(function (Command, cs, config, o) {
|
|
367
|
-
return [
|
|
370
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
368
371
|
})
|
|
369
372
|
.s("AWSInsightsIndexService", "GetReservationUtilization", {})
|
|
370
373
|
.n("CostExplorerClient", "GetReservationUtilizationCommand")
|
|
371
|
-
.sc(
|
|
374
|
+
.sc(GetReservationUtilization$)
|
|
372
375
|
.build() {
|
|
373
376
|
}
|
|
374
377
|
|
|
375
|
-
class GetRightsizingRecommendationCommand extends
|
|
378
|
+
class GetRightsizingRecommendationCommand extends Command
|
|
376
379
|
.classBuilder()
|
|
377
380
|
.ep(commonParams)
|
|
378
381
|
.m(function (Command, cs, config, o) {
|
|
379
|
-
return [
|
|
382
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
380
383
|
})
|
|
381
384
|
.s("AWSInsightsIndexService", "GetRightsizingRecommendation", {})
|
|
382
385
|
.n("CostExplorerClient", "GetRightsizingRecommendationCommand")
|
|
383
|
-
.sc(
|
|
386
|
+
.sc(GetRightsizingRecommendation$)
|
|
384
387
|
.build() {
|
|
385
388
|
}
|
|
386
389
|
|
|
387
|
-
class GetSavingsPlanPurchaseRecommendationDetailsCommand extends
|
|
390
|
+
class GetSavingsPlanPurchaseRecommendationDetailsCommand extends Command
|
|
388
391
|
.classBuilder()
|
|
389
392
|
.ep(commonParams)
|
|
390
393
|
.m(function (Command, cs, config, o) {
|
|
391
|
-
return [
|
|
394
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
392
395
|
})
|
|
393
396
|
.s("AWSInsightsIndexService", "GetSavingsPlanPurchaseRecommendationDetails", {})
|
|
394
397
|
.n("CostExplorerClient", "GetSavingsPlanPurchaseRecommendationDetailsCommand")
|
|
395
|
-
.sc(
|
|
398
|
+
.sc(GetSavingsPlanPurchaseRecommendationDetails$)
|
|
396
399
|
.build() {
|
|
397
400
|
}
|
|
398
401
|
|
|
399
|
-
class GetSavingsPlansCoverageCommand extends
|
|
402
|
+
class GetSavingsPlansCoverageCommand extends Command
|
|
400
403
|
.classBuilder()
|
|
401
404
|
.ep(commonParams)
|
|
402
405
|
.m(function (Command, cs, config, o) {
|
|
403
|
-
return [
|
|
406
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
404
407
|
})
|
|
405
408
|
.s("AWSInsightsIndexService", "GetSavingsPlansCoverage", {})
|
|
406
409
|
.n("CostExplorerClient", "GetSavingsPlansCoverageCommand")
|
|
407
|
-
.sc(
|
|
410
|
+
.sc(GetSavingsPlansCoverage$)
|
|
408
411
|
.build() {
|
|
409
412
|
}
|
|
410
413
|
|
|
411
|
-
class GetSavingsPlansPurchaseRecommendationCommand extends
|
|
414
|
+
class GetSavingsPlansPurchaseRecommendationCommand extends Command
|
|
412
415
|
.classBuilder()
|
|
413
416
|
.ep(commonParams)
|
|
414
417
|
.m(function (Command, cs, config, o) {
|
|
415
|
-
return [
|
|
418
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
416
419
|
})
|
|
417
420
|
.s("AWSInsightsIndexService", "GetSavingsPlansPurchaseRecommendation", {})
|
|
418
421
|
.n("CostExplorerClient", "GetSavingsPlansPurchaseRecommendationCommand")
|
|
419
|
-
.sc(
|
|
422
|
+
.sc(GetSavingsPlansPurchaseRecommendation$)
|
|
420
423
|
.build() {
|
|
421
424
|
}
|
|
422
425
|
|
|
423
|
-
class GetSavingsPlansUtilizationCommand extends
|
|
426
|
+
class GetSavingsPlansUtilizationCommand extends Command
|
|
424
427
|
.classBuilder()
|
|
425
428
|
.ep(commonParams)
|
|
426
429
|
.m(function (Command, cs, config, o) {
|
|
427
|
-
return [
|
|
430
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
428
431
|
})
|
|
429
432
|
.s("AWSInsightsIndexService", "GetSavingsPlansUtilization", {})
|
|
430
433
|
.n("CostExplorerClient", "GetSavingsPlansUtilizationCommand")
|
|
431
|
-
.sc(
|
|
434
|
+
.sc(GetSavingsPlansUtilization$)
|
|
432
435
|
.build() {
|
|
433
436
|
}
|
|
434
437
|
|
|
435
|
-
class GetSavingsPlansUtilizationDetailsCommand extends
|
|
438
|
+
class GetSavingsPlansUtilizationDetailsCommand extends Command
|
|
436
439
|
.classBuilder()
|
|
437
440
|
.ep(commonParams)
|
|
438
441
|
.m(function (Command, cs, config, o) {
|
|
439
|
-
return [
|
|
442
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
440
443
|
})
|
|
441
444
|
.s("AWSInsightsIndexService", "GetSavingsPlansUtilizationDetails", {})
|
|
442
445
|
.n("CostExplorerClient", "GetSavingsPlansUtilizationDetailsCommand")
|
|
443
|
-
.sc(
|
|
446
|
+
.sc(GetSavingsPlansUtilizationDetails$)
|
|
444
447
|
.build() {
|
|
445
448
|
}
|
|
446
449
|
|
|
447
|
-
class GetTagsCommand extends
|
|
450
|
+
class GetTagsCommand extends Command
|
|
448
451
|
.classBuilder()
|
|
449
452
|
.ep(commonParams)
|
|
450
453
|
.m(function (Command, cs, config, o) {
|
|
451
|
-
return [
|
|
454
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
452
455
|
})
|
|
453
456
|
.s("AWSInsightsIndexService", "GetTags", {})
|
|
454
457
|
.n("CostExplorerClient", "GetTagsCommand")
|
|
455
|
-
.sc(
|
|
458
|
+
.sc(GetTags$)
|
|
456
459
|
.build() {
|
|
457
460
|
}
|
|
458
461
|
|
|
459
|
-
class GetUsageForecastCommand extends
|
|
462
|
+
class GetUsageForecastCommand extends Command
|
|
460
463
|
.classBuilder()
|
|
461
464
|
.ep(commonParams)
|
|
462
465
|
.m(function (Command, cs, config, o) {
|
|
463
|
-
return [
|
|
466
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
464
467
|
})
|
|
465
468
|
.s("AWSInsightsIndexService", "GetUsageForecast", {})
|
|
466
469
|
.n("CostExplorerClient", "GetUsageForecastCommand")
|
|
467
|
-
.sc(
|
|
470
|
+
.sc(GetUsageForecast$)
|
|
468
471
|
.build() {
|
|
469
472
|
}
|
|
470
473
|
|
|
471
|
-
class ListCommitmentPurchaseAnalysesCommand extends
|
|
474
|
+
class ListCommitmentPurchaseAnalysesCommand extends Command
|
|
472
475
|
.classBuilder()
|
|
473
476
|
.ep(commonParams)
|
|
474
477
|
.m(function (Command, cs, config, o) {
|
|
475
|
-
return [
|
|
478
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
476
479
|
})
|
|
477
480
|
.s("AWSInsightsIndexService", "ListCommitmentPurchaseAnalyses", {})
|
|
478
481
|
.n("CostExplorerClient", "ListCommitmentPurchaseAnalysesCommand")
|
|
479
|
-
.sc(
|
|
482
|
+
.sc(ListCommitmentPurchaseAnalyses$)
|
|
480
483
|
.build() {
|
|
481
484
|
}
|
|
482
485
|
|
|
483
|
-
class ListCostAllocationTagBackfillHistoryCommand extends
|
|
486
|
+
class ListCostAllocationTagBackfillHistoryCommand extends Command
|
|
484
487
|
.classBuilder()
|
|
485
488
|
.ep(commonParams)
|
|
486
489
|
.m(function (Command, cs, config, o) {
|
|
487
|
-
return [
|
|
490
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
488
491
|
})
|
|
489
492
|
.s("AWSInsightsIndexService", "ListCostAllocationTagBackfillHistory", {})
|
|
490
493
|
.n("CostExplorerClient", "ListCostAllocationTagBackfillHistoryCommand")
|
|
491
|
-
.sc(
|
|
494
|
+
.sc(ListCostAllocationTagBackfillHistory$)
|
|
492
495
|
.build() {
|
|
493
496
|
}
|
|
494
497
|
|
|
495
|
-
class ListCostAllocationTagsCommand extends
|
|
498
|
+
class ListCostAllocationTagsCommand extends Command
|
|
496
499
|
.classBuilder()
|
|
497
500
|
.ep(commonParams)
|
|
498
501
|
.m(function (Command, cs, config, o) {
|
|
499
|
-
return [
|
|
502
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
500
503
|
})
|
|
501
504
|
.s("AWSInsightsIndexService", "ListCostAllocationTags", {})
|
|
502
505
|
.n("CostExplorerClient", "ListCostAllocationTagsCommand")
|
|
503
|
-
.sc(
|
|
506
|
+
.sc(ListCostAllocationTags$)
|
|
504
507
|
.build() {
|
|
505
508
|
}
|
|
506
509
|
|
|
507
|
-
class ListCostCategoryDefinitionsCommand extends
|
|
510
|
+
class ListCostCategoryDefinitionsCommand extends Command
|
|
508
511
|
.classBuilder()
|
|
509
512
|
.ep(commonParams)
|
|
510
513
|
.m(function (Command, cs, config, o) {
|
|
511
|
-
return [
|
|
514
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
512
515
|
})
|
|
513
516
|
.s("AWSInsightsIndexService", "ListCostCategoryDefinitions", {})
|
|
514
517
|
.n("CostExplorerClient", "ListCostCategoryDefinitionsCommand")
|
|
515
|
-
.sc(
|
|
518
|
+
.sc(ListCostCategoryDefinitions$)
|
|
516
519
|
.build() {
|
|
517
520
|
}
|
|
518
521
|
|
|
519
|
-
class ListCostCategoryResourceAssociationsCommand extends
|
|
522
|
+
class ListCostCategoryResourceAssociationsCommand extends Command
|
|
520
523
|
.classBuilder()
|
|
521
524
|
.ep(commonParams)
|
|
522
525
|
.m(function (Command, cs, config, o) {
|
|
523
|
-
return [
|
|
526
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
524
527
|
})
|
|
525
528
|
.s("AWSInsightsIndexService", "ListCostCategoryResourceAssociations", {})
|
|
526
529
|
.n("CostExplorerClient", "ListCostCategoryResourceAssociationsCommand")
|
|
527
|
-
.sc(
|
|
530
|
+
.sc(ListCostCategoryResourceAssociations$)
|
|
528
531
|
.build() {
|
|
529
532
|
}
|
|
530
533
|
|
|
531
|
-
class ListSavingsPlansPurchaseRecommendationGenerationCommand extends
|
|
534
|
+
class ListSavingsPlansPurchaseRecommendationGenerationCommand extends Command
|
|
532
535
|
.classBuilder()
|
|
533
536
|
.ep(commonParams)
|
|
534
537
|
.m(function (Command, cs, config, o) {
|
|
535
|
-
return [
|
|
538
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
536
539
|
})
|
|
537
540
|
.s("AWSInsightsIndexService", "ListSavingsPlansPurchaseRecommendationGeneration", {})
|
|
538
541
|
.n("CostExplorerClient", "ListSavingsPlansPurchaseRecommendationGenerationCommand")
|
|
539
|
-
.sc(
|
|
542
|
+
.sc(ListSavingsPlansPurchaseRecommendationGeneration$)
|
|
540
543
|
.build() {
|
|
541
544
|
}
|
|
542
545
|
|
|
543
|
-
class ListTagsForResourceCommand extends
|
|
546
|
+
class ListTagsForResourceCommand extends Command
|
|
544
547
|
.classBuilder()
|
|
545
548
|
.ep(commonParams)
|
|
546
549
|
.m(function (Command, cs, config, o) {
|
|
547
|
-
return [
|
|
550
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
548
551
|
})
|
|
549
552
|
.s("AWSInsightsIndexService", "ListTagsForResource", {})
|
|
550
553
|
.n("CostExplorerClient", "ListTagsForResourceCommand")
|
|
551
|
-
.sc(
|
|
554
|
+
.sc(ListTagsForResource$)
|
|
552
555
|
.build() {
|
|
553
556
|
}
|
|
554
557
|
|
|
555
|
-
class ProvideAnomalyFeedbackCommand extends
|
|
558
|
+
class ProvideAnomalyFeedbackCommand extends Command
|
|
556
559
|
.classBuilder()
|
|
557
560
|
.ep(commonParams)
|
|
558
561
|
.m(function (Command, cs, config, o) {
|
|
559
|
-
return [
|
|
562
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
560
563
|
})
|
|
561
564
|
.s("AWSInsightsIndexService", "ProvideAnomalyFeedback", {})
|
|
562
565
|
.n("CostExplorerClient", "ProvideAnomalyFeedbackCommand")
|
|
563
|
-
.sc(
|
|
566
|
+
.sc(ProvideAnomalyFeedback$)
|
|
564
567
|
.build() {
|
|
565
568
|
}
|
|
566
569
|
|
|
567
|
-
class StartCommitmentPurchaseAnalysisCommand extends
|
|
570
|
+
class StartCommitmentPurchaseAnalysisCommand extends Command
|
|
568
571
|
.classBuilder()
|
|
569
572
|
.ep(commonParams)
|
|
570
573
|
.m(function (Command, cs, config, o) {
|
|
571
|
-
return [
|
|
574
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
572
575
|
})
|
|
573
576
|
.s("AWSInsightsIndexService", "StartCommitmentPurchaseAnalysis", {})
|
|
574
577
|
.n("CostExplorerClient", "StartCommitmentPurchaseAnalysisCommand")
|
|
575
|
-
.sc(
|
|
578
|
+
.sc(StartCommitmentPurchaseAnalysis$)
|
|
576
579
|
.build() {
|
|
577
580
|
}
|
|
578
581
|
|
|
579
|
-
class StartCostAllocationTagBackfillCommand extends
|
|
582
|
+
class StartCostAllocationTagBackfillCommand extends Command
|
|
580
583
|
.classBuilder()
|
|
581
584
|
.ep(commonParams)
|
|
582
585
|
.m(function (Command, cs, config, o) {
|
|
583
|
-
return [
|
|
586
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
584
587
|
})
|
|
585
588
|
.s("AWSInsightsIndexService", "StartCostAllocationTagBackfill", {})
|
|
586
589
|
.n("CostExplorerClient", "StartCostAllocationTagBackfillCommand")
|
|
587
|
-
.sc(
|
|
590
|
+
.sc(StartCostAllocationTagBackfill$)
|
|
588
591
|
.build() {
|
|
589
592
|
}
|
|
590
593
|
|
|
591
|
-
class StartSavingsPlansPurchaseRecommendationGenerationCommand extends
|
|
594
|
+
class StartSavingsPlansPurchaseRecommendationGenerationCommand extends Command
|
|
592
595
|
.classBuilder()
|
|
593
596
|
.ep(commonParams)
|
|
594
597
|
.m(function (Command, cs, config, o) {
|
|
595
|
-
return [
|
|
598
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
599
|
})
|
|
597
600
|
.s("AWSInsightsIndexService", "StartSavingsPlansPurchaseRecommendationGeneration", {})
|
|
598
601
|
.n("CostExplorerClient", "StartSavingsPlansPurchaseRecommendationGenerationCommand")
|
|
599
|
-
.sc(
|
|
602
|
+
.sc(StartSavingsPlansPurchaseRecommendationGeneration$)
|
|
600
603
|
.build() {
|
|
601
604
|
}
|
|
602
605
|
|
|
603
|
-
class TagResourceCommand extends
|
|
606
|
+
class TagResourceCommand extends Command
|
|
604
607
|
.classBuilder()
|
|
605
608
|
.ep(commonParams)
|
|
606
609
|
.m(function (Command, cs, config, o) {
|
|
607
|
-
return [
|
|
610
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
608
611
|
})
|
|
609
612
|
.s("AWSInsightsIndexService", "TagResource", {})
|
|
610
613
|
.n("CostExplorerClient", "TagResourceCommand")
|
|
611
|
-
.sc(
|
|
614
|
+
.sc(TagResource$)
|
|
612
615
|
.build() {
|
|
613
616
|
}
|
|
614
617
|
|
|
615
|
-
class UntagResourceCommand extends
|
|
618
|
+
class UntagResourceCommand extends Command
|
|
616
619
|
.classBuilder()
|
|
617
620
|
.ep(commonParams)
|
|
618
621
|
.m(function (Command, cs, config, o) {
|
|
619
|
-
return [
|
|
622
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
620
623
|
})
|
|
621
624
|
.s("AWSInsightsIndexService", "UntagResource", {})
|
|
622
625
|
.n("CostExplorerClient", "UntagResourceCommand")
|
|
623
|
-
.sc(
|
|
626
|
+
.sc(UntagResource$)
|
|
624
627
|
.build() {
|
|
625
628
|
}
|
|
626
629
|
|
|
627
|
-
class UpdateAnomalyMonitorCommand extends
|
|
630
|
+
class UpdateAnomalyMonitorCommand extends Command
|
|
628
631
|
.classBuilder()
|
|
629
632
|
.ep(commonParams)
|
|
630
633
|
.m(function (Command, cs, config, o) {
|
|
631
|
-
return [
|
|
634
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
632
635
|
})
|
|
633
636
|
.s("AWSInsightsIndexService", "UpdateAnomalyMonitor", {})
|
|
634
637
|
.n("CostExplorerClient", "UpdateAnomalyMonitorCommand")
|
|
635
|
-
.sc(
|
|
638
|
+
.sc(UpdateAnomalyMonitor$)
|
|
636
639
|
.build() {
|
|
637
640
|
}
|
|
638
641
|
|
|
639
|
-
class UpdateAnomalySubscriptionCommand extends
|
|
642
|
+
class UpdateAnomalySubscriptionCommand extends Command
|
|
640
643
|
.classBuilder()
|
|
641
644
|
.ep(commonParams)
|
|
642
645
|
.m(function (Command, cs, config, o) {
|
|
643
|
-
return [
|
|
646
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
644
647
|
})
|
|
645
648
|
.s("AWSInsightsIndexService", "UpdateAnomalySubscription", {})
|
|
646
649
|
.n("CostExplorerClient", "UpdateAnomalySubscriptionCommand")
|
|
647
|
-
.sc(
|
|
650
|
+
.sc(UpdateAnomalySubscription$)
|
|
648
651
|
.build() {
|
|
649
652
|
}
|
|
650
653
|
|
|
651
|
-
class UpdateCostAllocationTagsStatusCommand extends
|
|
654
|
+
class UpdateCostAllocationTagsStatusCommand extends Command
|
|
652
655
|
.classBuilder()
|
|
653
656
|
.ep(commonParams)
|
|
654
657
|
.m(function (Command, cs, config, o) {
|
|
655
|
-
return [
|
|
658
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
656
659
|
})
|
|
657
660
|
.s("AWSInsightsIndexService", "UpdateCostAllocationTagsStatus", {})
|
|
658
661
|
.n("CostExplorerClient", "UpdateCostAllocationTagsStatusCommand")
|
|
659
|
-
.sc(
|
|
662
|
+
.sc(UpdateCostAllocationTagsStatus$)
|
|
660
663
|
.build() {
|
|
661
664
|
}
|
|
662
665
|
|
|
663
|
-
class UpdateCostCategoryDefinitionCommand extends
|
|
666
|
+
class UpdateCostCategoryDefinitionCommand extends Command
|
|
664
667
|
.classBuilder()
|
|
665
668
|
.ep(commonParams)
|
|
666
669
|
.m(function (Command, cs, config, o) {
|
|
667
|
-
return [
|
|
670
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
668
671
|
})
|
|
669
672
|
.s("AWSInsightsIndexService", "UpdateCostCategoryDefinition", {})
|
|
670
673
|
.n("CostExplorerClient", "UpdateCostCategoryDefinitionCommand")
|
|
671
|
-
.sc(
|
|
674
|
+
.sc(UpdateCostCategoryDefinition$)
|
|
672
675
|
.build() {
|
|
673
676
|
}
|
|
674
677
|
|
|
675
|
-
const paginateGetAnomalies =
|
|
678
|
+
const paginateGetAnomalies = createPaginator(CostExplorerClient, GetAnomaliesCommand, "NextPageToken", "NextPageToken", "MaxResults");
|
|
676
679
|
|
|
677
|
-
const paginateGetAnomalyMonitors =
|
|
680
|
+
const paginateGetAnomalyMonitors = createPaginator(CostExplorerClient, GetAnomalyMonitorsCommand, "NextPageToken", "NextPageToken", "MaxResults");
|
|
678
681
|
|
|
679
|
-
const paginateGetAnomalySubscriptions =
|
|
682
|
+
const paginateGetAnomalySubscriptions = createPaginator(CostExplorerClient, GetAnomalySubscriptionsCommand, "NextPageToken", "NextPageToken", "MaxResults");
|
|
680
683
|
|
|
681
|
-
const paginateGetCostAndUsageComparisons =
|
|
684
|
+
const paginateGetCostAndUsageComparisons = createPaginator(CostExplorerClient, GetCostAndUsageComparisonsCommand, "NextPageToken", "NextPageToken", "MaxResults");
|
|
682
685
|
|
|
683
|
-
const paginateGetCostComparisonDrivers =
|
|
686
|
+
const paginateGetCostComparisonDrivers = createPaginator(CostExplorerClient, GetCostComparisonDriversCommand, "NextPageToken", "NextPageToken", "MaxResults");
|
|
684
687
|
|
|
685
|
-
const paginateGetReservationPurchaseRecommendation =
|
|
688
|
+
const paginateGetReservationPurchaseRecommendation = createPaginator(CostExplorerClient, GetReservationPurchaseRecommendationCommand, "NextPageToken", "NextPageToken", "PageSize");
|
|
686
689
|
|
|
687
|
-
const paginateGetRightsizingRecommendation =
|
|
690
|
+
const paginateGetRightsizingRecommendation = createPaginator(CostExplorerClient, GetRightsizingRecommendationCommand, "NextPageToken", "NextPageToken", "PageSize");
|
|
688
691
|
|
|
689
|
-
const paginateGetSavingsPlansCoverage =
|
|
692
|
+
const paginateGetSavingsPlansCoverage = createPaginator(CostExplorerClient, GetSavingsPlansCoverageCommand, "NextToken", "NextToken", "MaxResults");
|
|
690
693
|
|
|
691
|
-
const paginateGetSavingsPlansUtilizationDetails =
|
|
694
|
+
const paginateGetSavingsPlansUtilizationDetails = createPaginator(CostExplorerClient, GetSavingsPlansUtilizationDetailsCommand, "NextToken", "NextToken", "MaxResults");
|
|
692
695
|
|
|
693
|
-
const paginateListCommitmentPurchaseAnalyses =
|
|
696
|
+
const paginateListCommitmentPurchaseAnalyses = createPaginator(CostExplorerClient, ListCommitmentPurchaseAnalysesCommand, "NextPageToken", "NextPageToken", "PageSize");
|
|
694
697
|
|
|
695
|
-
const paginateListCostAllocationTagBackfillHistory =
|
|
698
|
+
const paginateListCostAllocationTagBackfillHistory = createPaginator(CostExplorerClient, ListCostAllocationTagBackfillHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
696
699
|
|
|
697
|
-
const paginateListCostAllocationTags =
|
|
700
|
+
const paginateListCostAllocationTags = createPaginator(CostExplorerClient, ListCostAllocationTagsCommand, "NextToken", "NextToken", "MaxResults");
|
|
698
701
|
|
|
699
|
-
const paginateListCostCategoryDefinitions =
|
|
702
|
+
const paginateListCostCategoryDefinitions = createPaginator(CostExplorerClient, ListCostCategoryDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
700
703
|
|
|
701
|
-
const paginateListCostCategoryResourceAssociations =
|
|
704
|
+
const paginateListCostCategoryResourceAssociations = createPaginator(CostExplorerClient, ListCostCategoryResourceAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
702
705
|
|
|
703
|
-
const paginateListSavingsPlansPurchaseRecommendationGeneration =
|
|
706
|
+
const paginateListSavingsPlansPurchaseRecommendationGeneration = createPaginator(CostExplorerClient, ListSavingsPlansPurchaseRecommendationGenerationCommand, "NextPageToken", "NextPageToken", "PageSize");
|
|
704
707
|
|
|
705
708
|
const commands = {
|
|
706
709
|
CreateAnomalyMonitorCommand,
|
|
@@ -770,7 +773,7 @@ const paginators = {
|
|
|
770
773
|
};
|
|
771
774
|
class CostExplorer extends CostExplorerClient {
|
|
772
775
|
}
|
|
773
|
-
|
|
776
|
+
createAggregatedClient(commands, CostExplorer, { paginators });
|
|
774
777
|
|
|
775
778
|
const AccountScope = {
|
|
776
779
|
LINKED: "LINKED",
|
|
@@ -1019,9 +1022,6 @@ const GenerationStatus = {
|
|
|
1019
1022
|
SUCCEEDED: "SUCCEEDED",
|
|
1020
1023
|
};
|
|
1021
1024
|
|
|
1022
|
-
exports.$Command = client.Command;
|
|
1023
|
-
exports.__Client = client.Client;
|
|
1024
|
-
exports.CostExplorerServiceException = CostExplorerServiceException.CostExplorerServiceException;
|
|
1025
1025
|
exports.AccountScope = AccountScope;
|
|
1026
1026
|
exports.AnalysisStatus = AnalysisStatus;
|
|
1027
1027
|
exports.AnalysisType = AnalysisType;
|
|
@@ -1126,23 +1126,3 @@ exports.paginateListCostAllocationTags = paginateListCostAllocationTags;
|
|
|
1126
1126
|
exports.paginateListCostCategoryDefinitions = paginateListCostCategoryDefinitions;
|
|
1127
1127
|
exports.paginateListCostCategoryResourceAssociations = paginateListCostCategoryResourceAssociations;
|
|
1128
1128
|
exports.paginateListSavingsPlansPurchaseRecommendationGeneration = paginateListSavingsPlansPurchaseRecommendationGeneration;
|
|
1129
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1130
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1131
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1132
|
-
enumerable: true,
|
|
1133
|
-
value: schemas_0['__proto__']
|
|
1134
|
-
});
|
|
1135
|
-
|
|
1136
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1137
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1138
|
-
});
|
|
1139
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1140
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1141
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1142
|
-
enumerable: true,
|
|
1143
|
-
value: errors['__proto__']
|
|
1144
|
-
});
|
|
1145
|
-
|
|
1146
|
-
Object.keys(errors).forEach(function (k) {
|
|
1147
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1148
|
-
});
|