@aws-sdk/client-cost-explorer 3.986.0 → 3.988.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 +66 -2509
- package/dist-cjs/models/CostExplorerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +233 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2006 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +98 -92
- package/dist-types/schemas/schemas_0.d.ts +23 -16
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -16
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var CostExplorerServiceException = require('./models/CostExplorerServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2195 +113,6 @@ class CostExplorerClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class CostExplorerServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, CostExplorerServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AnalysisNotFoundException extends CostExplorerServiceException {
|
|
121
|
-
name = "AnalysisNotFoundException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AnalysisNotFoundException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AnalysisNotFoundException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class LimitExceededException extends CostExplorerServiceException {
|
|
135
|
-
name = "LimitExceededException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "LimitExceededException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class UnknownMonitorException extends CostExplorerServiceException {
|
|
149
|
-
name = "UnknownMonitorException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "UnknownMonitorException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, UnknownMonitorException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ServiceQuotaExceededException extends CostExplorerServiceException {
|
|
163
|
-
name = "ServiceQuotaExceededException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ServiceQuotaExceededException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class UnknownSubscriptionException extends CostExplorerServiceException {
|
|
177
|
-
name = "UnknownSubscriptionException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "UnknownSubscriptionException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, UnknownSubscriptionException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ResourceNotFoundException extends CostExplorerServiceException {
|
|
191
|
-
name = "ResourceNotFoundException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
ResourceName;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ResourceNotFoundException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
this.ResourceName = opts.ResourceName;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class InvalidNextTokenException extends CostExplorerServiceException {
|
|
207
|
-
name = "InvalidNextTokenException";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
Message;
|
|
210
|
-
constructor(opts) {
|
|
211
|
-
super({
|
|
212
|
-
name: "InvalidNextTokenException",
|
|
213
|
-
$fault: "client",
|
|
214
|
-
...opts,
|
|
215
|
-
});
|
|
216
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
217
|
-
this.Message = opts.Message;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
class DataUnavailableException extends CostExplorerServiceException {
|
|
221
|
-
name = "DataUnavailableException";
|
|
222
|
-
$fault = "client";
|
|
223
|
-
Message;
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "DataUnavailableException",
|
|
227
|
-
$fault: "client",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, DataUnavailableException.prototype);
|
|
231
|
-
this.Message = opts.Message;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
class BillExpirationException extends CostExplorerServiceException {
|
|
235
|
-
name = "BillExpirationException";
|
|
236
|
-
$fault = "client";
|
|
237
|
-
Message;
|
|
238
|
-
constructor(opts) {
|
|
239
|
-
super({
|
|
240
|
-
name: "BillExpirationException",
|
|
241
|
-
$fault: "client",
|
|
242
|
-
...opts,
|
|
243
|
-
});
|
|
244
|
-
Object.setPrototypeOf(this, BillExpirationException.prototype);
|
|
245
|
-
this.Message = opts.Message;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
class BillingViewHealthStatusException extends CostExplorerServiceException {
|
|
249
|
-
name = "BillingViewHealthStatusException";
|
|
250
|
-
$fault = "client";
|
|
251
|
-
Message;
|
|
252
|
-
constructor(opts) {
|
|
253
|
-
super({
|
|
254
|
-
name: "BillingViewHealthStatusException",
|
|
255
|
-
$fault: "client",
|
|
256
|
-
...opts,
|
|
257
|
-
});
|
|
258
|
-
Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
|
|
259
|
-
this.Message = opts.Message;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
class RequestChangedException extends CostExplorerServiceException {
|
|
263
|
-
name = "RequestChangedException";
|
|
264
|
-
$fault = "client";
|
|
265
|
-
Message;
|
|
266
|
-
constructor(opts) {
|
|
267
|
-
super({
|
|
268
|
-
name: "RequestChangedException",
|
|
269
|
-
$fault: "client",
|
|
270
|
-
...opts,
|
|
271
|
-
});
|
|
272
|
-
Object.setPrototypeOf(this, RequestChangedException.prototype);
|
|
273
|
-
this.Message = opts.Message;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
class UnresolvableUsageUnitException extends CostExplorerServiceException {
|
|
277
|
-
name = "UnresolvableUsageUnitException";
|
|
278
|
-
$fault = "client";
|
|
279
|
-
Message;
|
|
280
|
-
constructor(opts) {
|
|
281
|
-
super({
|
|
282
|
-
name: "UnresolvableUsageUnitException",
|
|
283
|
-
$fault: "client",
|
|
284
|
-
...opts,
|
|
285
|
-
});
|
|
286
|
-
Object.setPrototypeOf(this, UnresolvableUsageUnitException.prototype);
|
|
287
|
-
this.Message = opts.Message;
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
class GenerationExistsException extends CostExplorerServiceException {
|
|
291
|
-
name = "GenerationExistsException";
|
|
292
|
-
$fault = "client";
|
|
293
|
-
Message;
|
|
294
|
-
constructor(opts) {
|
|
295
|
-
super({
|
|
296
|
-
name: "GenerationExistsException",
|
|
297
|
-
$fault: "client",
|
|
298
|
-
...opts,
|
|
299
|
-
});
|
|
300
|
-
Object.setPrototypeOf(this, GenerationExistsException.prototype);
|
|
301
|
-
this.Message = opts.Message;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
class BackfillLimitExceededException extends CostExplorerServiceException {
|
|
305
|
-
name = "BackfillLimitExceededException";
|
|
306
|
-
$fault = "client";
|
|
307
|
-
Message;
|
|
308
|
-
constructor(opts) {
|
|
309
|
-
super({
|
|
310
|
-
name: "BackfillLimitExceededException",
|
|
311
|
-
$fault: "client",
|
|
312
|
-
...opts,
|
|
313
|
-
});
|
|
314
|
-
Object.setPrototypeOf(this, BackfillLimitExceededException.prototype);
|
|
315
|
-
this.Message = opts.Message;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
class TooManyTagsException extends CostExplorerServiceException {
|
|
319
|
-
name = "TooManyTagsException";
|
|
320
|
-
$fault = "client";
|
|
321
|
-
Message;
|
|
322
|
-
ResourceName;
|
|
323
|
-
constructor(opts) {
|
|
324
|
-
super({
|
|
325
|
-
name: "TooManyTagsException",
|
|
326
|
-
$fault: "client",
|
|
327
|
-
...opts,
|
|
328
|
-
});
|
|
329
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
330
|
-
this.Message = opts.Message;
|
|
331
|
-
this.ResourceName = opts.ResourceName;
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
const _A = "Anomaly";
|
|
336
|
-
const _AC = "AmortizedCommitment";
|
|
337
|
-
const _ACT = "AnalysisCompletionTime";
|
|
338
|
-
const _AD = "AnalysisDetails";
|
|
339
|
-
const _ADI = "AnomalyDateInterval";
|
|
340
|
-
const _ADp = "ApproximationDimension";
|
|
341
|
-
const _AED = "AnomalyEndDate";
|
|
342
|
-
const _AI = "AnalysisId";
|
|
343
|
-
const _AIc = "AccountId";
|
|
344
|
-
const _AIn = "AnomalyId";
|
|
345
|
-
const _AIna = "AnalysisIds";
|
|
346
|
-
const _AM = "AnomalyMonitor";
|
|
347
|
-
const _AMd = "AdditionalMetadata";
|
|
348
|
-
const _AMn = "AnomalyMonitors";
|
|
349
|
-
const _ANFE = "AnalysisNotFoundException";
|
|
350
|
-
const _ANOCUUPH = "AverageNumberOfCapacityUnitsUsedPerHour";
|
|
351
|
-
const _ANOIUPH = "AverageNumberOfInstancesUsedPerHour";
|
|
352
|
-
const _ANUUPH = "AverageNormalizedUnitsUsedPerHour";
|
|
353
|
-
const _ARC = "AmortizedRecurringCommitment";
|
|
354
|
-
const _ARF = "AmortizedRecurringFee";
|
|
355
|
-
const _AS = "AnalysisSummary";
|
|
356
|
-
const _ASD = "AnomalyStartDate";
|
|
357
|
-
const _ASL = "AnalysisSummaryList";
|
|
358
|
-
const _AST = "AnalysisStartedTime";
|
|
359
|
-
const _ASc = "AccountScope";
|
|
360
|
-
const _ASn = "AnalysisStatus";
|
|
361
|
-
const _ASno = "AnomalyScore";
|
|
362
|
-
const _ASnom = "AnomalySubscription";
|
|
363
|
-
const _ASnoma = "AnomalySubscriptions";
|
|
364
|
-
const _AT = "AnalysisType";
|
|
365
|
-
const _AU = "AverageUtilization";
|
|
366
|
-
const _AUC = "AmortizedUpfrontCommitment";
|
|
367
|
-
const _AUF = "AmortizedUpfrontFee";
|
|
368
|
-
const _AZ = "AvailabilityZone";
|
|
369
|
-
const _Ad = "Address";
|
|
370
|
-
const _Am = "Amount";
|
|
371
|
-
const _An = "And";
|
|
372
|
-
const _Ano = "Anomalies";
|
|
373
|
-
const _At = "Attributes";
|
|
374
|
-
const _BC = "BenefitsConsidered";
|
|
375
|
-
const _BEE = "BillExpirationException";
|
|
376
|
-
const _BF = "BackfillFrom";
|
|
377
|
-
const _BLEE = "BackfillLimitExceededException";
|
|
378
|
-
const _BR = "BackfillRequests";
|
|
379
|
-
const _BRa = "BackfillRequest";
|
|
380
|
-
const _BS = "BackfillStatus";
|
|
381
|
-
const _BTP = "BaselineTimePeriod";
|
|
382
|
-
const _BTPA = "BaselineTimePeriodAmount";
|
|
383
|
-
const _BVA = "BillingViewArn";
|
|
384
|
-
const _BVHSE = "BillingViewHealthStatusException";
|
|
385
|
-
const _C = "Component";
|
|
386
|
-
const _CA = "CompletedAt";
|
|
387
|
-
const _CAC = "CurrentAverageCoverage";
|
|
388
|
-
const _CAHODS = "CurrentAverageHourlyOnDemandSpend";
|
|
389
|
-
const _CAM = "CreateAnomalyMonitor";
|
|
390
|
-
const _CAMR = "CreateAnomalyMonitorRequest";
|
|
391
|
-
const _CAMRr = "CreateAnomalyMonitorResponse";
|
|
392
|
-
const _CAS = "CreateAnomalySubscription";
|
|
393
|
-
const _CASR = "CreateAnomalySubscriptionRequest";
|
|
394
|
-
const _CASRr = "CreateAnomalySubscriptionResponse";
|
|
395
|
-
const _CAT = "CostAllocationTag";
|
|
396
|
-
const _CATBR = "CostAllocationTagBackfillRequest";
|
|
397
|
-
const _CATBRL = "CostAllocationTagBackfillRequestList";
|
|
398
|
-
const _CATL = "CostAllocationTagList";
|
|
399
|
-
const _CATS = "CostAllocationTagsStatus";
|
|
400
|
-
const _CATSE = "CostAllocationTagStatusEntry";
|
|
401
|
-
const _CATSL = "CostAllocationTagStatusList";
|
|
402
|
-
const _CATo = "CostAllocationTags";
|
|
403
|
-
const _CAUC = "CostAndUsageComparison";
|
|
404
|
-
const _CAUCo = "CostAndUsageComparisons";
|
|
405
|
-
const _CAUS = "CostAndUsageSelector";
|
|
406
|
-
const _CBT = "CoverageByTime";
|
|
407
|
-
const _CBTo = "CoveragesByTime";
|
|
408
|
-
const _CC = "CostCategory";
|
|
409
|
-
const _CCA = "CostCategoryArn";
|
|
410
|
-
const _CCCD = "CreateCostCategoryDefinition";
|
|
411
|
-
const _CCCDR = "CreateCostCategoryDefinitionRequest";
|
|
412
|
-
const _CCCDRr = "CreateCostCategoryDefinitionResponse";
|
|
413
|
-
const _CCD = "CostComparisonDriver";
|
|
414
|
-
const _CCDo = "CostComparisonDrivers";
|
|
415
|
-
const _CCIVD = "CostCategoryInheritedValueDimension";
|
|
416
|
-
const _CCN = "CostCategoryName";
|
|
417
|
-
const _CCNo = "CostCategoryNames";
|
|
418
|
-
const _CCPS = "CostCategoryProcessingStatus";
|
|
419
|
-
const _CCPSL = "CostCategoryProcessingStatusList";
|
|
420
|
-
const _CCR = "CostCategoryReference";
|
|
421
|
-
const _CCRA = "CostCategoryResourceAssociation";
|
|
422
|
-
const _CCRAo = "CostCategoryResourceAssociations";
|
|
423
|
-
const _CCRL = "CostCategoryReferencesList";
|
|
424
|
-
const _CCRLo = "CostCategoryRulesList";
|
|
425
|
-
const _CCRo = "CostCategoryRule";
|
|
426
|
-
const _CCRos = "CostCategoryReferences";
|
|
427
|
-
const _CCSCR = "CostCategorySplitChargeRule";
|
|
428
|
-
const _CCSCRL = "CostCategorySplitChargeRulesList";
|
|
429
|
-
const _CCSCRP = "CostCategorySplitChargeRuleParameter";
|
|
430
|
-
const _CCSCRPL = "CostCategorySplitChargeRuleParametersList";
|
|
431
|
-
const _CCV = "CostCategoryValues";
|
|
432
|
-
const _CCo = "CoverageCost";
|
|
433
|
-
const _CCos = "CostCategories";
|
|
434
|
-
const _CCu = "CurrencyCode";
|
|
435
|
-
const _CCur = "CurrentCoverage";
|
|
436
|
-
const _CD = "CreationDate";
|
|
437
|
-
const _CDo = "CostDrivers";
|
|
438
|
-
const _CDos = "CostDriver";
|
|
439
|
-
const _CG = "CurrentGeneration";
|
|
440
|
-
const _CH = "CoverageHours";
|
|
441
|
-
const _CHP = "CoverageHoursPercentage";
|
|
442
|
-
const _CI = "CurrentInstance";
|
|
443
|
-
const _CM = "ComparisonMetrics";
|
|
444
|
-
const _CMHODS = "CurrentMaximumHourlyOnDemandSpend";
|
|
445
|
-
const _CMHODSu = "CurrentMinimumHourlyOnDemandSpend";
|
|
446
|
-
const _CMV = "ComparisonMetricValue";
|
|
447
|
-
const _CNU = "CoverageNormalizedUnits";
|
|
448
|
-
const _CNUP = "CoverageNormalizedUnitsPercentage";
|
|
449
|
-
const _CODS = "CurrentOnDemandSpend";
|
|
450
|
-
const _CP = "CoveragePercentage";
|
|
451
|
-
const _CPAC = "CommitmentPurchaseAnalysisConfiguration";
|
|
452
|
-
const _CS = "CurrentScore";
|
|
453
|
-
const _CSo = "CostSelector";
|
|
454
|
-
const _CTP = "ComparisonTimePeriod";
|
|
455
|
-
const _CTPA = "ComparisonTimePeriodAmount";
|
|
456
|
-
const _CU = "CapacityUnits";
|
|
457
|
-
const _Co = "Coverage";
|
|
458
|
-
const _Cod = "Code";
|
|
459
|
-
const _Con = "Context";
|
|
460
|
-
const _Conf = "Configuration";
|
|
461
|
-
const _Cont = "Contribution";
|
|
462
|
-
const _D = "Difference";
|
|
463
|
-
const _DAM = "DeleteAnomalyMonitor";
|
|
464
|
-
const _DAMR = "DeleteAnomalyMonitorRequest";
|
|
465
|
-
const _DAMRe = "DeleteAnomalyMonitorResponse";
|
|
466
|
-
const _DAS = "DeleteAnomalySubscription";
|
|
467
|
-
const _DASR = "DeleteAnomalySubscriptionRequest";
|
|
468
|
-
const _DASRe = "DeleteAnomalySubscriptionResponse";
|
|
469
|
-
const _DCCD = "DeleteCostCategoryDefinition";
|
|
470
|
-
const _DCCDR = "DeleteCostCategoryDefinitionRequest";
|
|
471
|
-
const _DCCDRe = "DeleteCostCategoryDefinitionResponse";
|
|
472
|
-
const _DCCDRes = "DescribeCostCategoryDefinitionRequest";
|
|
473
|
-
const _DCCDResc = "DescribeCostCategoryDefinitionResponse";
|
|
474
|
-
const _DCCDe = "DescribeCostCategoryDefinition";
|
|
475
|
-
const _DCTP = "DailyCommitmentToPurchase";
|
|
476
|
-
const _DDBCD = "DynamoDBCapacityDetails";
|
|
477
|
-
const _DE = "DatabaseEngine";
|
|
478
|
-
const _DEa = "DatabaseEdition";
|
|
479
|
-
const _DI = "DateInterval";
|
|
480
|
-
const _DK = "DimensionKey";
|
|
481
|
-
const _DM = "DeploymentModel";
|
|
482
|
-
const _DN = "DimensionName";
|
|
483
|
-
const _DO = "DeploymentOption";
|
|
484
|
-
const _DRBPS = "DiskReadBytesPerSecond";
|
|
485
|
-
const _DROPS = "DiskReadOpsPerSecond";
|
|
486
|
-
const _DRU = "DiskResourceUtilization";
|
|
487
|
-
const _DT = "DataType";
|
|
488
|
-
const _DTI = "DefaultTargetInstance";
|
|
489
|
-
const _DUE = "DataUnavailableException";
|
|
490
|
-
const _DV = "DimensionValue";
|
|
491
|
-
const _DVA = "DimensionValueAttributes";
|
|
492
|
-
const _DVC = "DimensionalValueCount";
|
|
493
|
-
const _DVWA = "DimensionValuesWithAttributes";
|
|
494
|
-
const _DVWAL = "DimensionValuesWithAttributesList";
|
|
495
|
-
const _DVe = "DefaultValue";
|
|
496
|
-
const _DVi = "DimensionValues";
|
|
497
|
-
const _DWBPS = "DiskWriteBytesPerSecond";
|
|
498
|
-
const _DWOPS = "DiskWriteOpsPerSecond";
|
|
499
|
-
const _Di = "Dimensions";
|
|
500
|
-
const _Dim = "Dimension";
|
|
501
|
-
const _E = "End";
|
|
502
|
-
const _EAC = "EstimatedAverageCoverage";
|
|
503
|
-
const _EAU = "EstimatedAverageUtilization";
|
|
504
|
-
const _EBEIM = "EstimatedBreakEvenInMonths";
|
|
505
|
-
const _EBSRU = "EBSResourceUtilization";
|
|
506
|
-
const _EC = "ErrorCode";
|
|
507
|
-
const _ECC = "EstimatedCommitmentCost";
|
|
508
|
-
const _ECID = "EC2InstanceDetails";
|
|
509
|
-
const _ECIDl = "ElastiCacheInstanceDetails";
|
|
510
|
-
const _ECRD = "EC2ResourceDetails";
|
|
511
|
-
const _ECRU = "EC2ResourceUtilization";
|
|
512
|
-
const _ECS = "EC2Specification";
|
|
513
|
-
const _ECT = "EstimatedCompletionTime";
|
|
514
|
-
const _ECs = "EstimatedCoverage";
|
|
515
|
-
const _ED = "EndDate";
|
|
516
|
-
const _EE = "EffectiveEnd";
|
|
517
|
-
const _EHC = "ExistingHourlyCommitment";
|
|
518
|
-
const _EMC = "EstimatedMonthlyCost";
|
|
519
|
-
const _EMODC = "EstimatedMonthlyOnDemandCost";
|
|
520
|
-
const _EMS = "EstimatedMonthlySavings";
|
|
521
|
-
const _EMSA = "EstimatedMonthlySavingsAmount";
|
|
522
|
-
const _EMSP = "EstimatedMonthlySavingsPercentage";
|
|
523
|
-
const _ENCU = "EstimatedNewCommitmentUtilization";
|
|
524
|
-
const _EO = "EffectiveOn";
|
|
525
|
-
const _EODC = "EstimatedOnDemandCost";
|
|
526
|
-
const _EODCWCC = "EstimatedOnDemandCostWithCurrentCommitment";
|
|
527
|
-
const _ERBPS = "EbsReadBytesPerSecond";
|
|
528
|
-
const _ERCFLP = "EstimatedReservationCostForLookbackPeriod";
|
|
529
|
-
const _EROI = "EstimatedROI";
|
|
530
|
-
const _EROPS = "EbsReadOpsPerSecond";
|
|
531
|
-
const _ERU = "ExpectedResourceUtilization";
|
|
532
|
-
const _ES = "EffectiveStart";
|
|
533
|
-
const _ESA = "EstimatedSavingsAmount";
|
|
534
|
-
const _ESID = "ESInstanceDetails";
|
|
535
|
-
const _ESP = "EstimatedSavingsPercentage";
|
|
536
|
-
const _ESPC = "EstimatedSPCost";
|
|
537
|
-
const _ETC = "EstimatedTotalCost";
|
|
538
|
-
const _ETMSA = "EstimatedTotalMonthlySavingsAmount";
|
|
539
|
-
const _EV = "EndValue";
|
|
540
|
-
const _EWBPS = "EbsWriteBytesPerSecond";
|
|
541
|
-
const _EWOPS = "EbsWriteOpsPerSecond";
|
|
542
|
-
const _Er = "Errors";
|
|
543
|
-
const _Es = "Estimated";
|
|
544
|
-
const _Ex = "Expression";
|
|
545
|
-
const _Exp = "Expressions";
|
|
546
|
-
const _F = "Feedback";
|
|
547
|
-
const _FR = "ForecastResult";
|
|
548
|
-
const _FRBT = "ForecastResultsByTime";
|
|
549
|
-
const _FRC = "FindingReasonCodes";
|
|
550
|
-
const _Fa = "Family";
|
|
551
|
-
const _Fi = "Filter";
|
|
552
|
-
const _Fr = "Frequency";
|
|
553
|
-
const _G = "Groups";
|
|
554
|
-
const _GA = "GetAnomalies";
|
|
555
|
-
const _GAM = "GetAnomalyMonitors";
|
|
556
|
-
const _GAMR = "GetAnomalyMonitorsRequest";
|
|
557
|
-
const _GAMRe = "GetAnomalyMonitorsResponse";
|
|
558
|
-
const _GAR = "GetAnomaliesRequest";
|
|
559
|
-
const _GARe = "GetAnomaliesResponse";
|
|
560
|
-
const _GAS = "GetAnomalySubscriptions";
|
|
561
|
-
const _GASR = "GetAnomalySubscriptionsRequest";
|
|
562
|
-
const _GASRe = "GetAnomalySubscriptionsResponse";
|
|
563
|
-
const _GAUR = "GetApproximateUsageRecords";
|
|
564
|
-
const _GAURR = "GetApproximateUsageRecordsRequest";
|
|
565
|
-
const _GAURRe = "GetApproximateUsageRecordsResponse";
|
|
566
|
-
const _GB = "GroupBy";
|
|
567
|
-
const _GCAU = "GetCostAndUsage";
|
|
568
|
-
const _GCAUC = "GetCostAndUsageComparisons";
|
|
569
|
-
const _GCAUCR = "GetCostAndUsageComparisonsRequest";
|
|
570
|
-
const _GCAUCRe = "GetCostAndUsageComparisonsResponse";
|
|
571
|
-
const _GCAUR = "GetCostAndUsageRequest";
|
|
572
|
-
const _GCAURe = "GetCostAndUsageResponse";
|
|
573
|
-
const _GCAUWR = "GetCostAndUsageWithResources";
|
|
574
|
-
const _GCAUWRR = "GetCostAndUsageWithResourcesRequest";
|
|
575
|
-
const _GCAUWRRe = "GetCostAndUsageWithResourcesResponse";
|
|
576
|
-
const _GCC = "GetCostCategories";
|
|
577
|
-
const _GCCD = "GetCostComparisonDrivers";
|
|
578
|
-
const _GCCDR = "GetCostComparisonDriversRequest";
|
|
579
|
-
const _GCCDRe = "GetCostComparisonDriversResponse";
|
|
580
|
-
const _GCCR = "GetCostCategoriesRequest";
|
|
581
|
-
const _GCCRe = "GetCostCategoriesResponse";
|
|
582
|
-
const _GCF = "GetCostForecast";
|
|
583
|
-
const _GCFR = "GetCostForecastRequest";
|
|
584
|
-
const _GCFRe = "GetCostForecastResponse";
|
|
585
|
-
const _GCPA = "GetCommitmentPurchaseAnalysis";
|
|
586
|
-
const _GCPAR = "GetCommitmentPurchaseAnalysisRequest";
|
|
587
|
-
const _GCPARe = "GetCommitmentPurchaseAnalysisResponse";
|
|
588
|
-
const _GCT = "GenerationCompletionTime";
|
|
589
|
-
const _GD = "GroupDefinitions";
|
|
590
|
-
const _GDV = "GetDimensionValues";
|
|
591
|
-
const _GDVR = "GetDimensionValuesRequest";
|
|
592
|
-
const _GDVRe = "GetDimensionValuesResponse";
|
|
593
|
-
const _GDr = "GroupDefinition";
|
|
594
|
-
const _GEE = "GenerationExistsException";
|
|
595
|
-
const _GRC = "GetReservationCoverage";
|
|
596
|
-
const _GRCR = "GetReservationCoverageRequest";
|
|
597
|
-
const _GRCRe = "GetReservationCoverageResponse";
|
|
598
|
-
const _GRPR = "GetReservationPurchaseRecommendation";
|
|
599
|
-
const _GRPRR = "GetReservationPurchaseRecommendationRequest";
|
|
600
|
-
const _GRPRRe = "GetReservationPurchaseRecommendationResponse";
|
|
601
|
-
const _GRR = "GetRightsizingRecommendation";
|
|
602
|
-
const _GRRR = "GetRightsizingRecommendationRequest";
|
|
603
|
-
const _GRRRe = "GetRightsizingRecommendationResponse";
|
|
604
|
-
const _GRU = "GetReservationUtilization";
|
|
605
|
-
const _GRUR = "GetReservationUtilizationRequest";
|
|
606
|
-
const _GRURe = "GetReservationUtilizationResponse";
|
|
607
|
-
const _GS = "GenerationSummary";
|
|
608
|
-
const _GSL = "GenerationSummaryList";
|
|
609
|
-
const _GSPC = "GetSavingsPlansCoverage";
|
|
610
|
-
const _GSPCR = "GetSavingsPlansCoverageRequest";
|
|
611
|
-
const _GSPCRe = "GetSavingsPlansCoverageResponse";
|
|
612
|
-
const _GSPPR = "GetSavingsPlansPurchaseRecommendation";
|
|
613
|
-
const _GSPPRD = "GetSavingsPlanPurchaseRecommendationDetails";
|
|
614
|
-
const _GSPPRDR = "GetSavingsPlanPurchaseRecommendationDetailsRequest";
|
|
615
|
-
const _GSPPRDRe = "GetSavingsPlanPurchaseRecommendationDetailsResponse";
|
|
616
|
-
const _GSPPRR = "GetSavingsPlansPurchaseRecommendationRequest";
|
|
617
|
-
const _GSPPRRe = "GetSavingsPlansPurchaseRecommendationResponse";
|
|
618
|
-
const _GSPU = "GetSavingsPlansUtilization";
|
|
619
|
-
const _GSPUD = "GetSavingsPlansUtilizationDetails";
|
|
620
|
-
const _GSPUDR = "GetSavingsPlansUtilizationDetailsRequest";
|
|
621
|
-
const _GSPUDRe = "GetSavingsPlansUtilizationDetailsResponse";
|
|
622
|
-
const _GSPUR = "GetSavingsPlansUtilizationRequest";
|
|
623
|
-
const _GSPURe = "GetSavingsPlansUtilizationResponse";
|
|
624
|
-
const _GST = "GenerationStartedTime";
|
|
625
|
-
const _GSe = "GenerationStatus";
|
|
626
|
-
const _GT = "GenerationTimestamp";
|
|
627
|
-
const _GTR = "GetTagsRequest";
|
|
628
|
-
const _GTRe = "GetTagsResponse";
|
|
629
|
-
const _GTe = "GetTags";
|
|
630
|
-
const _GUF = "GetUsageForecast";
|
|
631
|
-
const _GUFR = "GetUsageForecastRequest";
|
|
632
|
-
const _GUFRe = "GetUsageForecastResponse";
|
|
633
|
-
const _Gr = "Granularity";
|
|
634
|
-
const _Gro = "Group";
|
|
635
|
-
const _HCTP = "HourlyCommitmentToPurchase";
|
|
636
|
-
const _HODR = "HourlyOnDemandRate";
|
|
637
|
-
const _I = "Impact";
|
|
638
|
-
const _IC = "InstanceClass";
|
|
639
|
-
const _ID = "InstanceDetails";
|
|
640
|
-
const _IF = "InstanceFamily";
|
|
641
|
-
const _IN = "InstanceName";
|
|
642
|
-
const _INTE = "InvalidNextTokenException";
|
|
643
|
-
const _IS = "InstanceSize";
|
|
644
|
-
const _IT = "InstanceType";
|
|
645
|
-
const _IV = "InheritedValue";
|
|
646
|
-
const _K = "Key";
|
|
647
|
-
const _Ke = "Keys";
|
|
648
|
-
const _LA = "LinkedAccount";
|
|
649
|
-
const _LAN = "LinkedAccountName";
|
|
650
|
-
const _LBTP = "LookBackTimePeriod";
|
|
651
|
-
const _LCAT = "ListCostAllocationTags";
|
|
652
|
-
const _LCATBH = "ListCostAllocationTagBackfillHistory";
|
|
653
|
-
const _LCATBHR = "ListCostAllocationTagBackfillHistoryRequest";
|
|
654
|
-
const _LCATBHRi = "ListCostAllocationTagBackfillHistoryResponse";
|
|
655
|
-
const _LCATR = "ListCostAllocationTagsRequest";
|
|
656
|
-
const _LCATRi = "ListCostAllocationTagsResponse";
|
|
657
|
-
const _LCCD = "ListCostCategoryDefinitions";
|
|
658
|
-
const _LCCDR = "ListCostCategoryDefinitionsRequest";
|
|
659
|
-
const _LCCDRi = "ListCostCategoryDefinitionsResponse";
|
|
660
|
-
const _LCCRA = "ListCostCategoryResourceAssociations";
|
|
661
|
-
const _LCCRAR = "ListCostCategoryResourceAssociationsRequest";
|
|
662
|
-
const _LCCRARi = "ListCostCategoryResourceAssociationsResponse";
|
|
663
|
-
const _LCPA = "ListCommitmentPurchaseAnalyses";
|
|
664
|
-
const _LCPAR = "ListCommitmentPurchaseAnalysesRequest";
|
|
665
|
-
const _LCPARi = "ListCommitmentPurchaseAnalysesResponse";
|
|
666
|
-
const _LED = "LastEvaluatedDate";
|
|
667
|
-
const _LEE = "LimitExceededException";
|
|
668
|
-
const _LM = "LicenseModel";
|
|
669
|
-
const _LP = "LookbackPeriod";
|
|
670
|
-
const _LPID = "LookbackPeriodInDays";
|
|
671
|
-
const _LPIH = "LookbackPeriodInHours";
|
|
672
|
-
const _LSPPRG = "ListSavingsPlansPurchaseRecommendationGeneration";
|
|
673
|
-
const _LSPPRGR = "ListSavingsPlansPurchaseRecommendationGenerationRequest";
|
|
674
|
-
const _LSPPRGRi = "ListSavingsPlansPurchaseRecommendationGenerationResponse";
|
|
675
|
-
const _LTFR = "ListTagsForResource";
|
|
676
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
677
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
678
|
-
const _LUA = "LastUpdatedAt";
|
|
679
|
-
const _LUD = "LastUpdatedDate";
|
|
680
|
-
const _LUDa = "LastUsedDate";
|
|
681
|
-
const _LUT = "LatestUsageTimestamp";
|
|
682
|
-
const _M = "Message";
|
|
683
|
-
const _MA = "MonitorArn";
|
|
684
|
-
const _MAL = "MonitorArnList";
|
|
685
|
-
const _MC = "MonthlyCost";
|
|
686
|
-
const _MCUP = "MaxCpuUtilizationPercentage";
|
|
687
|
-
const _MD = "MonitorDimension";
|
|
688
|
-
const _MDBID = "MemoryDBInstanceDetails";
|
|
689
|
-
const _MFC = "MetricForComparison";
|
|
690
|
-
const _MI = "MaxImpact";
|
|
691
|
-
const _MMUP = "MaxMemoryUtilizationPercentage";
|
|
692
|
-
const _MN = "MonitorName";
|
|
693
|
-
const _MNOCUUPH = "MinimumNumberOfCapacityUnitsUsedPerHour";
|
|
694
|
-
const _MNOCUUPHa = "MaximumNumberOfCapacityUnitsUsedPerHour";
|
|
695
|
-
const _MNOIUPH = "MinimumNumberOfInstancesUsedPerHour";
|
|
696
|
-
const _MNOIUPHa = "MaximumNumberOfInstancesUsedPerHour";
|
|
697
|
-
const _MNUUPH = "MinimumNormalizedUnitsUsedPerHour";
|
|
698
|
-
const _MNUUPHa = "MaximumNormalizedUnitsUsedPerHour";
|
|
699
|
-
const _MO = "MatchOptions";
|
|
700
|
-
const _MOLP = "MetricsOverLookbackPeriod";
|
|
701
|
-
const _MR = "MaxResults";
|
|
702
|
-
const _MRD = "ModifyRecommendationDetail";
|
|
703
|
-
const _MS = "MonitorSpecification";
|
|
704
|
-
const _MSUP = "MaxStorageUtilizationPercentage";
|
|
705
|
-
const _MSa = "MaxScore";
|
|
706
|
-
const _MT = "MonitorType";
|
|
707
|
-
const _MV = "MeanValue";
|
|
708
|
-
const _MVe = "MetricValue";
|
|
709
|
-
const _Me = "Metrics";
|
|
710
|
-
const _Mem = "Memory";
|
|
711
|
-
const _Met = "Method";
|
|
712
|
-
const _Meta = "Metadata";
|
|
713
|
-
const _Metr = "Metric";
|
|
714
|
-
const _N = "Name";
|
|
715
|
-
const _NIBPS = "NetworkInBytesPerSecond";
|
|
716
|
-
const _NO = "NumericOperator";
|
|
717
|
-
const _NOBPS = "NetworkOutBytesPerSecond";
|
|
718
|
-
const _NOR = "NumberOfRules";
|
|
719
|
-
const _NP = "NetworkPerformance";
|
|
720
|
-
const _NPIPS = "NetworkPacketsInPerSecond";
|
|
721
|
-
const _NPOPS = "NetworkPacketsOutPerSecond";
|
|
722
|
-
const _NPT = "NextPageToken";
|
|
723
|
-
const _NRIS = "NetRISavings";
|
|
724
|
-
const _NRU = "NetworkResourceUtilization";
|
|
725
|
-
const _NS = "NetSavings";
|
|
726
|
-
const _NT = "NodeType";
|
|
727
|
-
const _NTe = "NextToken";
|
|
728
|
-
const _No = "Not";
|
|
729
|
-
const _O = "Or";
|
|
730
|
-
const _OC = "OfferingClass";
|
|
731
|
-
const _ODC = "OnDemandCost";
|
|
732
|
-
const _ODCE = "OnDemandCostEquivalent";
|
|
733
|
-
const _ODCORIHU = "OnDemandCostOfRIHoursUsed";
|
|
734
|
-
const _ODH = "OnDemandHours";
|
|
735
|
-
const _ODHILP = "OnDemandHoursInLookbackPeriod";
|
|
736
|
-
const _ODNU = "OnDemandNormalizedUnits";
|
|
737
|
-
const _OI = "OfferingId";
|
|
738
|
-
const _P = "Parameters";
|
|
739
|
-
const _PAF = "ProvideAnomalyFeedback";
|
|
740
|
-
const _PAFR = "ProvideAnomalyFeedbackRequest";
|
|
741
|
-
const _PAFRr = "ProvideAnomalyFeedbackResponse";
|
|
742
|
-
const _PD = "ProductDescription";
|
|
743
|
-
const _PDl = "PlatformDifferences";
|
|
744
|
-
const _PH = "PurchasedHours";
|
|
745
|
-
const _PIL = "PredictionIntervalLevel";
|
|
746
|
-
const _PILB = "PredictionIntervalLowerBound";
|
|
747
|
-
const _PIUB = "PredictionIntervalUpperBound";
|
|
748
|
-
const _PO = "PaymentOption";
|
|
749
|
-
const _PS = "ProcessingStatus";
|
|
750
|
-
const _PSa = "PageSize";
|
|
751
|
-
const _PU = "PurchasedUnits";
|
|
752
|
-
const _Pl = "Platform";
|
|
753
|
-
const _R = "Rules";
|
|
754
|
-
const _RA = "RequestedAt";
|
|
755
|
-
const _RAe = "ResourceArn";
|
|
756
|
-
const _RAes = "ReservationAggregates";
|
|
757
|
-
const _RBT = "ResultsByTime";
|
|
758
|
-
const _RBTe = "ResultByTime";
|
|
759
|
-
const _RC = "RootCauses";
|
|
760
|
-
const _RCD = "ReservedCapacityDetails";
|
|
761
|
-
const _RCE = "RequestChangedException";
|
|
762
|
-
const _RCG = "ReservationCoverageGroup";
|
|
763
|
-
const _RCGe = "ReservationCoverageGroups";
|
|
764
|
-
const _RCHILP = "ReservationCoveredHoursInLookbackPeriod";
|
|
765
|
-
const _RCI = "RootCauseImpact";
|
|
766
|
-
const _RCo = "RootCause";
|
|
767
|
-
const _RD = "ResourceDetails";
|
|
768
|
-
const _RDD = "RecommendationDetailData";
|
|
769
|
-
const _RDHM = "RecommendationDetailHourlyMetrics";
|
|
770
|
-
const _RDI = "RecommendationDetailId";
|
|
771
|
-
const _RDSID = "RDSInstanceDetails";
|
|
772
|
-
const _RDe = "RecommendationDetails";
|
|
773
|
-
const _RH = "ReservedHours";
|
|
774
|
-
const _RI = "ResourceId";
|
|
775
|
-
const _RICFUH = "RICostForUnusedHours";
|
|
776
|
-
const _RID = "RedshiftInstanceDetails";
|
|
777
|
-
const _RIe = "RecommendationId";
|
|
778
|
-
const _RIec = "RecommendationIds";
|
|
779
|
-
const _RN = "ResourceName";
|
|
780
|
-
const _RNFE = "ResourceNotFoundException";
|
|
781
|
-
const _RNOCUTP = "RecommendedNumberOfCapacityUnitsToPurchase";
|
|
782
|
-
const _RNOITP = "RecommendedNumberOfInstancesToPurchase";
|
|
783
|
-
const _RNU = "ReservedNormalizedUnits";
|
|
784
|
-
const _RNUTP = "RecommendedNormalizedUnitsToPurchase";
|
|
785
|
-
const _RPR = "ReservationPurchaseRecommendation";
|
|
786
|
-
const _RPRD = "ReservationPurchaseRecommendationDetail";
|
|
787
|
-
const _RPRDe = "ReservationPurchaseRecommendationDetails";
|
|
788
|
-
const _RPRM = "ReservationPurchaseRecommendationMetadata";
|
|
789
|
-
const _RPRS = "ReservationPurchaseRecommendationSummary";
|
|
790
|
-
const _RPRe = "ReservationPurchaseRecommendations";
|
|
791
|
-
const _RR = "RightsizingRecommendations";
|
|
792
|
-
const _RRC = "RightsizingRecommendationConfiguration";
|
|
793
|
-
const _RRL = "RightsizingRecommendationList";
|
|
794
|
-
const _RRM = "RightsizingRecommendationMetadata";
|
|
795
|
-
const _RRS = "RightsizingRecommendationSummary";
|
|
796
|
-
const _RRi = "RightsizingRecommendation";
|
|
797
|
-
const _RS = "ReturnSize";
|
|
798
|
-
const _RSMC = "RecurringStandardMonthlyCost";
|
|
799
|
-
const _RSe = "RealizedSavings";
|
|
800
|
-
const _RSec = "RecommendationSummary";
|
|
801
|
-
const _RT = "ResourceTags";
|
|
802
|
-
const _RTK = "ResourceTagKeys";
|
|
803
|
-
const _RTL = "ResourceTagList";
|
|
804
|
-
const _RTe = "ResourceTag";
|
|
805
|
-
const _RTec = "RecommendationTarget";
|
|
806
|
-
const _RTi = "RightsizingType";
|
|
807
|
-
const _RU = "ResourceUtilization";
|
|
808
|
-
const _RUG = "ReservationUtilizationGroup";
|
|
809
|
-
const _RUGe = "ReservationUtilizationGroups";
|
|
810
|
-
const _RV = "RuleVersion";
|
|
811
|
-
const _Re = "Region";
|
|
812
|
-
const _Rec = "Recommendations";
|
|
813
|
-
const _Ru = "Rule";
|
|
814
|
-
const _S = "Subscribers";
|
|
815
|
-
const _SA = "SubscriptionArn";
|
|
816
|
-
const _SAL = "SubscriptionArnList";
|
|
817
|
-
const _SB = "SortBy";
|
|
818
|
-
const _SCATB = "StartCostAllocationTagBackfill";
|
|
819
|
-
const _SCATBR = "StartCostAllocationTagBackfillRequest";
|
|
820
|
-
const _SCATBRt = "StartCostAllocationTagBackfillResponse";
|
|
821
|
-
const _SCBSP = "SpendCoveredBySavingsPlans";
|
|
822
|
-
const _SCC = "SavingsCurrencyCode";
|
|
823
|
-
const _SCPA = "StartCommitmentPurchaseAnalysis";
|
|
824
|
-
const _SCPAR = "StartCommitmentPurchaseAnalysisRequest";
|
|
825
|
-
const _SCPARt = "StartCommitmentPurchaseAnalysisResponse";
|
|
826
|
-
const _SCR = "SplitChargeRules";
|
|
827
|
-
const _SD = "StartDate";
|
|
828
|
-
const _SDo = "SortDefinition";
|
|
829
|
-
const _SDor = "SortDefinitions";
|
|
830
|
-
const _SFE = "SizeFlexEligible";
|
|
831
|
-
const _SN = "SubscriptionName";
|
|
832
|
-
const _SO = "SortOrder";
|
|
833
|
-
const _SP = "SavingsPercentage";
|
|
834
|
-
const _SPA = "SavingsPlanArn";
|
|
835
|
-
const _SPAC = "SavingsPlansAmortizedCommitment";
|
|
836
|
-
const _SPC = "SavingsPlansCoverages";
|
|
837
|
-
const _SPCD = "SavingsPlansCoverageData";
|
|
838
|
-
const _SPCHILP = "SavingsPlansCoveredHoursInLookbackPeriod";
|
|
839
|
-
const _SPCa = "SavingsPlansCommitment";
|
|
840
|
-
const _SPCav = "SavingsPlansCoverage";
|
|
841
|
-
const _SPD = "SavingsPlansDetails";
|
|
842
|
-
const _SPPAC = "SavingsPlansPurchaseAnalysisConfiguration";
|
|
843
|
-
const _SPPAD = "SavingsPlansPurchaseAnalysisDetails";
|
|
844
|
-
const _SPPR = "SavingsPlansPurchaseRecommendation";
|
|
845
|
-
const _SPPRD = "SavingsPlansPurchaseRecommendationDetails";
|
|
846
|
-
const _SPPRDL = "SavingsPlansPurchaseRecommendationDetailList";
|
|
847
|
-
const _SPPRDa = "SavingsPlansPurchaseRecommendationDetail";
|
|
848
|
-
const _SPPRM = "SavingsPlansPurchaseRecommendationMetadata";
|
|
849
|
-
const _SPPRS = "SavingsPlansPurchaseRecommendationSummary";
|
|
850
|
-
const _SPS = "SavingsPlansSavings";
|
|
851
|
-
const _SPT = "SavingsPlansType";
|
|
852
|
-
const _SPTA = "SavingsPlansToAdd";
|
|
853
|
-
const _SPTE = "SavingsPlansToExclude";
|
|
854
|
-
const _SPU = "SavingsPlansUtilization";
|
|
855
|
-
const _SPUA = "SavingsPlansUtilizationAggregates";
|
|
856
|
-
const _SPUBT = "SavingsPlansUtilizationsByTime";
|
|
857
|
-
const _SPUBTa = "SavingsPlansUtilizationByTime";
|
|
858
|
-
const _SPUD = "SavingsPlansUtilizationDetails";
|
|
859
|
-
const _SPUDa = "SavingsPlansUtilizationDetail";
|
|
860
|
-
const _SPa = "SavingsPlans";
|
|
861
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
862
|
-
const _SRT = "SupportedResourceTypes";
|
|
863
|
-
const _SS = "SearchString";
|
|
864
|
-
const _SSPPRG = "StartSavingsPlansPurchaseRecommendationGeneration";
|
|
865
|
-
const _SSPPRGR = "StartSavingsPlansPurchaseRecommendationGenerationRequest";
|
|
866
|
-
const _SSPPRGRt = "StartSavingsPlansPurchaseRecommendationGenerationResponse";
|
|
867
|
-
const _SSe = "ServiceSpecification";
|
|
868
|
-
const _ST = "StartTime";
|
|
869
|
-
const _SV = "StartValue";
|
|
870
|
-
const _Sa = "Savings";
|
|
871
|
-
const _Se = "Services";
|
|
872
|
-
const _Ser = "Service";
|
|
873
|
-
const _Sk = "Sku";
|
|
874
|
-
const _So = "Source";
|
|
875
|
-
const _St = "Status";
|
|
876
|
-
const _Sta = "Start";
|
|
877
|
-
const _Sto = "Storage";
|
|
878
|
-
const _Su = "Summary";
|
|
879
|
-
const _Sub = "Subscriber";
|
|
880
|
-
const _T = "Threshold";
|
|
881
|
-
const _TAC = "TotalAmortizedCommitment";
|
|
882
|
-
const _TAF = "TotalAmortizedFee";
|
|
883
|
-
const _TAH = "TotalActualHours";
|
|
884
|
-
const _TAS = "TotalActualSpend";
|
|
885
|
-
const _TAU = "TotalActualUnits";
|
|
886
|
-
const _TC = "TotalCost";
|
|
887
|
-
const _TCAU = "TotalCostAndUsage";
|
|
888
|
-
const _TCo = "TotalCommitment";
|
|
889
|
-
const _TE = "ThresholdExpression";
|
|
890
|
-
const _TEMSA = "TotalEstimatedMonthlySavingsAmount";
|
|
891
|
-
const _TEMSP = "TotalEstimatedMonthlySavingsPercentage";
|
|
892
|
-
const _TES = "TotalExpectedSpend";
|
|
893
|
-
const _TI = "TotalImpact";
|
|
894
|
-
const _TIF = "TotalImpactFilter";
|
|
895
|
-
const _TIL = "TargetInstancesList";
|
|
896
|
-
const _TIP = "TotalImpactPercentage";
|
|
897
|
-
const _TIY = "TermInYears";
|
|
898
|
-
const _TIa = "TargetInstances";
|
|
899
|
-
const _TIar = "TargetInstance";
|
|
900
|
-
const _TK = "TagKey";
|
|
901
|
-
const _TKa = "TagKeys";
|
|
902
|
-
const _TMTE = "TooManyTagsException";
|
|
903
|
-
const _TP = "TimePeriod";
|
|
904
|
-
const _TPRIS = "TotalPotentialRISavings";
|
|
905
|
-
const _TR = "TotalRecords";
|
|
906
|
-
const _TRC = "TotalRecommendationCount";
|
|
907
|
-
const _TRD = "TerminateRecommendationDetail";
|
|
908
|
-
const _TRH = "TotalRunningHours";
|
|
909
|
-
const _TRHILP = "TotalRunningHoursInLookbackPeriod";
|
|
910
|
-
const _TRNU = "TotalRunningNormalizedUnits";
|
|
911
|
-
const _TRR = "TagResourceRequest";
|
|
912
|
-
const _TRRa = "TagResourceResponse";
|
|
913
|
-
const _TRa = "TagResource";
|
|
914
|
-
const _TS = "TotalSize";
|
|
915
|
-
const _TV = "TagValues";
|
|
916
|
-
const _TVL = "TagValuesList";
|
|
917
|
-
const _Ta = "Targets";
|
|
918
|
-
const _Tag = "Tags";
|
|
919
|
-
const _Te = "Tenancy";
|
|
920
|
-
const _To = "Total";
|
|
921
|
-
const _Ty = "Type";
|
|
922
|
-
const _U = "Unit";
|
|
923
|
-
const _UAM = "UpdateAnomalyMonitor";
|
|
924
|
-
const _UAMR = "UpdateAnomalyMonitorRequest";
|
|
925
|
-
const _UAMRp = "UpdateAnomalyMonitorResponse";
|
|
926
|
-
const _UAS = "UpdateAnomalySubscription";
|
|
927
|
-
const _UASR = "UpdateAnomalySubscriptionRequest";
|
|
928
|
-
const _UASRp = "UpdateAnomalySubscriptionResponse";
|
|
929
|
-
const _UBT = "UtilizationsByTime";
|
|
930
|
-
const _UBTt = "UtilizationByTime";
|
|
931
|
-
const _UC = "UpfrontCost";
|
|
932
|
-
const _UCATS = "UpdateCostAllocationTagsStatus";
|
|
933
|
-
const _UCATSE = "UpdateCostAllocationTagsStatusError";
|
|
934
|
-
const _UCATSEp = "UpdateCostAllocationTagsStatusErrors";
|
|
935
|
-
const _UCATSR = "UpdateCostAllocationTagsStatusRequest";
|
|
936
|
-
const _UCATSRp = "UpdateCostAllocationTagsStatusResponse";
|
|
937
|
-
const _UCCD = "UpdateCostCategoryDefinition";
|
|
938
|
-
const _UCCDR = "UpdateCostCategoryDefinitionRequest";
|
|
939
|
-
const _UCCDRp = "UpdateCostCategoryDefinitionResponse";
|
|
940
|
-
const _UCn = "UnusedCommitment";
|
|
941
|
-
const _UCs = "UsedCommitment";
|
|
942
|
-
const _UH = "UnusedHours";
|
|
943
|
-
const _UME = "UnknownMonitorException";
|
|
944
|
-
const _UP = "UtilizationPercentage";
|
|
945
|
-
const _UPIU = "UtilizationPercentageInUnits";
|
|
946
|
-
const _UR = "UntagResource";
|
|
947
|
-
const _URR = "UntagResourceRequest";
|
|
948
|
-
const _URRn = "UntagResourceResponse";
|
|
949
|
-
const _US = "UnrealizedSavings";
|
|
950
|
-
const _USE = "UnknownSubscriptionException";
|
|
951
|
-
const _UT = "UsageType";
|
|
952
|
-
const _UU = "UnusedUnits";
|
|
953
|
-
const _UUUE = "UnresolvableUsageUnitException";
|
|
954
|
-
const _Ut = "Utilization";
|
|
955
|
-
const _V = "Values";
|
|
956
|
-
const _Va = "Value";
|
|
957
|
-
const _Vc = "Vcpu";
|
|
958
|
-
const _c = "client";
|
|
959
|
-
const _e = "error";
|
|
960
|
-
const _hE = "httpError";
|
|
961
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.costexplorer";
|
|
962
|
-
const n0 = "com.amazonaws.costexplorer";
|
|
963
|
-
var AnalysisDetails$ = [3, n0, _AD,
|
|
964
|
-
0,
|
|
965
|
-
[_SPPAD],
|
|
966
|
-
[() => SavingsPlansPurchaseAnalysisDetails$]
|
|
967
|
-
];
|
|
968
|
-
var AnalysisNotFoundException$ = [-3, n0, _ANFE,
|
|
969
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
970
|
-
[_M],
|
|
971
|
-
[0]
|
|
972
|
-
];
|
|
973
|
-
schema.TypeRegistry.for(n0).registerError(AnalysisNotFoundException$, AnalysisNotFoundException);
|
|
974
|
-
var AnalysisSummary$ = [3, n0, _AS,
|
|
975
|
-
0,
|
|
976
|
-
[_ECT, _ACT, _AST, _ASn, _EC, _AI, _CPAC],
|
|
977
|
-
[0, 0, 0, 0, 0, 0, () => CommitmentPurchaseAnalysisConfiguration$]
|
|
978
|
-
];
|
|
979
|
-
var Anomaly$ = [3, n0, _A,
|
|
980
|
-
0,
|
|
981
|
-
[_AIn, _ASno, _I, _MA, _ASD, _AED, _DV, _RC, _F],
|
|
982
|
-
[0, () => AnomalyScore$, () => Impact$, 0, 0, 0, 0, () => RootCauses, 0], 4
|
|
983
|
-
];
|
|
984
|
-
var AnomalyDateInterval$ = [3, n0, _ADI,
|
|
985
|
-
0,
|
|
986
|
-
[_SD, _ED],
|
|
987
|
-
[0, 0], 1
|
|
988
|
-
];
|
|
989
|
-
var AnomalyMonitor$ = [3, n0, _AM,
|
|
990
|
-
0,
|
|
991
|
-
[_MN, _MT, _MA, _CD, _LUD, _LED, _MD, _MS, _DVC],
|
|
992
|
-
[0, 0, 0, 0, 0, 0, 0, () => Expression$, 1], 2
|
|
993
|
-
];
|
|
994
|
-
var AnomalyScore$ = [3, n0, _ASno,
|
|
995
|
-
0,
|
|
996
|
-
[_MSa, _CS],
|
|
997
|
-
[1, 1], 2
|
|
998
|
-
];
|
|
999
|
-
var AnomalySubscription$ = [3, n0, _ASnom,
|
|
1000
|
-
0,
|
|
1001
|
-
[_MAL, _S, _Fr, _SN, _SA, _AIc, _T, _TE],
|
|
1002
|
-
[64 | 0, () => Subscribers, 0, 0, 0, 0, 1, () => Expression$], 4
|
|
1003
|
-
];
|
|
1004
|
-
var BackfillLimitExceededException$ = [-3, n0, _BLEE,
|
|
1005
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1006
|
-
[_M],
|
|
1007
|
-
[0]
|
|
1008
|
-
];
|
|
1009
|
-
schema.TypeRegistry.for(n0).registerError(BackfillLimitExceededException$, BackfillLimitExceededException);
|
|
1010
|
-
var BillExpirationException$ = [-3, n0, _BEE,
|
|
1011
|
-
{ [_e]: _c },
|
|
1012
|
-
[_M],
|
|
1013
|
-
[0]
|
|
1014
|
-
];
|
|
1015
|
-
schema.TypeRegistry.for(n0).registerError(BillExpirationException$, BillExpirationException);
|
|
1016
|
-
var BillingViewHealthStatusException$ = [-3, n0, _BVHSE,
|
|
1017
|
-
{ [_e]: _c },
|
|
1018
|
-
[_M],
|
|
1019
|
-
[0]
|
|
1020
|
-
];
|
|
1021
|
-
schema.TypeRegistry.for(n0).registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
|
|
1022
|
-
var CommitmentPurchaseAnalysisConfiguration$ = [3, n0, _CPAC,
|
|
1023
|
-
0,
|
|
1024
|
-
[_SPPAC],
|
|
1025
|
-
[() => SavingsPlansPurchaseAnalysisConfiguration$]
|
|
1026
|
-
];
|
|
1027
|
-
var ComparisonMetricValue$ = [3, n0, _CMV,
|
|
1028
|
-
0,
|
|
1029
|
-
[_BTPA, _CTPA, _D, _U],
|
|
1030
|
-
[0, 0, 0, 0]
|
|
1031
|
-
];
|
|
1032
|
-
var CostAllocationTag$ = [3, n0, _CAT,
|
|
1033
|
-
0,
|
|
1034
|
-
[_TK, _Ty, _St, _LUD, _LUDa],
|
|
1035
|
-
[0, 0, 0, 0, 0], 3
|
|
1036
|
-
];
|
|
1037
|
-
var CostAllocationTagBackfillRequest$ = [3, n0, _CATBR,
|
|
1038
|
-
0,
|
|
1039
|
-
[_BF, _RA, _CA, _BS, _LUA],
|
|
1040
|
-
[0, 0, 0, 0, 0]
|
|
1041
|
-
];
|
|
1042
|
-
var CostAllocationTagStatusEntry$ = [3, n0, _CATSE,
|
|
1043
|
-
0,
|
|
1044
|
-
[_TK, _St],
|
|
1045
|
-
[0, 0], 2
|
|
1046
|
-
];
|
|
1047
|
-
var CostAndUsageComparison$ = [3, n0, _CAUC,
|
|
1048
|
-
0,
|
|
1049
|
-
[_CAUS, _Me],
|
|
1050
|
-
[() => Expression$, () => ComparisonMetrics]
|
|
1051
|
-
];
|
|
1052
|
-
var CostCategory$ = [3, n0, _CC,
|
|
1053
|
-
0,
|
|
1054
|
-
[_CCA, _ES, _N, _RV, _R, _EE, _SCR, _PS, _DVe],
|
|
1055
|
-
[0, 0, 0, 0, () => CostCategoryRulesList, 0, () => CostCategorySplitChargeRulesList, () => CostCategoryProcessingStatusList, 0], 5
|
|
1056
|
-
];
|
|
1057
|
-
var CostCategoryInheritedValueDimension$ = [3, n0, _CCIVD,
|
|
1058
|
-
0,
|
|
1059
|
-
[_DN, _DK],
|
|
1060
|
-
[0, 0]
|
|
1061
|
-
];
|
|
1062
|
-
var CostCategoryProcessingStatus$ = [3, n0, _CCPS,
|
|
1063
|
-
0,
|
|
1064
|
-
[_C, _St],
|
|
1065
|
-
[0, 0]
|
|
1066
|
-
];
|
|
1067
|
-
var CostCategoryReference$ = [3, n0, _CCR,
|
|
1068
|
-
0,
|
|
1069
|
-
[_CCA, _N, _ES, _EE, _NOR, _PS, _V, _DVe, _SRT],
|
|
1070
|
-
[0, 0, 0, 0, 1, () => CostCategoryProcessingStatusList, 64 | 0, 0, 64 | 0]
|
|
1071
|
-
];
|
|
1072
|
-
var CostCategoryResourceAssociation$ = [3, n0, _CCRA,
|
|
1073
|
-
0,
|
|
1074
|
-
[_RAe, _CCN, _CCA],
|
|
1075
|
-
[0, 0, 0]
|
|
1076
|
-
];
|
|
1077
|
-
var CostCategoryRule$ = [3, n0, _CCRo,
|
|
1078
|
-
0,
|
|
1079
|
-
[_Va, _Ru, _IV, _Ty],
|
|
1080
|
-
[0, () => Expression$, () => CostCategoryInheritedValueDimension$, 0]
|
|
1081
|
-
];
|
|
1082
|
-
var CostCategorySplitChargeRule$ = [3, n0, _CCSCR,
|
|
1083
|
-
0,
|
|
1084
|
-
[_So, _Ta, _Met, _P],
|
|
1085
|
-
[0, 64 | 0, 0, () => CostCategorySplitChargeRuleParametersList], 3
|
|
1086
|
-
];
|
|
1087
|
-
var CostCategorySplitChargeRuleParameter$ = [3, n0, _CCSCRP,
|
|
1088
|
-
0,
|
|
1089
|
-
[_Ty, _V],
|
|
1090
|
-
[0, 64 | 0], 2
|
|
1091
|
-
];
|
|
1092
|
-
var CostCategoryValues$ = [3, n0, _CCV,
|
|
1093
|
-
0,
|
|
1094
|
-
[_K, _V, _MO],
|
|
1095
|
-
[0, 64 | 0, 64 | 0]
|
|
1096
|
-
];
|
|
1097
|
-
var CostComparisonDriver$ = [3, n0, _CCD,
|
|
1098
|
-
0,
|
|
1099
|
-
[_CSo, _Me, _CDo],
|
|
1100
|
-
[() => Expression$, () => ComparisonMetrics, () => CostDrivers]
|
|
1101
|
-
];
|
|
1102
|
-
var CostDriver$ = [3, n0, _CDos,
|
|
1103
|
-
0,
|
|
1104
|
-
[_Ty, _N, _Me],
|
|
1105
|
-
[0, 0, () => ComparisonMetrics]
|
|
1106
|
-
];
|
|
1107
|
-
var Coverage$ = [3, n0, _Co,
|
|
1108
|
-
0,
|
|
1109
|
-
[_CH, _CNU, _CCo],
|
|
1110
|
-
[() => CoverageHours$, () => CoverageNormalizedUnits$, () => CoverageCost$]
|
|
1111
|
-
];
|
|
1112
|
-
var CoverageByTime$ = [3, n0, _CBT,
|
|
1113
|
-
0,
|
|
1114
|
-
[_TP, _G, _To],
|
|
1115
|
-
[() => DateInterval$, () => ReservationCoverageGroups, () => Coverage$]
|
|
1116
|
-
];
|
|
1117
|
-
var CoverageCost$ = [3, n0, _CCo,
|
|
1118
|
-
0,
|
|
1119
|
-
[_ODC],
|
|
1120
|
-
[0]
|
|
1121
|
-
];
|
|
1122
|
-
var CoverageHours$ = [3, n0, _CH,
|
|
1123
|
-
0,
|
|
1124
|
-
[_ODH, _RH, _TRH, _CHP],
|
|
1125
|
-
[0, 0, 0, 0]
|
|
1126
|
-
];
|
|
1127
|
-
var CoverageNormalizedUnits$ = [3, n0, _CNU,
|
|
1128
|
-
0,
|
|
1129
|
-
[_ODNU, _RNU, _TRNU, _CNUP],
|
|
1130
|
-
[0, 0, 0, 0]
|
|
1131
|
-
];
|
|
1132
|
-
var CreateAnomalyMonitorRequest$ = [3, n0, _CAMR,
|
|
1133
|
-
0,
|
|
1134
|
-
[_AM, _RT],
|
|
1135
|
-
[() => AnomalyMonitor$, () => ResourceTagList], 1
|
|
1136
|
-
];
|
|
1137
|
-
var CreateAnomalyMonitorResponse$ = [3, n0, _CAMRr,
|
|
1138
|
-
0,
|
|
1139
|
-
[_MA],
|
|
1140
|
-
[0], 1
|
|
1141
|
-
];
|
|
1142
|
-
var CreateAnomalySubscriptionRequest$ = [3, n0, _CASR,
|
|
1143
|
-
0,
|
|
1144
|
-
[_ASnom, _RT],
|
|
1145
|
-
[() => AnomalySubscription$, () => ResourceTagList], 1
|
|
1146
|
-
];
|
|
1147
|
-
var CreateAnomalySubscriptionResponse$ = [3, n0, _CASRr,
|
|
1148
|
-
0,
|
|
1149
|
-
[_SA],
|
|
1150
|
-
[0], 1
|
|
1151
|
-
];
|
|
1152
|
-
var CreateCostCategoryDefinitionRequest$ = [3, n0, _CCCDR,
|
|
1153
|
-
0,
|
|
1154
|
-
[_N, _RV, _R, _ES, _DVe, _SCR, _RT],
|
|
1155
|
-
[0, 0, () => CostCategoryRulesList, 0, 0, () => CostCategorySplitChargeRulesList, () => ResourceTagList], 3
|
|
1156
|
-
];
|
|
1157
|
-
var CreateCostCategoryDefinitionResponse$ = [3, n0, _CCCDRr,
|
|
1158
|
-
0,
|
|
1159
|
-
[_CCA, _ES],
|
|
1160
|
-
[0, 0]
|
|
1161
|
-
];
|
|
1162
|
-
var CurrentInstance$ = [3, n0, _CI,
|
|
1163
|
-
0,
|
|
1164
|
-
[_RI, _IN, _Tag, _RD, _RU, _RCHILP, _SPCHILP, _ODHILP, _TRHILP, _MC, _CCu],
|
|
1165
|
-
[0, 0, () => TagValuesList, () => ResourceDetails$, () => ResourceUtilization$, 0, 0, 0, 0, 0, 0]
|
|
1166
|
-
];
|
|
1167
|
-
var DataUnavailableException$ = [-3, n0, _DUE,
|
|
1168
|
-
{ [_e]: _c },
|
|
1169
|
-
[_M],
|
|
1170
|
-
[0]
|
|
1171
|
-
];
|
|
1172
|
-
schema.TypeRegistry.for(n0).registerError(DataUnavailableException$, DataUnavailableException);
|
|
1173
|
-
var DateInterval$ = [3, n0, _DI,
|
|
1174
|
-
0,
|
|
1175
|
-
[_Sta, _E],
|
|
1176
|
-
[0, 0], 2
|
|
1177
|
-
];
|
|
1178
|
-
var DeleteAnomalyMonitorRequest$ = [3, n0, _DAMR,
|
|
1179
|
-
0,
|
|
1180
|
-
[_MA],
|
|
1181
|
-
[0], 1
|
|
1182
|
-
];
|
|
1183
|
-
var DeleteAnomalyMonitorResponse$ = [3, n0, _DAMRe,
|
|
1184
|
-
0,
|
|
1185
|
-
[],
|
|
1186
|
-
[]
|
|
1187
|
-
];
|
|
1188
|
-
var DeleteAnomalySubscriptionRequest$ = [3, n0, _DASR,
|
|
1189
|
-
0,
|
|
1190
|
-
[_SA],
|
|
1191
|
-
[0], 1
|
|
1192
|
-
];
|
|
1193
|
-
var DeleteAnomalySubscriptionResponse$ = [3, n0, _DASRe,
|
|
1194
|
-
0,
|
|
1195
|
-
[],
|
|
1196
|
-
[]
|
|
1197
|
-
];
|
|
1198
|
-
var DeleteCostCategoryDefinitionRequest$ = [3, n0, _DCCDR,
|
|
1199
|
-
0,
|
|
1200
|
-
[_CCA],
|
|
1201
|
-
[0], 1
|
|
1202
|
-
];
|
|
1203
|
-
var DeleteCostCategoryDefinitionResponse$ = [3, n0, _DCCDRe,
|
|
1204
|
-
0,
|
|
1205
|
-
[_CCA, _EE],
|
|
1206
|
-
[0, 0]
|
|
1207
|
-
];
|
|
1208
|
-
var DescribeCostCategoryDefinitionRequest$ = [3, n0, _DCCDRes,
|
|
1209
|
-
0,
|
|
1210
|
-
[_CCA, _EO],
|
|
1211
|
-
[0, 0], 1
|
|
1212
|
-
];
|
|
1213
|
-
var DescribeCostCategoryDefinitionResponse$ = [3, n0, _DCCDResc,
|
|
1214
|
-
0,
|
|
1215
|
-
[_CC],
|
|
1216
|
-
[() => CostCategory$]
|
|
1217
|
-
];
|
|
1218
|
-
var DimensionValues$ = [3, n0, _DVi,
|
|
1219
|
-
0,
|
|
1220
|
-
[_K, _V, _MO],
|
|
1221
|
-
[0, 64 | 0, 64 | 0]
|
|
1222
|
-
];
|
|
1223
|
-
var DimensionValuesWithAttributes$ = [3, n0, _DVWA,
|
|
1224
|
-
0,
|
|
1225
|
-
[_Va, _At],
|
|
1226
|
-
[0, 128 | 0]
|
|
1227
|
-
];
|
|
1228
|
-
var DiskResourceUtilization$ = [3, n0, _DRU,
|
|
1229
|
-
0,
|
|
1230
|
-
[_DROPS, _DWOPS, _DRBPS, _DWBPS],
|
|
1231
|
-
[0, 0, 0, 0]
|
|
1232
|
-
];
|
|
1233
|
-
var DynamoDBCapacityDetails$ = [3, n0, _DDBCD,
|
|
1234
|
-
0,
|
|
1235
|
-
[_CU, _Re],
|
|
1236
|
-
[0, 0]
|
|
1237
|
-
];
|
|
1238
|
-
var EBSResourceUtilization$ = [3, n0, _EBSRU,
|
|
1239
|
-
0,
|
|
1240
|
-
[_EROPS, _EWOPS, _ERBPS, _EWBPS],
|
|
1241
|
-
[0, 0, 0, 0]
|
|
1242
|
-
];
|
|
1243
|
-
var EC2InstanceDetails$ = [3, n0, _ECID,
|
|
1244
|
-
0,
|
|
1245
|
-
[_Fa, _IT, _Re, _AZ, _Pl, _Te, _CG, _SFE],
|
|
1246
|
-
[0, 0, 0, 0, 0, 0, 2, 2]
|
|
1247
|
-
];
|
|
1248
|
-
var EC2ResourceDetails$ = [3, n0, _ECRD,
|
|
1249
|
-
0,
|
|
1250
|
-
[_HODR, _IT, _Pl, _Re, _Sk, _Mem, _NP, _Sto, _Vc],
|
|
1251
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1252
|
-
];
|
|
1253
|
-
var EC2ResourceUtilization$ = [3, n0, _ECRU,
|
|
1254
|
-
0,
|
|
1255
|
-
[_MCUP, _MMUP, _MSUP, _EBSRU, _DRU, _NRU],
|
|
1256
|
-
[0, 0, 0, () => EBSResourceUtilization$, () => DiskResourceUtilization$, () => NetworkResourceUtilization$]
|
|
1257
|
-
];
|
|
1258
|
-
var EC2Specification$ = [3, n0, _ECS,
|
|
1259
|
-
0,
|
|
1260
|
-
[_OC],
|
|
1261
|
-
[0]
|
|
1262
|
-
];
|
|
1263
|
-
var ElastiCacheInstanceDetails$ = [3, n0, _ECIDl,
|
|
1264
|
-
0,
|
|
1265
|
-
[_Fa, _NT, _Re, _PD, _CG, _SFE],
|
|
1266
|
-
[0, 0, 0, 0, 2, 2]
|
|
1267
|
-
];
|
|
1268
|
-
var ESInstanceDetails$ = [3, n0, _ESID,
|
|
1269
|
-
0,
|
|
1270
|
-
[_IC, _IS, _Re, _CG, _SFE],
|
|
1271
|
-
[0, 0, 0, 2, 2]
|
|
1272
|
-
];
|
|
1273
|
-
var Expression$ = [3, n0, _Ex,
|
|
1274
|
-
0,
|
|
1275
|
-
[_O, _An, _No, _Di, _Tag, _CCos],
|
|
1276
|
-
[() => Expressions, () => Expressions, () => Expression$, () => DimensionValues$, () => TagValues$, () => CostCategoryValues$]
|
|
1277
|
-
];
|
|
1278
|
-
var ForecastResult$ = [3, n0, _FR,
|
|
1279
|
-
0,
|
|
1280
|
-
[_TP, _MV, _PILB, _PIUB],
|
|
1281
|
-
[() => DateInterval$, 0, 0, 0]
|
|
1282
|
-
];
|
|
1283
|
-
var GenerationExistsException$ = [-3, n0, _GEE,
|
|
1284
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1285
|
-
[_M],
|
|
1286
|
-
[0]
|
|
1287
|
-
];
|
|
1288
|
-
schema.TypeRegistry.for(n0).registerError(GenerationExistsException$, GenerationExistsException);
|
|
1289
|
-
var GenerationSummary$ = [3, n0, _GS,
|
|
1290
|
-
0,
|
|
1291
|
-
[_RIe, _GSe, _GST, _GCT, _ECT],
|
|
1292
|
-
[0, 0, 0, 0, 0]
|
|
1293
|
-
];
|
|
1294
|
-
var GetAnomaliesRequest$ = [3, n0, _GAR,
|
|
1295
|
-
0,
|
|
1296
|
-
[_DI, _MA, _F, _TI, _NPT, _MR],
|
|
1297
|
-
[() => AnomalyDateInterval$, 0, 0, () => TotalImpactFilter$, 0, 1], 1
|
|
1298
|
-
];
|
|
1299
|
-
var GetAnomaliesResponse$ = [3, n0, _GARe,
|
|
1300
|
-
0,
|
|
1301
|
-
[_Ano, _NPT],
|
|
1302
|
-
[() => Anomalies, 0], 1
|
|
1303
|
-
];
|
|
1304
|
-
var GetAnomalyMonitorsRequest$ = [3, n0, _GAMR,
|
|
1305
|
-
0,
|
|
1306
|
-
[_MAL, _NPT, _MR],
|
|
1307
|
-
[64 | 0, 0, 1]
|
|
1308
|
-
];
|
|
1309
|
-
var GetAnomalyMonitorsResponse$ = [3, n0, _GAMRe,
|
|
1310
|
-
0,
|
|
1311
|
-
[_AMn, _NPT],
|
|
1312
|
-
[() => AnomalyMonitors, 0], 1
|
|
1313
|
-
];
|
|
1314
|
-
var GetAnomalySubscriptionsRequest$ = [3, n0, _GASR,
|
|
1315
|
-
0,
|
|
1316
|
-
[_SAL, _MA, _NPT, _MR],
|
|
1317
|
-
[64 | 0, 0, 0, 1]
|
|
1318
|
-
];
|
|
1319
|
-
var GetAnomalySubscriptionsResponse$ = [3, n0, _GASRe,
|
|
1320
|
-
0,
|
|
1321
|
-
[_ASnoma, _NPT],
|
|
1322
|
-
[() => AnomalySubscriptions, 0], 1
|
|
1323
|
-
];
|
|
1324
|
-
var GetApproximateUsageRecordsRequest$ = [3, n0, _GAURR,
|
|
1325
|
-
0,
|
|
1326
|
-
[_Gr, _ADp, _Se],
|
|
1327
|
-
[0, 0, 64 | 0], 2
|
|
1328
|
-
];
|
|
1329
|
-
var GetApproximateUsageRecordsResponse$ = [3, n0, _GAURRe,
|
|
1330
|
-
0,
|
|
1331
|
-
[_Se, _TR, _LP],
|
|
1332
|
-
[128 | 1, 1, () => DateInterval$]
|
|
1333
|
-
];
|
|
1334
|
-
var GetCommitmentPurchaseAnalysisRequest$ = [3, n0, _GCPAR,
|
|
1335
|
-
0,
|
|
1336
|
-
[_AI],
|
|
1337
|
-
[0], 1
|
|
1338
|
-
];
|
|
1339
|
-
var GetCommitmentPurchaseAnalysisResponse$ = [3, n0, _GCPARe,
|
|
1340
|
-
0,
|
|
1341
|
-
[_ECT, _AST, _AI, _ASn, _CPAC, _ACT, _EC, _AD],
|
|
1342
|
-
[0, 0, 0, 0, () => CommitmentPurchaseAnalysisConfiguration$, 0, 0, () => AnalysisDetails$], 5
|
|
1343
|
-
];
|
|
1344
|
-
var GetCostAndUsageComparisonsRequest$ = [3, n0, _GCAUCR,
|
|
1345
|
-
0,
|
|
1346
|
-
[_BTP, _CTP, _MFC, _BVA, _Fi, _GB, _MR, _NPT],
|
|
1347
|
-
[() => DateInterval$, () => DateInterval$, 0, 0, () => Expression$, () => GroupDefinitions, 1, 0], 3
|
|
1348
|
-
];
|
|
1349
|
-
var GetCostAndUsageComparisonsResponse$ = [3, n0, _GCAUCRe,
|
|
1350
|
-
0,
|
|
1351
|
-
[_CAUCo, _TCAU, _NPT],
|
|
1352
|
-
[() => CostAndUsageComparisons, () => ComparisonMetrics, 0]
|
|
1353
|
-
];
|
|
1354
|
-
var GetCostAndUsageRequest$ = [3, n0, _GCAUR,
|
|
1355
|
-
0,
|
|
1356
|
-
[_TP, _Gr, _Me, _Fi, _GB, _BVA, _NPT],
|
|
1357
|
-
[() => DateInterval$, 0, 64 | 0, () => Expression$, () => GroupDefinitions, 0, 0], 3
|
|
1358
|
-
];
|
|
1359
|
-
var GetCostAndUsageResponse$ = [3, n0, _GCAURe,
|
|
1360
|
-
0,
|
|
1361
|
-
[_NPT, _GD, _RBT, _DVA],
|
|
1362
|
-
[0, () => GroupDefinitions, () => ResultsByTime, () => DimensionValuesWithAttributesList]
|
|
1363
|
-
];
|
|
1364
|
-
var GetCostAndUsageWithResourcesRequest$ = [3, n0, _GCAUWRR,
|
|
1365
|
-
0,
|
|
1366
|
-
[_TP, _Gr, _Fi, _Me, _GB, _BVA, _NPT],
|
|
1367
|
-
[() => DateInterval$, 0, () => Expression$, 64 | 0, () => GroupDefinitions, 0, 0], 3
|
|
1368
|
-
];
|
|
1369
|
-
var GetCostAndUsageWithResourcesResponse$ = [3, n0, _GCAUWRRe,
|
|
1370
|
-
0,
|
|
1371
|
-
[_NPT, _GD, _RBT, _DVA],
|
|
1372
|
-
[0, () => GroupDefinitions, () => ResultsByTime, () => DimensionValuesWithAttributesList]
|
|
1373
|
-
];
|
|
1374
|
-
var GetCostCategoriesRequest$ = [3, n0, _GCCR,
|
|
1375
|
-
0,
|
|
1376
|
-
[_TP, _SS, _CCN, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1377
|
-
[() => DateInterval$, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 1
|
|
1378
|
-
];
|
|
1379
|
-
var GetCostCategoriesResponse$ = [3, n0, _GCCRe,
|
|
1380
|
-
0,
|
|
1381
|
-
[_RS, _TS, _NPT, _CCNo, _CCV],
|
|
1382
|
-
[1, 1, 0, 64 | 0, 64 | 0], 2
|
|
1383
|
-
];
|
|
1384
|
-
var GetCostComparisonDriversRequest$ = [3, n0, _GCCDR,
|
|
1385
|
-
0,
|
|
1386
|
-
[_BTP, _CTP, _MFC, _BVA, _Fi, _GB, _MR, _NPT],
|
|
1387
|
-
[() => DateInterval$, () => DateInterval$, 0, 0, () => Expression$, () => GroupDefinitions, 1, 0], 3
|
|
1388
|
-
];
|
|
1389
|
-
var GetCostComparisonDriversResponse$ = [3, n0, _GCCDRe,
|
|
1390
|
-
0,
|
|
1391
|
-
[_CCDo, _NPT],
|
|
1392
|
-
[() => CostComparisonDrivers, 0]
|
|
1393
|
-
];
|
|
1394
|
-
var GetCostForecastRequest$ = [3, n0, _GCFR,
|
|
1395
|
-
0,
|
|
1396
|
-
[_TP, _Metr, _Gr, _Fi, _BVA, _PIL],
|
|
1397
|
-
[() => DateInterval$, 0, 0, () => Expression$, 0, 1], 3
|
|
1398
|
-
];
|
|
1399
|
-
var GetCostForecastResponse$ = [3, n0, _GCFRe,
|
|
1400
|
-
0,
|
|
1401
|
-
[_To, _FRBT],
|
|
1402
|
-
[() => MetricValue$, () => ForecastResultsByTime]
|
|
1403
|
-
];
|
|
1404
|
-
var GetDimensionValuesRequest$ = [3, n0, _GDVR,
|
|
1405
|
-
0,
|
|
1406
|
-
[_TP, _Dim, _SS, _Con, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1407
|
-
[() => DateInterval$, 0, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 2
|
|
1408
|
-
];
|
|
1409
|
-
var GetDimensionValuesResponse$ = [3, n0, _GDVRe,
|
|
1410
|
-
0,
|
|
1411
|
-
[_DVi, _RS, _TS, _NPT],
|
|
1412
|
-
[() => DimensionValuesWithAttributesList, 1, 1, 0], 3
|
|
1413
|
-
];
|
|
1414
|
-
var GetReservationCoverageRequest$ = [3, n0, _GRCR,
|
|
1415
|
-
0,
|
|
1416
|
-
[_TP, _GB, _Gr, _Fi, _Me, _NPT, _SB, _MR],
|
|
1417
|
-
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, 64 | 0, 0, () => SortDefinition$, 1], 1
|
|
1418
|
-
];
|
|
1419
|
-
var GetReservationCoverageResponse$ = [3, n0, _GRCRe,
|
|
1420
|
-
0,
|
|
1421
|
-
[_CBTo, _To, _NPT],
|
|
1422
|
-
[() => CoveragesByTime, () => Coverage$, 0], 1
|
|
1423
|
-
];
|
|
1424
|
-
var GetReservationPurchaseRecommendationRequest$ = [3, n0, _GRPRR,
|
|
1425
|
-
0,
|
|
1426
|
-
[_Ser, _AIc, _Fi, _ASc, _LPID, _TIY, _PO, _SSe, _PSa, _NPT],
|
|
1427
|
-
[0, 0, () => Expression$, 0, 0, 0, 0, () => ServiceSpecification$, 1, 0], 1
|
|
1428
|
-
];
|
|
1429
|
-
var GetReservationPurchaseRecommendationResponse$ = [3, n0, _GRPRRe,
|
|
1430
|
-
0,
|
|
1431
|
-
[_Meta, _Rec, _NPT],
|
|
1432
|
-
[() => ReservationPurchaseRecommendationMetadata$, () => ReservationPurchaseRecommendations, 0]
|
|
1433
|
-
];
|
|
1434
|
-
var GetReservationUtilizationRequest$ = [3, n0, _GRUR,
|
|
1435
|
-
0,
|
|
1436
|
-
[_TP, _GB, _Gr, _Fi, _SB, _NPT, _MR],
|
|
1437
|
-
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, () => SortDefinition$, 0, 1], 1
|
|
1438
|
-
];
|
|
1439
|
-
var GetReservationUtilizationResponse$ = [3, n0, _GRURe,
|
|
1440
|
-
0,
|
|
1441
|
-
[_UBT, _To, _NPT],
|
|
1442
|
-
[() => UtilizationsByTime, () => ReservationAggregates$, 0], 1
|
|
1443
|
-
];
|
|
1444
|
-
var GetRightsizingRecommendationRequest$ = [3, n0, _GRRR,
|
|
1445
|
-
0,
|
|
1446
|
-
[_Ser, _Fi, _Conf, _PSa, _NPT],
|
|
1447
|
-
[0, () => Expression$, () => RightsizingRecommendationConfiguration$, 1, 0], 1
|
|
1448
|
-
];
|
|
1449
|
-
var GetRightsizingRecommendationResponse$ = [3, n0, _GRRRe,
|
|
1450
|
-
0,
|
|
1451
|
-
[_Meta, _Su, _RR, _NPT, _Conf],
|
|
1452
|
-
[() => RightsizingRecommendationMetadata$, () => RightsizingRecommendationSummary$, () => RightsizingRecommendationList, 0, () => RightsizingRecommendationConfiguration$]
|
|
1453
|
-
];
|
|
1454
|
-
var GetSavingsPlanPurchaseRecommendationDetailsRequest$ = [3, n0, _GSPPRDR,
|
|
1455
|
-
0,
|
|
1456
|
-
[_RDI],
|
|
1457
|
-
[0], 1
|
|
1458
|
-
];
|
|
1459
|
-
var GetSavingsPlanPurchaseRecommendationDetailsResponse$ = [3, n0, _GSPPRDRe,
|
|
1460
|
-
0,
|
|
1461
|
-
[_RDI, _RDD],
|
|
1462
|
-
[0, () => RecommendationDetailData$]
|
|
1463
|
-
];
|
|
1464
|
-
var GetSavingsPlansCoverageRequest$ = [3, n0, _GSPCR,
|
|
1465
|
-
0,
|
|
1466
|
-
[_TP, _GB, _Gr, _Fi, _Me, _NTe, _MR, _SB],
|
|
1467
|
-
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, 64 | 0, 0, 1, () => SortDefinition$], 1
|
|
1468
|
-
];
|
|
1469
|
-
var GetSavingsPlansCoverageResponse$ = [3, n0, _GSPCRe,
|
|
1470
|
-
0,
|
|
1471
|
-
[_SPC, _NTe],
|
|
1472
|
-
[() => SavingsPlansCoverages, 0], 1
|
|
1473
|
-
];
|
|
1474
|
-
var GetSavingsPlansPurchaseRecommendationRequest$ = [3, n0, _GSPPRR,
|
|
1475
|
-
0,
|
|
1476
|
-
[_SPT, _TIY, _PO, _LPID, _ASc, _NPT, _PSa, _Fi],
|
|
1477
|
-
[0, 0, 0, 0, 0, 0, 1, () => Expression$], 4
|
|
1478
|
-
];
|
|
1479
|
-
var GetSavingsPlansPurchaseRecommendationResponse$ = [3, n0, _GSPPRRe,
|
|
1480
|
-
0,
|
|
1481
|
-
[_Meta, _SPPR, _NPT],
|
|
1482
|
-
[() => SavingsPlansPurchaseRecommendationMetadata$, () => SavingsPlansPurchaseRecommendation$, 0]
|
|
1483
|
-
];
|
|
1484
|
-
var GetSavingsPlansUtilizationDetailsRequest$ = [3, n0, _GSPUDR,
|
|
1485
|
-
0,
|
|
1486
|
-
[_TP, _Fi, _DT, _NTe, _MR, _SB],
|
|
1487
|
-
[() => DateInterval$, () => Expression$, 64 | 0, 0, 1, () => SortDefinition$], 1
|
|
1488
|
-
];
|
|
1489
|
-
var GetSavingsPlansUtilizationDetailsResponse$ = [3, n0, _GSPUDRe,
|
|
1490
|
-
0,
|
|
1491
|
-
[_SPUD, _TP, _To, _NTe],
|
|
1492
|
-
[() => SavingsPlansUtilizationDetails, () => DateInterval$, () => SavingsPlansUtilizationAggregates$, 0], 2
|
|
1493
|
-
];
|
|
1494
|
-
var GetSavingsPlansUtilizationRequest$ = [3, n0, _GSPUR,
|
|
1495
|
-
0,
|
|
1496
|
-
[_TP, _Gr, _Fi, _SB],
|
|
1497
|
-
[() => DateInterval$, 0, () => Expression$, () => SortDefinition$], 1
|
|
1498
|
-
];
|
|
1499
|
-
var GetSavingsPlansUtilizationResponse$ = [3, n0, _GSPURe,
|
|
1500
|
-
0,
|
|
1501
|
-
[_To, _SPUBT],
|
|
1502
|
-
[() => SavingsPlansUtilizationAggregates$, () => SavingsPlansUtilizationsByTime], 1
|
|
1503
|
-
];
|
|
1504
|
-
var GetTagsRequest$ = [3, n0, _GTR,
|
|
1505
|
-
0,
|
|
1506
|
-
[_TP, _SS, _TK, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1507
|
-
[() => DateInterval$, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 1
|
|
1508
|
-
];
|
|
1509
|
-
var GetTagsResponse$ = [3, n0, _GTRe,
|
|
1510
|
-
0,
|
|
1511
|
-
[_Tag, _RS, _TS, _NPT],
|
|
1512
|
-
[64 | 0, 1, 1, 0], 3
|
|
1513
|
-
];
|
|
1514
|
-
var GetUsageForecastRequest$ = [3, n0, _GUFR,
|
|
1515
|
-
0,
|
|
1516
|
-
[_TP, _Metr, _Gr, _Fi, _BVA, _PIL],
|
|
1517
|
-
[() => DateInterval$, 0, 0, () => Expression$, 0, 1], 3
|
|
1518
|
-
];
|
|
1519
|
-
var GetUsageForecastResponse$ = [3, n0, _GUFRe,
|
|
1520
|
-
0,
|
|
1521
|
-
[_To, _FRBT],
|
|
1522
|
-
[() => MetricValue$, () => ForecastResultsByTime]
|
|
1523
|
-
];
|
|
1524
|
-
var Group$ = [3, n0, _Gro,
|
|
1525
|
-
0,
|
|
1526
|
-
[_Ke, _Me],
|
|
1527
|
-
[64 | 0, () => Metrics]
|
|
1528
|
-
];
|
|
1529
|
-
var GroupDefinition$ = [3, n0, _GDr,
|
|
1530
|
-
0,
|
|
1531
|
-
[_Ty, _K],
|
|
1532
|
-
[0, 0]
|
|
1533
|
-
];
|
|
1534
|
-
var Impact$ = [3, n0, _I,
|
|
1535
|
-
0,
|
|
1536
|
-
[_MI, _TI, _TAS, _TES, _TIP],
|
|
1537
|
-
[1, 1, 1, 1, 1], 1
|
|
1538
|
-
];
|
|
1539
|
-
var InstanceDetails$ = [3, n0, _ID,
|
|
1540
|
-
0,
|
|
1541
|
-
[_ECID, _RDSID, _RID, _ECIDl, _ESID, _MDBID],
|
|
1542
|
-
[() => EC2InstanceDetails$, () => RDSInstanceDetails$, () => RedshiftInstanceDetails$, () => ElastiCacheInstanceDetails$, () => ESInstanceDetails$, () => MemoryDBInstanceDetails$]
|
|
1543
|
-
];
|
|
1544
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1545
|
-
{ [_e]: _c },
|
|
1546
|
-
[_M],
|
|
1547
|
-
[0]
|
|
1548
|
-
];
|
|
1549
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1550
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1551
|
-
{ [_e]: _c },
|
|
1552
|
-
[_M],
|
|
1553
|
-
[0]
|
|
1554
|
-
];
|
|
1555
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1556
|
-
var ListCommitmentPurchaseAnalysesRequest$ = [3, n0, _LCPAR,
|
|
1557
|
-
0,
|
|
1558
|
-
[_ASn, _NPT, _PSa, _AIna],
|
|
1559
|
-
[0, 0, 1, 64 | 0]
|
|
1560
|
-
];
|
|
1561
|
-
var ListCommitmentPurchaseAnalysesResponse$ = [3, n0, _LCPARi,
|
|
1562
|
-
0,
|
|
1563
|
-
[_ASL, _NPT],
|
|
1564
|
-
[() => AnalysisSummaryList, 0]
|
|
1565
|
-
];
|
|
1566
|
-
var ListCostAllocationTagBackfillHistoryRequest$ = [3, n0, _LCATBHR,
|
|
1567
|
-
0,
|
|
1568
|
-
[_NTe, _MR],
|
|
1569
|
-
[0, 1]
|
|
1570
|
-
];
|
|
1571
|
-
var ListCostAllocationTagBackfillHistoryResponse$ = [3, n0, _LCATBHRi,
|
|
1572
|
-
0,
|
|
1573
|
-
[_BR, _NTe],
|
|
1574
|
-
[() => CostAllocationTagBackfillRequestList, 0]
|
|
1575
|
-
];
|
|
1576
|
-
var ListCostAllocationTagsRequest$ = [3, n0, _LCATR,
|
|
1577
|
-
0,
|
|
1578
|
-
[_St, _TKa, _Ty, _NTe, _MR],
|
|
1579
|
-
[0, 64 | 0, 0, 0, 1]
|
|
1580
|
-
];
|
|
1581
|
-
var ListCostAllocationTagsResponse$ = [3, n0, _LCATRi,
|
|
1582
|
-
0,
|
|
1583
|
-
[_CATo, _NTe],
|
|
1584
|
-
[() => CostAllocationTagList, 0]
|
|
1585
|
-
];
|
|
1586
|
-
var ListCostCategoryDefinitionsRequest$ = [3, n0, _LCCDR,
|
|
1587
|
-
0,
|
|
1588
|
-
[_EO, _NTe, _MR, _SRT],
|
|
1589
|
-
[0, 0, 1, 64 | 0]
|
|
1590
|
-
];
|
|
1591
|
-
var ListCostCategoryDefinitionsResponse$ = [3, n0, _LCCDRi,
|
|
1592
|
-
0,
|
|
1593
|
-
[_CCRos, _NTe],
|
|
1594
|
-
[() => CostCategoryReferencesList, 0]
|
|
1595
|
-
];
|
|
1596
|
-
var ListCostCategoryResourceAssociationsRequest$ = [3, n0, _LCCRAR,
|
|
1597
|
-
0,
|
|
1598
|
-
[_CCA, _NTe, _MR],
|
|
1599
|
-
[0, 0, 1]
|
|
1600
|
-
];
|
|
1601
|
-
var ListCostCategoryResourceAssociationsResponse$ = [3, n0, _LCCRARi,
|
|
1602
|
-
0,
|
|
1603
|
-
[_CCRAo, _NTe],
|
|
1604
|
-
[() => CostCategoryResourceAssociations, 0]
|
|
1605
|
-
];
|
|
1606
|
-
var ListSavingsPlansPurchaseRecommendationGenerationRequest$ = [3, n0, _LSPPRGR,
|
|
1607
|
-
0,
|
|
1608
|
-
[_GSe, _RIec, _PSa, _NPT],
|
|
1609
|
-
[0, 64 | 0, 1, 0]
|
|
1610
|
-
];
|
|
1611
|
-
var ListSavingsPlansPurchaseRecommendationGenerationResponse$ = [3, n0, _LSPPRGRi,
|
|
1612
|
-
0,
|
|
1613
|
-
[_GSL, _NPT],
|
|
1614
|
-
[() => GenerationSummaryList, 0]
|
|
1615
|
-
];
|
|
1616
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1617
|
-
0,
|
|
1618
|
-
[_RAe],
|
|
1619
|
-
[0], 1
|
|
1620
|
-
];
|
|
1621
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1622
|
-
0,
|
|
1623
|
-
[_RT],
|
|
1624
|
-
[() => ResourceTagList]
|
|
1625
|
-
];
|
|
1626
|
-
var MemoryDBInstanceDetails$ = [3, n0, _MDBID,
|
|
1627
|
-
0,
|
|
1628
|
-
[_Fa, _NT, _Re, _CG, _SFE],
|
|
1629
|
-
[0, 0, 0, 2, 2]
|
|
1630
|
-
];
|
|
1631
|
-
var MetricValue$ = [3, n0, _MVe,
|
|
1632
|
-
0,
|
|
1633
|
-
[_Am, _U],
|
|
1634
|
-
[0, 0]
|
|
1635
|
-
];
|
|
1636
|
-
var ModifyRecommendationDetail$ = [3, n0, _MRD,
|
|
1637
|
-
0,
|
|
1638
|
-
[_TIa],
|
|
1639
|
-
[() => TargetInstancesList]
|
|
1640
|
-
];
|
|
1641
|
-
var NetworkResourceUtilization$ = [3, n0, _NRU,
|
|
1642
|
-
0,
|
|
1643
|
-
[_NIBPS, _NOBPS, _NPIPS, _NPOPS],
|
|
1644
|
-
[0, 0, 0, 0]
|
|
1645
|
-
];
|
|
1646
|
-
var ProvideAnomalyFeedbackRequest$ = [3, n0, _PAFR,
|
|
1647
|
-
0,
|
|
1648
|
-
[_AIn, _F],
|
|
1649
|
-
[0, 0], 2
|
|
1650
|
-
];
|
|
1651
|
-
var ProvideAnomalyFeedbackResponse$ = [3, n0, _PAFRr,
|
|
1652
|
-
0,
|
|
1653
|
-
[_AIn],
|
|
1654
|
-
[0], 1
|
|
1655
|
-
];
|
|
1656
|
-
var RDSInstanceDetails$ = [3, n0, _RDSID,
|
|
1657
|
-
0,
|
|
1658
|
-
[_Fa, _IT, _Re, _DE, _DEa, _DO, _LM, _CG, _SFE, _DM],
|
|
1659
|
-
[0, 0, 0, 0, 0, 0, 0, 2, 2, 0]
|
|
1660
|
-
];
|
|
1661
|
-
var RecommendationDetailData$ = [3, n0, _RDD,
|
|
1662
|
-
0,
|
|
1663
|
-
[_ASc, _LPID, _SPT, _TIY, _PO, _AIc, _CCu, _IF, _Re, _OI, _GT, _LUT, _CAHODS, _CMHODS, _CMHODSu, _EAU, _EMSA, _EODC, _EODCWCC, _EROI, _ESPC, _ESA, _ESP, _EHC, _HCTP, _UC, _CAC, _EAC, _MOLP],
|
|
1664
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => MetricsOverLookbackPeriod]
|
|
1665
|
-
];
|
|
1666
|
-
var RecommendationDetailHourlyMetrics$ = [3, n0, _RDHM,
|
|
1667
|
-
0,
|
|
1668
|
-
[_ST, _EODC, _CCur, _ECs, _ENCU],
|
|
1669
|
-
[0, 0, 0, 0, 0]
|
|
1670
|
-
];
|
|
1671
|
-
var RedshiftInstanceDetails$ = [3, n0, _RID,
|
|
1672
|
-
0,
|
|
1673
|
-
[_Fa, _NT, _Re, _CG, _SFE],
|
|
1674
|
-
[0, 0, 0, 2, 2]
|
|
1675
|
-
];
|
|
1676
|
-
var RequestChangedException$ = [-3, n0, _RCE,
|
|
1677
|
-
{ [_e]: _c },
|
|
1678
|
-
[_M],
|
|
1679
|
-
[0]
|
|
1680
|
-
];
|
|
1681
|
-
schema.TypeRegistry.for(n0).registerError(RequestChangedException$, RequestChangedException);
|
|
1682
|
-
var ReservationAggregates$ = [3, n0, _RAes,
|
|
1683
|
-
0,
|
|
1684
|
-
[_UP, _UPIU, _PH, _PU, _TAH, _TAU, _UH, _UU, _ODCORIHU, _NRIS, _TPRIS, _AUF, _ARF, _TAF, _RICFUH, _RSe, _US],
|
|
1685
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1686
|
-
];
|
|
1687
|
-
var ReservationCoverageGroup$ = [3, n0, _RCG,
|
|
1688
|
-
0,
|
|
1689
|
-
[_At, _Co],
|
|
1690
|
-
[128 | 0, () => Coverage$]
|
|
1691
|
-
];
|
|
1692
|
-
var ReservationPurchaseRecommendation$ = [3, n0, _RPR,
|
|
1693
|
-
0,
|
|
1694
|
-
[_ASc, _LPID, _TIY, _PO, _SSe, _RDe, _RSec],
|
|
1695
|
-
[0, 0, 0, 0, () => ServiceSpecification$, () => ReservationPurchaseRecommendationDetails, () => ReservationPurchaseRecommendationSummary$]
|
|
1696
|
-
];
|
|
1697
|
-
var ReservationPurchaseRecommendationDetail$ = [3, n0, _RPRD,
|
|
1698
|
-
0,
|
|
1699
|
-
[_AIc, _ID, _RNOITP, _RNUTP, _MNOIUPH, _MNUUPH, _MNOIUPHa, _MNUUPHa, _ANOIUPH, _ANUUPH, _AU, _EBEIM, _CCu, _EMSA, _EMSP, _EMODC, _ERCFLP, _UC, _RSMC, _RCD, _RNOCUTP, _MNOCUUPH, _MNOCUUPHa, _ANOCUUPH],
|
|
1700
|
-
[0, () => InstanceDetails$, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ReservedCapacityDetails$, 0, 0, 0, 0]
|
|
1701
|
-
];
|
|
1702
|
-
var ReservationPurchaseRecommendationMetadata$ = [3, n0, _RPRM,
|
|
1703
|
-
0,
|
|
1704
|
-
[_RIe, _GT, _AMd],
|
|
1705
|
-
[0, 0, 0]
|
|
1706
|
-
];
|
|
1707
|
-
var ReservationPurchaseRecommendationSummary$ = [3, n0, _RPRS,
|
|
1708
|
-
0,
|
|
1709
|
-
[_TEMSA, _TEMSP, _CCu],
|
|
1710
|
-
[0, 0, 0]
|
|
1711
|
-
];
|
|
1712
|
-
var ReservationUtilizationGroup$ = [3, n0, _RUG,
|
|
1713
|
-
0,
|
|
1714
|
-
[_K, _Va, _At, _Ut],
|
|
1715
|
-
[0, 0, 128 | 0, () => ReservationAggregates$]
|
|
1716
|
-
];
|
|
1717
|
-
var ReservedCapacityDetails$ = [3, n0, _RCD,
|
|
1718
|
-
0,
|
|
1719
|
-
[_DDBCD],
|
|
1720
|
-
[() => DynamoDBCapacityDetails$]
|
|
1721
|
-
];
|
|
1722
|
-
var ResourceDetails$ = [3, n0, _RD,
|
|
1723
|
-
0,
|
|
1724
|
-
[_ECRD],
|
|
1725
|
-
[() => EC2ResourceDetails$]
|
|
1726
|
-
];
|
|
1727
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1728
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1729
|
-
[_M, _RN],
|
|
1730
|
-
[0, 0]
|
|
1731
|
-
];
|
|
1732
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1733
|
-
var ResourceTag$ = [3, n0, _RTe,
|
|
1734
|
-
0,
|
|
1735
|
-
[_K, _Va],
|
|
1736
|
-
[0, 0], 2
|
|
1737
|
-
];
|
|
1738
|
-
var ResourceUtilization$ = [3, n0, _RU,
|
|
1739
|
-
0,
|
|
1740
|
-
[_ECRU],
|
|
1741
|
-
[() => EC2ResourceUtilization$]
|
|
1742
|
-
];
|
|
1743
|
-
var ResultByTime$ = [3, n0, _RBTe,
|
|
1744
|
-
0,
|
|
1745
|
-
[_TP, _To, _G, _Es],
|
|
1746
|
-
[() => DateInterval$, () => Metrics, () => Groups, 2]
|
|
1747
|
-
];
|
|
1748
|
-
var RightsizingRecommendation$ = [3, n0, _RRi,
|
|
1749
|
-
0,
|
|
1750
|
-
[_AIc, _CI, _RTi, _MRD, _TRD, _FRC],
|
|
1751
|
-
[0, () => CurrentInstance$, 0, () => ModifyRecommendationDetail$, () => TerminateRecommendationDetail$, 64 | 0]
|
|
1752
|
-
];
|
|
1753
|
-
var RightsizingRecommendationConfiguration$ = [3, n0, _RRC,
|
|
1754
|
-
0,
|
|
1755
|
-
[_RTec, _BC],
|
|
1756
|
-
[0, 2], 2
|
|
1757
|
-
];
|
|
1758
|
-
var RightsizingRecommendationMetadata$ = [3, n0, _RRM,
|
|
1759
|
-
0,
|
|
1760
|
-
[_RIe, _GT, _LPID, _AMd],
|
|
1761
|
-
[0, 0, 0, 0]
|
|
1762
|
-
];
|
|
1763
|
-
var RightsizingRecommendationSummary$ = [3, n0, _RRS,
|
|
1764
|
-
0,
|
|
1765
|
-
[_TRC, _ETMSA, _SCC, _SP],
|
|
1766
|
-
[0, 0, 0, 0]
|
|
1767
|
-
];
|
|
1768
|
-
var RootCause$ = [3, n0, _RCo,
|
|
1769
|
-
0,
|
|
1770
|
-
[_Ser, _Re, _LA, _LAN, _UT, _I],
|
|
1771
|
-
[0, 0, 0, 0, 0, () => RootCauseImpact$]
|
|
1772
|
-
];
|
|
1773
|
-
var RootCauseImpact$ = [3, n0, _RCI,
|
|
1774
|
-
0,
|
|
1775
|
-
[_Cont],
|
|
1776
|
-
[1], 1
|
|
1777
|
-
];
|
|
1778
|
-
var SavingsPlans$ = [3, n0, _SPa,
|
|
1779
|
-
0,
|
|
1780
|
-
[_PO, _SPT, _Re, _IF, _TIY, _SPCa, _OI],
|
|
1781
|
-
[0, 0, 0, 0, 0, 1, 0]
|
|
1782
|
-
];
|
|
1783
|
-
var SavingsPlansAmortizedCommitment$ = [3, n0, _SPAC,
|
|
1784
|
-
0,
|
|
1785
|
-
[_ARC, _AUC, _TAC],
|
|
1786
|
-
[0, 0, 0]
|
|
1787
|
-
];
|
|
1788
|
-
var SavingsPlansCoverage$ = [3, n0, _SPCav,
|
|
1789
|
-
0,
|
|
1790
|
-
[_At, _Co, _TP],
|
|
1791
|
-
[128 | 0, () => SavingsPlansCoverageData$, () => DateInterval$]
|
|
1792
|
-
];
|
|
1793
|
-
var SavingsPlansCoverageData$ = [3, n0, _SPCD,
|
|
1794
|
-
0,
|
|
1795
|
-
[_SCBSP, _ODC, _TC, _CP],
|
|
1796
|
-
[0, 0, 0, 0]
|
|
1797
|
-
];
|
|
1798
|
-
var SavingsPlansDetails$ = [3, n0, _SPD,
|
|
1799
|
-
0,
|
|
1800
|
-
[_Re, _IF, _OI],
|
|
1801
|
-
[0, 0, 0]
|
|
1802
|
-
];
|
|
1803
|
-
var SavingsPlansPurchaseAnalysisConfiguration$ = [3, n0, _SPPAC,
|
|
1804
|
-
0,
|
|
1805
|
-
[_AT, _SPTA, _LBTP, _ASc, _AIc, _SPTE],
|
|
1806
|
-
[0, () => SavingsPlansToAdd, () => DateInterval$, 0, 0, 64 | 0], 3
|
|
1807
|
-
];
|
|
1808
|
-
var SavingsPlansPurchaseAnalysisDetails$ = [3, n0, _SPPAD,
|
|
1809
|
-
0,
|
|
1810
|
-
[_CCu, _LPIH, _CAC, _CAHODS, _CMHODS, _CMHODSu, _CODS, _EHC, _HCTP, _EAC, _EAU, _EMSA, _EODC, _EODCWCC, _EROI, _ESA, _ESP, _ECC, _LUT, _UC, _AMd, _MOLP],
|
|
1811
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => MetricsOverLookbackPeriod]
|
|
1812
|
-
];
|
|
1813
|
-
var SavingsPlansPurchaseRecommendation$ = [3, n0, _SPPR,
|
|
1814
|
-
0,
|
|
1815
|
-
[_ASc, _SPT, _TIY, _PO, _LPID, _SPPRD, _SPPRS],
|
|
1816
|
-
[0, 0, 0, 0, 0, () => SavingsPlansPurchaseRecommendationDetailList, () => SavingsPlansPurchaseRecommendationSummary$]
|
|
1817
|
-
];
|
|
1818
|
-
var SavingsPlansPurchaseRecommendationDetail$ = [3, n0, _SPPRDa,
|
|
1819
|
-
0,
|
|
1820
|
-
[_SPD, _AIc, _UC, _EROI, _CCu, _ESPC, _EODC, _EODCWCC, _ESA, _ESP, _HCTP, _EAU, _EMSA, _CMHODSu, _CMHODS, _CAHODS, _RDI],
|
|
1821
|
-
[() => SavingsPlansDetails$, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1822
|
-
];
|
|
1823
|
-
var SavingsPlansPurchaseRecommendationMetadata$ = [3, n0, _SPPRM,
|
|
1824
|
-
0,
|
|
1825
|
-
[_RIe, _GT, _AMd],
|
|
1826
|
-
[0, 0, 0]
|
|
1827
|
-
];
|
|
1828
|
-
var SavingsPlansPurchaseRecommendationSummary$ = [3, n0, _SPPRS,
|
|
1829
|
-
0,
|
|
1830
|
-
[_EROI, _CCu, _ETC, _CODS, _ESA, _TRC, _DCTP, _HCTP, _ESP, _EMSA, _EODCWCC],
|
|
1831
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1832
|
-
];
|
|
1833
|
-
var SavingsPlansSavings$ = [3, n0, _SPS,
|
|
1834
|
-
0,
|
|
1835
|
-
[_NS, _ODCE],
|
|
1836
|
-
[0, 0]
|
|
1837
|
-
];
|
|
1838
|
-
var SavingsPlansUtilization$ = [3, n0, _SPU,
|
|
1839
|
-
0,
|
|
1840
|
-
[_TCo, _UCs, _UCn, _UP],
|
|
1841
|
-
[0, 0, 0, 0]
|
|
1842
|
-
];
|
|
1843
|
-
var SavingsPlansUtilizationAggregates$ = [3, n0, _SPUA,
|
|
1844
|
-
0,
|
|
1845
|
-
[_Ut, _Sa, _AC],
|
|
1846
|
-
[() => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$], 1
|
|
1847
|
-
];
|
|
1848
|
-
var SavingsPlansUtilizationByTime$ = [3, n0, _SPUBTa,
|
|
1849
|
-
0,
|
|
1850
|
-
[_TP, _Ut, _Sa, _AC],
|
|
1851
|
-
[() => DateInterval$, () => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$], 2
|
|
1852
|
-
];
|
|
1853
|
-
var SavingsPlansUtilizationDetail$ = [3, n0, _SPUDa,
|
|
1854
|
-
0,
|
|
1855
|
-
[_SPA, _At, _Ut, _Sa, _AC],
|
|
1856
|
-
[0, 128 | 0, () => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$]
|
|
1857
|
-
];
|
|
1858
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1859
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1860
|
-
[_M],
|
|
1861
|
-
[0]
|
|
1862
|
-
];
|
|
1863
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1864
|
-
var ServiceSpecification$ = [3, n0, _SSe,
|
|
1865
|
-
0,
|
|
1866
|
-
[_ECS],
|
|
1867
|
-
[() => EC2Specification$]
|
|
1868
|
-
];
|
|
1869
|
-
var SortDefinition$ = [3, n0, _SDo,
|
|
1870
|
-
0,
|
|
1871
|
-
[_K, _SO],
|
|
1872
|
-
[0, 0], 1
|
|
1873
|
-
];
|
|
1874
|
-
var StartCommitmentPurchaseAnalysisRequest$ = [3, n0, _SCPAR,
|
|
1875
|
-
0,
|
|
1876
|
-
[_CPAC],
|
|
1877
|
-
[() => CommitmentPurchaseAnalysisConfiguration$], 1
|
|
1878
|
-
];
|
|
1879
|
-
var StartCommitmentPurchaseAnalysisResponse$ = [3, n0, _SCPARt,
|
|
1880
|
-
0,
|
|
1881
|
-
[_AI, _AST, _ECT],
|
|
1882
|
-
[0, 0, 0], 3
|
|
1883
|
-
];
|
|
1884
|
-
var StartCostAllocationTagBackfillRequest$ = [3, n0, _SCATBR,
|
|
1885
|
-
0,
|
|
1886
|
-
[_BF],
|
|
1887
|
-
[0], 1
|
|
1888
|
-
];
|
|
1889
|
-
var StartCostAllocationTagBackfillResponse$ = [3, n0, _SCATBRt,
|
|
1890
|
-
0,
|
|
1891
|
-
[_BRa],
|
|
1892
|
-
[() => CostAllocationTagBackfillRequest$]
|
|
1893
|
-
];
|
|
1894
|
-
var StartSavingsPlansPurchaseRecommendationGenerationRequest$ = [3, n0, _SSPPRGR,
|
|
1895
|
-
0,
|
|
1896
|
-
[],
|
|
1897
|
-
[]
|
|
1898
|
-
];
|
|
1899
|
-
var StartSavingsPlansPurchaseRecommendationGenerationResponse$ = [3, n0, _SSPPRGRt,
|
|
1900
|
-
0,
|
|
1901
|
-
[_RIe, _GST, _ECT],
|
|
1902
|
-
[0, 0, 0]
|
|
1903
|
-
];
|
|
1904
|
-
var Subscriber$ = [3, n0, _Sub,
|
|
1905
|
-
0,
|
|
1906
|
-
[_Ad, _Ty, _St],
|
|
1907
|
-
[0, 0, 0]
|
|
1908
|
-
];
|
|
1909
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1910
|
-
0,
|
|
1911
|
-
[_RAe, _RT],
|
|
1912
|
-
[0, () => ResourceTagList], 2
|
|
1913
|
-
];
|
|
1914
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1915
|
-
0,
|
|
1916
|
-
[],
|
|
1917
|
-
[]
|
|
1918
|
-
];
|
|
1919
|
-
var TagValues$ = [3, n0, _TV,
|
|
1920
|
-
0,
|
|
1921
|
-
[_K, _V, _MO],
|
|
1922
|
-
[0, 64 | 0, 64 | 0]
|
|
1923
|
-
];
|
|
1924
|
-
var TargetInstance$ = [3, n0, _TIar,
|
|
1925
|
-
0,
|
|
1926
|
-
[_EMC, _EMS, _CCu, _DTI, _RD, _ERU, _PDl],
|
|
1927
|
-
[0, 0, 0, 2, () => ResourceDetails$, () => ResourceUtilization$, 64 | 0]
|
|
1928
|
-
];
|
|
1929
|
-
var TerminateRecommendationDetail$ = [3, n0, _TRD,
|
|
1930
|
-
0,
|
|
1931
|
-
[_EMS, _CCu],
|
|
1932
|
-
[0, 0]
|
|
1933
|
-
];
|
|
1934
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1935
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1936
|
-
[_M, _RN],
|
|
1937
|
-
[0, 0]
|
|
1938
|
-
];
|
|
1939
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1940
|
-
var TotalImpactFilter$ = [3, n0, _TIF,
|
|
1941
|
-
0,
|
|
1942
|
-
[_NO, _SV, _EV],
|
|
1943
|
-
[0, 1, 1], 2
|
|
1944
|
-
];
|
|
1945
|
-
var UnknownMonitorException$ = [-3, n0, _UME,
|
|
1946
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1947
|
-
[_M],
|
|
1948
|
-
[0]
|
|
1949
|
-
];
|
|
1950
|
-
schema.TypeRegistry.for(n0).registerError(UnknownMonitorException$, UnknownMonitorException);
|
|
1951
|
-
var UnknownSubscriptionException$ = [-3, n0, _USE,
|
|
1952
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1953
|
-
[_M],
|
|
1954
|
-
[0]
|
|
1955
|
-
];
|
|
1956
|
-
schema.TypeRegistry.for(n0).registerError(UnknownSubscriptionException$, UnknownSubscriptionException);
|
|
1957
|
-
var UnresolvableUsageUnitException$ = [-3, n0, _UUUE,
|
|
1958
|
-
{ [_e]: _c },
|
|
1959
|
-
[_M],
|
|
1960
|
-
[0]
|
|
1961
|
-
];
|
|
1962
|
-
schema.TypeRegistry.for(n0).registerError(UnresolvableUsageUnitException$, UnresolvableUsageUnitException);
|
|
1963
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1964
|
-
0,
|
|
1965
|
-
[_RAe, _RTK],
|
|
1966
|
-
[0, 64 | 0], 2
|
|
1967
|
-
];
|
|
1968
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1969
|
-
0,
|
|
1970
|
-
[],
|
|
1971
|
-
[]
|
|
1972
|
-
];
|
|
1973
|
-
var UpdateAnomalyMonitorRequest$ = [3, n0, _UAMR,
|
|
1974
|
-
0,
|
|
1975
|
-
[_MA, _MN],
|
|
1976
|
-
[0, 0], 1
|
|
1977
|
-
];
|
|
1978
|
-
var UpdateAnomalyMonitorResponse$ = [3, n0, _UAMRp,
|
|
1979
|
-
0,
|
|
1980
|
-
[_MA],
|
|
1981
|
-
[0], 1
|
|
1982
|
-
];
|
|
1983
|
-
var UpdateAnomalySubscriptionRequest$ = [3, n0, _UASR,
|
|
1984
|
-
0,
|
|
1985
|
-
[_SA, _T, _Fr, _MAL, _S, _SN, _TE],
|
|
1986
|
-
[0, 1, 0, 64 | 0, () => Subscribers, 0, () => Expression$], 1
|
|
1987
|
-
];
|
|
1988
|
-
var UpdateAnomalySubscriptionResponse$ = [3, n0, _UASRp,
|
|
1989
|
-
0,
|
|
1990
|
-
[_SA],
|
|
1991
|
-
[0], 1
|
|
1992
|
-
];
|
|
1993
|
-
var UpdateCostAllocationTagsStatusError$ = [3, n0, _UCATSE,
|
|
1994
|
-
0,
|
|
1995
|
-
[_TK, _Cod, _M],
|
|
1996
|
-
[0, 0, 0]
|
|
1997
|
-
];
|
|
1998
|
-
var UpdateCostAllocationTagsStatusRequest$ = [3, n0, _UCATSR,
|
|
1999
|
-
0,
|
|
2000
|
-
[_CATS],
|
|
2001
|
-
[() => CostAllocationTagStatusList], 1
|
|
2002
|
-
];
|
|
2003
|
-
var UpdateCostAllocationTagsStatusResponse$ = [3, n0, _UCATSRp,
|
|
2004
|
-
0,
|
|
2005
|
-
[_Er],
|
|
2006
|
-
[() => UpdateCostAllocationTagsStatusErrors]
|
|
2007
|
-
];
|
|
2008
|
-
var UpdateCostCategoryDefinitionRequest$ = [3, n0, _UCCDR,
|
|
2009
|
-
0,
|
|
2010
|
-
[_CCA, _RV, _R, _ES, _DVe, _SCR],
|
|
2011
|
-
[0, 0, () => CostCategoryRulesList, 0, 0, () => CostCategorySplitChargeRulesList], 3
|
|
2012
|
-
];
|
|
2013
|
-
var UpdateCostCategoryDefinitionResponse$ = [3, n0, _UCCDRp,
|
|
2014
|
-
0,
|
|
2015
|
-
[_CCA, _ES],
|
|
2016
|
-
[0, 0]
|
|
2017
|
-
];
|
|
2018
|
-
var UtilizationByTime$ = [3, n0, _UBTt,
|
|
2019
|
-
0,
|
|
2020
|
-
[_TP, _G, _To],
|
|
2021
|
-
[() => DateInterval$, () => ReservationUtilizationGroups, () => ReservationAggregates$]
|
|
2022
|
-
];
|
|
2023
|
-
var CostExplorerServiceException$ = [-3, _s, "CostExplorerServiceException", 0, [], []];
|
|
2024
|
-
schema.TypeRegistry.for(_s).registerError(CostExplorerServiceException$, CostExplorerServiceException);
|
|
2025
|
-
var AnalysisSummaryList = [1, n0, _ASL,
|
|
2026
|
-
0, () => AnalysisSummary$
|
|
2027
|
-
];
|
|
2028
|
-
var Anomalies = [1, n0, _Ano,
|
|
2029
|
-
0, () => Anomaly$
|
|
2030
|
-
];
|
|
2031
|
-
var AnomalyMonitors = [1, n0, _AMn,
|
|
2032
|
-
0, () => AnomalyMonitor$
|
|
2033
|
-
];
|
|
2034
|
-
var AnomalySubscriptions = [1, n0, _ASnoma,
|
|
2035
|
-
0, () => AnomalySubscription$
|
|
2036
|
-
];
|
|
2037
|
-
var CostAllocationTagBackfillRequestList = [1, n0, _CATBRL,
|
|
2038
|
-
0, () => CostAllocationTagBackfillRequest$
|
|
2039
|
-
];
|
|
2040
|
-
var CostAllocationTagList = [1, n0, _CATL,
|
|
2041
|
-
0, () => CostAllocationTag$
|
|
2042
|
-
];
|
|
2043
|
-
var CostAllocationTagStatusList = [1, n0, _CATSL,
|
|
2044
|
-
0, () => CostAllocationTagStatusEntry$
|
|
2045
|
-
];
|
|
2046
|
-
var CostAndUsageComparisons = [1, n0, _CAUCo,
|
|
2047
|
-
0, () => CostAndUsageComparison$
|
|
2048
|
-
];
|
|
2049
|
-
var CostCategoryProcessingStatusList = [1, n0, _CCPSL,
|
|
2050
|
-
0, () => CostCategoryProcessingStatus$
|
|
2051
|
-
];
|
|
2052
|
-
var CostCategoryReferencesList = [1, n0, _CCRL,
|
|
2053
|
-
0, () => CostCategoryReference$
|
|
2054
|
-
];
|
|
2055
|
-
var CostCategoryResourceAssociations = [1, n0, _CCRAo,
|
|
2056
|
-
0, () => CostCategoryResourceAssociation$
|
|
2057
|
-
];
|
|
2058
|
-
var CostCategoryRulesList = [1, n0, _CCRLo,
|
|
2059
|
-
0, () => CostCategoryRule$
|
|
2060
|
-
];
|
|
2061
|
-
var CostCategorySplitChargeRuleParametersList = [1, n0, _CCSCRPL,
|
|
2062
|
-
0, () => CostCategorySplitChargeRuleParameter$
|
|
2063
|
-
];
|
|
2064
|
-
var CostCategorySplitChargeRulesList = [1, n0, _CCSCRL,
|
|
2065
|
-
0, () => CostCategorySplitChargeRule$
|
|
2066
|
-
];
|
|
2067
|
-
var CostComparisonDrivers = [1, n0, _CCDo,
|
|
2068
|
-
0, () => CostComparisonDriver$
|
|
2069
|
-
];
|
|
2070
|
-
var CostDrivers = [1, n0, _CDo,
|
|
2071
|
-
0, () => CostDriver$
|
|
2072
|
-
];
|
|
2073
|
-
var CoveragesByTime = [1, n0, _CBTo,
|
|
2074
|
-
0, () => CoverageByTime$
|
|
2075
|
-
];
|
|
2076
|
-
var DimensionValuesWithAttributesList = [1, n0, _DVWAL,
|
|
2077
|
-
0, () => DimensionValuesWithAttributes$
|
|
2078
|
-
];
|
|
2079
|
-
var Expressions = [1, n0, _Exp,
|
|
2080
|
-
0, () => Expression$
|
|
2081
|
-
];
|
|
2082
|
-
var ForecastResultsByTime = [1, n0, _FRBT,
|
|
2083
|
-
0, () => ForecastResult$
|
|
2084
|
-
];
|
|
2085
|
-
var GenerationSummaryList = [1, n0, _GSL,
|
|
2086
|
-
0, () => GenerationSummary$
|
|
2087
|
-
];
|
|
2088
|
-
var GroupDefinitions = [1, n0, _GD,
|
|
2089
|
-
0, () => GroupDefinition$
|
|
2090
|
-
];
|
|
2091
|
-
var Groups = [1, n0, _G,
|
|
2092
|
-
0, () => Group$
|
|
2093
|
-
];
|
|
2094
|
-
var MetricsOverLookbackPeriod = [1, n0, _MOLP,
|
|
2095
|
-
0, () => RecommendationDetailHourlyMetrics$
|
|
2096
|
-
];
|
|
2097
|
-
var ReservationCoverageGroups = [1, n0, _RCGe,
|
|
2098
|
-
0, () => ReservationCoverageGroup$
|
|
2099
|
-
];
|
|
2100
|
-
var ReservationPurchaseRecommendationDetails = [1, n0, _RPRDe,
|
|
2101
|
-
0, () => ReservationPurchaseRecommendationDetail$
|
|
2102
|
-
];
|
|
2103
|
-
var ReservationPurchaseRecommendations = [1, n0, _RPRe,
|
|
2104
|
-
0, () => ReservationPurchaseRecommendation$
|
|
2105
|
-
];
|
|
2106
|
-
var ReservationUtilizationGroups = [1, n0, _RUGe,
|
|
2107
|
-
0, () => ReservationUtilizationGroup$
|
|
2108
|
-
];
|
|
2109
|
-
var ResourceTagList = [1, n0, _RTL,
|
|
2110
|
-
0, () => ResourceTag$
|
|
2111
|
-
];
|
|
2112
|
-
var ResultsByTime = [1, n0, _RBT,
|
|
2113
|
-
0, () => ResultByTime$
|
|
2114
|
-
];
|
|
2115
|
-
var RightsizingRecommendationList = [1, n0, _RRL,
|
|
2116
|
-
0, () => RightsizingRecommendation$
|
|
2117
|
-
];
|
|
2118
|
-
var RootCauses = [1, n0, _RC,
|
|
2119
|
-
0, () => RootCause$
|
|
2120
|
-
];
|
|
2121
|
-
var SavingsPlansCoverages = [1, n0, _SPC,
|
|
2122
|
-
0, () => SavingsPlansCoverage$
|
|
2123
|
-
];
|
|
2124
|
-
var SavingsPlansPurchaseRecommendationDetailList = [1, n0, _SPPRDL,
|
|
2125
|
-
0, () => SavingsPlansPurchaseRecommendationDetail$
|
|
2126
|
-
];
|
|
2127
|
-
var SavingsPlansToAdd = [1, n0, _SPTA,
|
|
2128
|
-
0, () => SavingsPlans$
|
|
2129
|
-
];
|
|
2130
|
-
var SavingsPlansUtilizationDetails = [1, n0, _SPUD,
|
|
2131
|
-
0, () => SavingsPlansUtilizationDetail$
|
|
2132
|
-
];
|
|
2133
|
-
var SavingsPlansUtilizationsByTime = [1, n0, _SPUBT,
|
|
2134
|
-
0, () => SavingsPlansUtilizationByTime$
|
|
2135
|
-
];
|
|
2136
|
-
var SortDefinitions = [1, n0, _SDor,
|
|
2137
|
-
0, () => SortDefinition$
|
|
2138
|
-
];
|
|
2139
|
-
var Subscribers = [1, n0, _S,
|
|
2140
|
-
0, () => Subscriber$
|
|
2141
|
-
];
|
|
2142
|
-
var TagValuesList = [1, n0, _TVL,
|
|
2143
|
-
0, () => TagValues$
|
|
2144
|
-
];
|
|
2145
|
-
var TargetInstancesList = [1, n0, _TIL,
|
|
2146
|
-
0, () => TargetInstance$
|
|
2147
|
-
];
|
|
2148
|
-
var UpdateCostAllocationTagsStatusErrors = [1, n0, _UCATSEp,
|
|
2149
|
-
0, () => UpdateCostAllocationTagsStatusError$
|
|
2150
|
-
];
|
|
2151
|
-
var UtilizationsByTime = [1, n0, _UBT,
|
|
2152
|
-
0, () => UtilizationByTime$
|
|
2153
|
-
];
|
|
2154
|
-
var ComparisonMetrics = [2, n0, _CM,
|
|
2155
|
-
0, 0, () => ComparisonMetricValue$
|
|
2156
|
-
];
|
|
2157
|
-
var Metrics = [2, n0, _Me,
|
|
2158
|
-
0, 0, () => MetricValue$
|
|
2159
|
-
];
|
|
2160
|
-
var CreateAnomalyMonitor$ = [9, n0, _CAM,
|
|
2161
|
-
0, () => CreateAnomalyMonitorRequest$, () => CreateAnomalyMonitorResponse$
|
|
2162
|
-
];
|
|
2163
|
-
var CreateAnomalySubscription$ = [9, n0, _CAS,
|
|
2164
|
-
0, () => CreateAnomalySubscriptionRequest$, () => CreateAnomalySubscriptionResponse$
|
|
2165
|
-
];
|
|
2166
|
-
var CreateCostCategoryDefinition$ = [9, n0, _CCCD,
|
|
2167
|
-
0, () => CreateCostCategoryDefinitionRequest$, () => CreateCostCategoryDefinitionResponse$
|
|
2168
|
-
];
|
|
2169
|
-
var DeleteAnomalyMonitor$ = [9, n0, _DAM,
|
|
2170
|
-
0, () => DeleteAnomalyMonitorRequest$, () => DeleteAnomalyMonitorResponse$
|
|
2171
|
-
];
|
|
2172
|
-
var DeleteAnomalySubscription$ = [9, n0, _DAS,
|
|
2173
|
-
0, () => DeleteAnomalySubscriptionRequest$, () => DeleteAnomalySubscriptionResponse$
|
|
2174
|
-
];
|
|
2175
|
-
var DeleteCostCategoryDefinition$ = [9, n0, _DCCD,
|
|
2176
|
-
0, () => DeleteCostCategoryDefinitionRequest$, () => DeleteCostCategoryDefinitionResponse$
|
|
2177
|
-
];
|
|
2178
|
-
var DescribeCostCategoryDefinition$ = [9, n0, _DCCDe,
|
|
2179
|
-
0, () => DescribeCostCategoryDefinitionRequest$, () => DescribeCostCategoryDefinitionResponse$
|
|
2180
|
-
];
|
|
2181
|
-
var GetAnomalies$ = [9, n0, _GA,
|
|
2182
|
-
0, () => GetAnomaliesRequest$, () => GetAnomaliesResponse$
|
|
2183
|
-
];
|
|
2184
|
-
var GetAnomalyMonitors$ = [9, n0, _GAM,
|
|
2185
|
-
0, () => GetAnomalyMonitorsRequest$, () => GetAnomalyMonitorsResponse$
|
|
2186
|
-
];
|
|
2187
|
-
var GetAnomalySubscriptions$ = [9, n0, _GAS,
|
|
2188
|
-
0, () => GetAnomalySubscriptionsRequest$, () => GetAnomalySubscriptionsResponse$
|
|
2189
|
-
];
|
|
2190
|
-
var GetApproximateUsageRecords$ = [9, n0, _GAUR,
|
|
2191
|
-
0, () => GetApproximateUsageRecordsRequest$, () => GetApproximateUsageRecordsResponse$
|
|
2192
|
-
];
|
|
2193
|
-
var GetCommitmentPurchaseAnalysis$ = [9, n0, _GCPA,
|
|
2194
|
-
0, () => GetCommitmentPurchaseAnalysisRequest$, () => GetCommitmentPurchaseAnalysisResponse$
|
|
2195
|
-
];
|
|
2196
|
-
var GetCostAndUsage$ = [9, n0, _GCAU,
|
|
2197
|
-
0, () => GetCostAndUsageRequest$, () => GetCostAndUsageResponse$
|
|
2198
|
-
];
|
|
2199
|
-
var GetCostAndUsageComparisons$ = [9, n0, _GCAUC,
|
|
2200
|
-
0, () => GetCostAndUsageComparisonsRequest$, () => GetCostAndUsageComparisonsResponse$
|
|
2201
|
-
];
|
|
2202
|
-
var GetCostAndUsageWithResources$ = [9, n0, _GCAUWR,
|
|
2203
|
-
0, () => GetCostAndUsageWithResourcesRequest$, () => GetCostAndUsageWithResourcesResponse$
|
|
2204
|
-
];
|
|
2205
|
-
var GetCostCategories$ = [9, n0, _GCC,
|
|
2206
|
-
0, () => GetCostCategoriesRequest$, () => GetCostCategoriesResponse$
|
|
2207
|
-
];
|
|
2208
|
-
var GetCostComparisonDrivers$ = [9, n0, _GCCD,
|
|
2209
|
-
0, () => GetCostComparisonDriversRequest$, () => GetCostComparisonDriversResponse$
|
|
2210
|
-
];
|
|
2211
|
-
var GetCostForecast$ = [9, n0, _GCF,
|
|
2212
|
-
0, () => GetCostForecastRequest$, () => GetCostForecastResponse$
|
|
2213
|
-
];
|
|
2214
|
-
var GetDimensionValues$ = [9, n0, _GDV,
|
|
2215
|
-
0, () => GetDimensionValuesRequest$, () => GetDimensionValuesResponse$
|
|
2216
|
-
];
|
|
2217
|
-
var GetReservationCoverage$ = [9, n0, _GRC,
|
|
2218
|
-
0, () => GetReservationCoverageRequest$, () => GetReservationCoverageResponse$
|
|
2219
|
-
];
|
|
2220
|
-
var GetReservationPurchaseRecommendation$ = [9, n0, _GRPR,
|
|
2221
|
-
0, () => GetReservationPurchaseRecommendationRequest$, () => GetReservationPurchaseRecommendationResponse$
|
|
2222
|
-
];
|
|
2223
|
-
var GetReservationUtilization$ = [9, n0, _GRU,
|
|
2224
|
-
0, () => GetReservationUtilizationRequest$, () => GetReservationUtilizationResponse$
|
|
2225
|
-
];
|
|
2226
|
-
var GetRightsizingRecommendation$ = [9, n0, _GRR,
|
|
2227
|
-
0, () => GetRightsizingRecommendationRequest$, () => GetRightsizingRecommendationResponse$
|
|
2228
|
-
];
|
|
2229
|
-
var GetSavingsPlanPurchaseRecommendationDetails$ = [9, n0, _GSPPRD,
|
|
2230
|
-
0, () => GetSavingsPlanPurchaseRecommendationDetailsRequest$, () => GetSavingsPlanPurchaseRecommendationDetailsResponse$
|
|
2231
|
-
];
|
|
2232
|
-
var GetSavingsPlansCoverage$ = [9, n0, _GSPC,
|
|
2233
|
-
0, () => GetSavingsPlansCoverageRequest$, () => GetSavingsPlansCoverageResponse$
|
|
2234
|
-
];
|
|
2235
|
-
var GetSavingsPlansPurchaseRecommendation$ = [9, n0, _GSPPR,
|
|
2236
|
-
0, () => GetSavingsPlansPurchaseRecommendationRequest$, () => GetSavingsPlansPurchaseRecommendationResponse$
|
|
2237
|
-
];
|
|
2238
|
-
var GetSavingsPlansUtilization$ = [9, n0, _GSPU,
|
|
2239
|
-
0, () => GetSavingsPlansUtilizationRequest$, () => GetSavingsPlansUtilizationResponse$
|
|
2240
|
-
];
|
|
2241
|
-
var GetSavingsPlansUtilizationDetails$ = [9, n0, _GSPUD,
|
|
2242
|
-
0, () => GetSavingsPlansUtilizationDetailsRequest$, () => GetSavingsPlansUtilizationDetailsResponse$
|
|
2243
|
-
];
|
|
2244
|
-
var GetTags$ = [9, n0, _GTe,
|
|
2245
|
-
0, () => GetTagsRequest$, () => GetTagsResponse$
|
|
2246
|
-
];
|
|
2247
|
-
var GetUsageForecast$ = [9, n0, _GUF,
|
|
2248
|
-
0, () => GetUsageForecastRequest$, () => GetUsageForecastResponse$
|
|
2249
|
-
];
|
|
2250
|
-
var ListCommitmentPurchaseAnalyses$ = [9, n0, _LCPA,
|
|
2251
|
-
0, () => ListCommitmentPurchaseAnalysesRequest$, () => ListCommitmentPurchaseAnalysesResponse$
|
|
2252
|
-
];
|
|
2253
|
-
var ListCostAllocationTagBackfillHistory$ = [9, n0, _LCATBH,
|
|
2254
|
-
0, () => ListCostAllocationTagBackfillHistoryRequest$, () => ListCostAllocationTagBackfillHistoryResponse$
|
|
2255
|
-
];
|
|
2256
|
-
var ListCostAllocationTags$ = [9, n0, _LCAT,
|
|
2257
|
-
0, () => ListCostAllocationTagsRequest$, () => ListCostAllocationTagsResponse$
|
|
2258
|
-
];
|
|
2259
|
-
var ListCostCategoryDefinitions$ = [9, n0, _LCCD,
|
|
2260
|
-
0, () => ListCostCategoryDefinitionsRequest$, () => ListCostCategoryDefinitionsResponse$
|
|
2261
|
-
];
|
|
2262
|
-
var ListCostCategoryResourceAssociations$ = [9, n0, _LCCRA,
|
|
2263
|
-
0, () => ListCostCategoryResourceAssociationsRequest$, () => ListCostCategoryResourceAssociationsResponse$
|
|
2264
|
-
];
|
|
2265
|
-
var ListSavingsPlansPurchaseRecommendationGeneration$ = [9, n0, _LSPPRG,
|
|
2266
|
-
0, () => ListSavingsPlansPurchaseRecommendationGenerationRequest$, () => ListSavingsPlansPurchaseRecommendationGenerationResponse$
|
|
2267
|
-
];
|
|
2268
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2269
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2270
|
-
];
|
|
2271
|
-
var ProvideAnomalyFeedback$ = [9, n0, _PAF,
|
|
2272
|
-
0, () => ProvideAnomalyFeedbackRequest$, () => ProvideAnomalyFeedbackResponse$
|
|
2273
|
-
];
|
|
2274
|
-
var StartCommitmentPurchaseAnalysis$ = [9, n0, _SCPA,
|
|
2275
|
-
0, () => StartCommitmentPurchaseAnalysisRequest$, () => StartCommitmentPurchaseAnalysisResponse$
|
|
2276
|
-
];
|
|
2277
|
-
var StartCostAllocationTagBackfill$ = [9, n0, _SCATB,
|
|
2278
|
-
0, () => StartCostAllocationTagBackfillRequest$, () => StartCostAllocationTagBackfillResponse$
|
|
2279
|
-
];
|
|
2280
|
-
var StartSavingsPlansPurchaseRecommendationGeneration$ = [9, n0, _SSPPRG,
|
|
2281
|
-
0, () => StartSavingsPlansPurchaseRecommendationGenerationRequest$, () => StartSavingsPlansPurchaseRecommendationGenerationResponse$
|
|
2282
|
-
];
|
|
2283
|
-
var TagResource$ = [9, n0, _TRa,
|
|
2284
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2285
|
-
];
|
|
2286
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2287
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2288
|
-
];
|
|
2289
|
-
var UpdateAnomalyMonitor$ = [9, n0, _UAM,
|
|
2290
|
-
0, () => UpdateAnomalyMonitorRequest$, () => UpdateAnomalyMonitorResponse$
|
|
2291
|
-
];
|
|
2292
|
-
var UpdateAnomalySubscription$ = [9, n0, _UAS,
|
|
2293
|
-
0, () => UpdateAnomalySubscriptionRequest$, () => UpdateAnomalySubscriptionResponse$
|
|
2294
|
-
];
|
|
2295
|
-
var UpdateCostAllocationTagsStatus$ = [9, n0, _UCATS,
|
|
2296
|
-
0, () => UpdateCostAllocationTagsStatusRequest$, () => UpdateCostAllocationTagsStatusResponse$
|
|
2297
|
-
];
|
|
2298
|
-
var UpdateCostCategoryDefinition$ = [9, n0, _UCCD,
|
|
2299
|
-
0, () => UpdateCostCategoryDefinitionRequest$, () => UpdateCostCategoryDefinitionResponse$
|
|
2300
|
-
];
|
|
2301
|
-
|
|
2302
116
|
class CreateAnomalyMonitorCommand extends smithyClient.Command
|
|
2303
117
|
.classBuilder()
|
|
2304
118
|
.ep(commonParams)
|
|
@@ -2307,7 +121,7 @@ class CreateAnomalyMonitorCommand extends smithyClient.Command
|
|
|
2307
121
|
})
|
|
2308
122
|
.s("AWSInsightsIndexService", "CreateAnomalyMonitor", {})
|
|
2309
123
|
.n("CostExplorerClient", "CreateAnomalyMonitorCommand")
|
|
2310
|
-
.sc(CreateAnomalyMonitor$)
|
|
124
|
+
.sc(schemas_0.CreateAnomalyMonitor$)
|
|
2311
125
|
.build() {
|
|
2312
126
|
}
|
|
2313
127
|
|
|
@@ -2319,7 +133,7 @@ class CreateAnomalySubscriptionCommand extends smithyClient.Command
|
|
|
2319
133
|
})
|
|
2320
134
|
.s("AWSInsightsIndexService", "CreateAnomalySubscription", {})
|
|
2321
135
|
.n("CostExplorerClient", "CreateAnomalySubscriptionCommand")
|
|
2322
|
-
.sc(CreateAnomalySubscription$)
|
|
136
|
+
.sc(schemas_0.CreateAnomalySubscription$)
|
|
2323
137
|
.build() {
|
|
2324
138
|
}
|
|
2325
139
|
|
|
@@ -2331,7 +145,7 @@ class CreateCostCategoryDefinitionCommand extends smithyClient.Command
|
|
|
2331
145
|
})
|
|
2332
146
|
.s("AWSInsightsIndexService", "CreateCostCategoryDefinition", {})
|
|
2333
147
|
.n("CostExplorerClient", "CreateCostCategoryDefinitionCommand")
|
|
2334
|
-
.sc(CreateCostCategoryDefinition$)
|
|
148
|
+
.sc(schemas_0.CreateCostCategoryDefinition$)
|
|
2335
149
|
.build() {
|
|
2336
150
|
}
|
|
2337
151
|
|
|
@@ -2343,7 +157,7 @@ class DeleteAnomalyMonitorCommand extends smithyClient.Command
|
|
|
2343
157
|
})
|
|
2344
158
|
.s("AWSInsightsIndexService", "DeleteAnomalyMonitor", {})
|
|
2345
159
|
.n("CostExplorerClient", "DeleteAnomalyMonitorCommand")
|
|
2346
|
-
.sc(DeleteAnomalyMonitor$)
|
|
160
|
+
.sc(schemas_0.DeleteAnomalyMonitor$)
|
|
2347
161
|
.build() {
|
|
2348
162
|
}
|
|
2349
163
|
|
|
@@ -2355,7 +169,7 @@ class DeleteAnomalySubscriptionCommand extends smithyClient.Command
|
|
|
2355
169
|
})
|
|
2356
170
|
.s("AWSInsightsIndexService", "DeleteAnomalySubscription", {})
|
|
2357
171
|
.n("CostExplorerClient", "DeleteAnomalySubscriptionCommand")
|
|
2358
|
-
.sc(DeleteAnomalySubscription$)
|
|
172
|
+
.sc(schemas_0.DeleteAnomalySubscription$)
|
|
2359
173
|
.build() {
|
|
2360
174
|
}
|
|
2361
175
|
|
|
@@ -2367,7 +181,7 @@ class DeleteCostCategoryDefinitionCommand extends smithyClient.Command
|
|
|
2367
181
|
})
|
|
2368
182
|
.s("AWSInsightsIndexService", "DeleteCostCategoryDefinition", {})
|
|
2369
183
|
.n("CostExplorerClient", "DeleteCostCategoryDefinitionCommand")
|
|
2370
|
-
.sc(DeleteCostCategoryDefinition$)
|
|
184
|
+
.sc(schemas_0.DeleteCostCategoryDefinition$)
|
|
2371
185
|
.build() {
|
|
2372
186
|
}
|
|
2373
187
|
|
|
@@ -2379,7 +193,7 @@ class DescribeCostCategoryDefinitionCommand extends smithyClient.Command
|
|
|
2379
193
|
})
|
|
2380
194
|
.s("AWSInsightsIndexService", "DescribeCostCategoryDefinition", {})
|
|
2381
195
|
.n("CostExplorerClient", "DescribeCostCategoryDefinitionCommand")
|
|
2382
|
-
.sc(DescribeCostCategoryDefinition$)
|
|
196
|
+
.sc(schemas_0.DescribeCostCategoryDefinition$)
|
|
2383
197
|
.build() {
|
|
2384
198
|
}
|
|
2385
199
|
|
|
@@ -2391,7 +205,7 @@ class GetAnomaliesCommand extends smithyClient.Command
|
|
|
2391
205
|
})
|
|
2392
206
|
.s("AWSInsightsIndexService", "GetAnomalies", {})
|
|
2393
207
|
.n("CostExplorerClient", "GetAnomaliesCommand")
|
|
2394
|
-
.sc(GetAnomalies$)
|
|
208
|
+
.sc(schemas_0.GetAnomalies$)
|
|
2395
209
|
.build() {
|
|
2396
210
|
}
|
|
2397
211
|
|
|
@@ -2403,7 +217,7 @@ class GetAnomalyMonitorsCommand extends smithyClient.Command
|
|
|
2403
217
|
})
|
|
2404
218
|
.s("AWSInsightsIndexService", "GetAnomalyMonitors", {})
|
|
2405
219
|
.n("CostExplorerClient", "GetAnomalyMonitorsCommand")
|
|
2406
|
-
.sc(GetAnomalyMonitors$)
|
|
220
|
+
.sc(schemas_0.GetAnomalyMonitors$)
|
|
2407
221
|
.build() {
|
|
2408
222
|
}
|
|
2409
223
|
|
|
@@ -2415,7 +229,7 @@ class GetAnomalySubscriptionsCommand extends smithyClient.Command
|
|
|
2415
229
|
})
|
|
2416
230
|
.s("AWSInsightsIndexService", "GetAnomalySubscriptions", {})
|
|
2417
231
|
.n("CostExplorerClient", "GetAnomalySubscriptionsCommand")
|
|
2418
|
-
.sc(GetAnomalySubscriptions$)
|
|
232
|
+
.sc(schemas_0.GetAnomalySubscriptions$)
|
|
2419
233
|
.build() {
|
|
2420
234
|
}
|
|
2421
235
|
|
|
@@ -2427,7 +241,7 @@ class GetApproximateUsageRecordsCommand extends smithyClient.Command
|
|
|
2427
241
|
})
|
|
2428
242
|
.s("AWSInsightsIndexService", "GetApproximateUsageRecords", {})
|
|
2429
243
|
.n("CostExplorerClient", "GetApproximateUsageRecordsCommand")
|
|
2430
|
-
.sc(GetApproximateUsageRecords$)
|
|
244
|
+
.sc(schemas_0.GetApproximateUsageRecords$)
|
|
2431
245
|
.build() {
|
|
2432
246
|
}
|
|
2433
247
|
|
|
@@ -2439,7 +253,7 @@ class GetCommitmentPurchaseAnalysisCommand extends smithyClient.Command
|
|
|
2439
253
|
})
|
|
2440
254
|
.s("AWSInsightsIndexService", "GetCommitmentPurchaseAnalysis", {})
|
|
2441
255
|
.n("CostExplorerClient", "GetCommitmentPurchaseAnalysisCommand")
|
|
2442
|
-
.sc(GetCommitmentPurchaseAnalysis$)
|
|
256
|
+
.sc(schemas_0.GetCommitmentPurchaseAnalysis$)
|
|
2443
257
|
.build() {
|
|
2444
258
|
}
|
|
2445
259
|
|
|
@@ -2451,7 +265,7 @@ class GetCostAndUsageCommand extends smithyClient.Command
|
|
|
2451
265
|
})
|
|
2452
266
|
.s("AWSInsightsIndexService", "GetCostAndUsage", {})
|
|
2453
267
|
.n("CostExplorerClient", "GetCostAndUsageCommand")
|
|
2454
|
-
.sc(GetCostAndUsage$)
|
|
268
|
+
.sc(schemas_0.GetCostAndUsage$)
|
|
2455
269
|
.build() {
|
|
2456
270
|
}
|
|
2457
271
|
|
|
@@ -2463,7 +277,7 @@ class GetCostAndUsageComparisonsCommand extends smithyClient.Command
|
|
|
2463
277
|
})
|
|
2464
278
|
.s("AWSInsightsIndexService", "GetCostAndUsageComparisons", {})
|
|
2465
279
|
.n("CostExplorerClient", "GetCostAndUsageComparisonsCommand")
|
|
2466
|
-
.sc(GetCostAndUsageComparisons$)
|
|
280
|
+
.sc(schemas_0.GetCostAndUsageComparisons$)
|
|
2467
281
|
.build() {
|
|
2468
282
|
}
|
|
2469
283
|
|
|
@@ -2475,7 +289,7 @@ class GetCostAndUsageWithResourcesCommand extends smithyClient.Command
|
|
|
2475
289
|
})
|
|
2476
290
|
.s("AWSInsightsIndexService", "GetCostAndUsageWithResources", {})
|
|
2477
291
|
.n("CostExplorerClient", "GetCostAndUsageWithResourcesCommand")
|
|
2478
|
-
.sc(GetCostAndUsageWithResources$)
|
|
292
|
+
.sc(schemas_0.GetCostAndUsageWithResources$)
|
|
2479
293
|
.build() {
|
|
2480
294
|
}
|
|
2481
295
|
|
|
@@ -2487,7 +301,7 @@ class GetCostCategoriesCommand extends smithyClient.Command
|
|
|
2487
301
|
})
|
|
2488
302
|
.s("AWSInsightsIndexService", "GetCostCategories", {})
|
|
2489
303
|
.n("CostExplorerClient", "GetCostCategoriesCommand")
|
|
2490
|
-
.sc(GetCostCategories$)
|
|
304
|
+
.sc(schemas_0.GetCostCategories$)
|
|
2491
305
|
.build() {
|
|
2492
306
|
}
|
|
2493
307
|
|
|
@@ -2499,7 +313,7 @@ class GetCostComparisonDriversCommand extends smithyClient.Command
|
|
|
2499
313
|
})
|
|
2500
314
|
.s("AWSInsightsIndexService", "GetCostComparisonDrivers", {})
|
|
2501
315
|
.n("CostExplorerClient", "GetCostComparisonDriversCommand")
|
|
2502
|
-
.sc(GetCostComparisonDrivers$)
|
|
316
|
+
.sc(schemas_0.GetCostComparisonDrivers$)
|
|
2503
317
|
.build() {
|
|
2504
318
|
}
|
|
2505
319
|
|
|
@@ -2511,7 +325,7 @@ class GetCostForecastCommand extends smithyClient.Command
|
|
|
2511
325
|
})
|
|
2512
326
|
.s("AWSInsightsIndexService", "GetCostForecast", {})
|
|
2513
327
|
.n("CostExplorerClient", "GetCostForecastCommand")
|
|
2514
|
-
.sc(GetCostForecast$)
|
|
328
|
+
.sc(schemas_0.GetCostForecast$)
|
|
2515
329
|
.build() {
|
|
2516
330
|
}
|
|
2517
331
|
|
|
@@ -2523,7 +337,7 @@ class GetDimensionValuesCommand extends smithyClient.Command
|
|
|
2523
337
|
})
|
|
2524
338
|
.s("AWSInsightsIndexService", "GetDimensionValues", {})
|
|
2525
339
|
.n("CostExplorerClient", "GetDimensionValuesCommand")
|
|
2526
|
-
.sc(GetDimensionValues$)
|
|
340
|
+
.sc(schemas_0.GetDimensionValues$)
|
|
2527
341
|
.build() {
|
|
2528
342
|
}
|
|
2529
343
|
|
|
@@ -2535,7 +349,7 @@ class GetReservationCoverageCommand extends smithyClient.Command
|
|
|
2535
349
|
})
|
|
2536
350
|
.s("AWSInsightsIndexService", "GetReservationCoverage", {})
|
|
2537
351
|
.n("CostExplorerClient", "GetReservationCoverageCommand")
|
|
2538
|
-
.sc(GetReservationCoverage$)
|
|
352
|
+
.sc(schemas_0.GetReservationCoverage$)
|
|
2539
353
|
.build() {
|
|
2540
354
|
}
|
|
2541
355
|
|
|
@@ -2547,7 +361,7 @@ class GetReservationPurchaseRecommendationCommand extends smithyClient.Command
|
|
|
2547
361
|
})
|
|
2548
362
|
.s("AWSInsightsIndexService", "GetReservationPurchaseRecommendation", {})
|
|
2549
363
|
.n("CostExplorerClient", "GetReservationPurchaseRecommendationCommand")
|
|
2550
|
-
.sc(GetReservationPurchaseRecommendation$)
|
|
364
|
+
.sc(schemas_0.GetReservationPurchaseRecommendation$)
|
|
2551
365
|
.build() {
|
|
2552
366
|
}
|
|
2553
367
|
|
|
@@ -2559,7 +373,7 @@ class GetReservationUtilizationCommand extends smithyClient.Command
|
|
|
2559
373
|
})
|
|
2560
374
|
.s("AWSInsightsIndexService", "GetReservationUtilization", {})
|
|
2561
375
|
.n("CostExplorerClient", "GetReservationUtilizationCommand")
|
|
2562
|
-
.sc(GetReservationUtilization$)
|
|
376
|
+
.sc(schemas_0.GetReservationUtilization$)
|
|
2563
377
|
.build() {
|
|
2564
378
|
}
|
|
2565
379
|
|
|
@@ -2571,7 +385,7 @@ class GetRightsizingRecommendationCommand extends smithyClient.Command
|
|
|
2571
385
|
})
|
|
2572
386
|
.s("AWSInsightsIndexService", "GetRightsizingRecommendation", {})
|
|
2573
387
|
.n("CostExplorerClient", "GetRightsizingRecommendationCommand")
|
|
2574
|
-
.sc(GetRightsizingRecommendation$)
|
|
388
|
+
.sc(schemas_0.GetRightsizingRecommendation$)
|
|
2575
389
|
.build() {
|
|
2576
390
|
}
|
|
2577
391
|
|
|
@@ -2583,7 +397,7 @@ class GetSavingsPlanPurchaseRecommendationDetailsCommand extends smithyClient.Co
|
|
|
2583
397
|
})
|
|
2584
398
|
.s("AWSInsightsIndexService", "GetSavingsPlanPurchaseRecommendationDetails", {})
|
|
2585
399
|
.n("CostExplorerClient", "GetSavingsPlanPurchaseRecommendationDetailsCommand")
|
|
2586
|
-
.sc(GetSavingsPlanPurchaseRecommendationDetails$)
|
|
400
|
+
.sc(schemas_0.GetSavingsPlanPurchaseRecommendationDetails$)
|
|
2587
401
|
.build() {
|
|
2588
402
|
}
|
|
2589
403
|
|
|
@@ -2595,7 +409,7 @@ class GetSavingsPlansCoverageCommand extends smithyClient.Command
|
|
|
2595
409
|
})
|
|
2596
410
|
.s("AWSInsightsIndexService", "GetSavingsPlansCoverage", {})
|
|
2597
411
|
.n("CostExplorerClient", "GetSavingsPlansCoverageCommand")
|
|
2598
|
-
.sc(GetSavingsPlansCoverage$)
|
|
412
|
+
.sc(schemas_0.GetSavingsPlansCoverage$)
|
|
2599
413
|
.build() {
|
|
2600
414
|
}
|
|
2601
415
|
|
|
@@ -2607,7 +421,7 @@ class GetSavingsPlansPurchaseRecommendationCommand extends smithyClient.Command
|
|
|
2607
421
|
})
|
|
2608
422
|
.s("AWSInsightsIndexService", "GetSavingsPlansPurchaseRecommendation", {})
|
|
2609
423
|
.n("CostExplorerClient", "GetSavingsPlansPurchaseRecommendationCommand")
|
|
2610
|
-
.sc(GetSavingsPlansPurchaseRecommendation$)
|
|
424
|
+
.sc(schemas_0.GetSavingsPlansPurchaseRecommendation$)
|
|
2611
425
|
.build() {
|
|
2612
426
|
}
|
|
2613
427
|
|
|
@@ -2619,7 +433,7 @@ class GetSavingsPlansUtilizationCommand extends smithyClient.Command
|
|
|
2619
433
|
})
|
|
2620
434
|
.s("AWSInsightsIndexService", "GetSavingsPlansUtilization", {})
|
|
2621
435
|
.n("CostExplorerClient", "GetSavingsPlansUtilizationCommand")
|
|
2622
|
-
.sc(GetSavingsPlansUtilization$)
|
|
436
|
+
.sc(schemas_0.GetSavingsPlansUtilization$)
|
|
2623
437
|
.build() {
|
|
2624
438
|
}
|
|
2625
439
|
|
|
@@ -2631,7 +445,7 @@ class GetSavingsPlansUtilizationDetailsCommand extends smithyClient.Command
|
|
|
2631
445
|
})
|
|
2632
446
|
.s("AWSInsightsIndexService", "GetSavingsPlansUtilizationDetails", {})
|
|
2633
447
|
.n("CostExplorerClient", "GetSavingsPlansUtilizationDetailsCommand")
|
|
2634
|
-
.sc(GetSavingsPlansUtilizationDetails$)
|
|
448
|
+
.sc(schemas_0.GetSavingsPlansUtilizationDetails$)
|
|
2635
449
|
.build() {
|
|
2636
450
|
}
|
|
2637
451
|
|
|
@@ -2643,7 +457,7 @@ class GetTagsCommand extends smithyClient.Command
|
|
|
2643
457
|
})
|
|
2644
458
|
.s("AWSInsightsIndexService", "GetTags", {})
|
|
2645
459
|
.n("CostExplorerClient", "GetTagsCommand")
|
|
2646
|
-
.sc(GetTags$)
|
|
460
|
+
.sc(schemas_0.GetTags$)
|
|
2647
461
|
.build() {
|
|
2648
462
|
}
|
|
2649
463
|
|
|
@@ -2655,7 +469,7 @@ class GetUsageForecastCommand extends smithyClient.Command
|
|
|
2655
469
|
})
|
|
2656
470
|
.s("AWSInsightsIndexService", "GetUsageForecast", {})
|
|
2657
471
|
.n("CostExplorerClient", "GetUsageForecastCommand")
|
|
2658
|
-
.sc(GetUsageForecast$)
|
|
472
|
+
.sc(schemas_0.GetUsageForecast$)
|
|
2659
473
|
.build() {
|
|
2660
474
|
}
|
|
2661
475
|
|
|
@@ -2667,7 +481,7 @@ class ListCommitmentPurchaseAnalysesCommand extends smithyClient.Command
|
|
|
2667
481
|
})
|
|
2668
482
|
.s("AWSInsightsIndexService", "ListCommitmentPurchaseAnalyses", {})
|
|
2669
483
|
.n("CostExplorerClient", "ListCommitmentPurchaseAnalysesCommand")
|
|
2670
|
-
.sc(ListCommitmentPurchaseAnalyses$)
|
|
484
|
+
.sc(schemas_0.ListCommitmentPurchaseAnalyses$)
|
|
2671
485
|
.build() {
|
|
2672
486
|
}
|
|
2673
487
|
|
|
@@ -2679,7 +493,7 @@ class ListCostAllocationTagBackfillHistoryCommand extends smithyClient.Command
|
|
|
2679
493
|
})
|
|
2680
494
|
.s("AWSInsightsIndexService", "ListCostAllocationTagBackfillHistory", {})
|
|
2681
495
|
.n("CostExplorerClient", "ListCostAllocationTagBackfillHistoryCommand")
|
|
2682
|
-
.sc(ListCostAllocationTagBackfillHistory$)
|
|
496
|
+
.sc(schemas_0.ListCostAllocationTagBackfillHistory$)
|
|
2683
497
|
.build() {
|
|
2684
498
|
}
|
|
2685
499
|
|
|
@@ -2691,7 +505,7 @@ class ListCostAllocationTagsCommand extends smithyClient.Command
|
|
|
2691
505
|
})
|
|
2692
506
|
.s("AWSInsightsIndexService", "ListCostAllocationTags", {})
|
|
2693
507
|
.n("CostExplorerClient", "ListCostAllocationTagsCommand")
|
|
2694
|
-
.sc(ListCostAllocationTags$)
|
|
508
|
+
.sc(schemas_0.ListCostAllocationTags$)
|
|
2695
509
|
.build() {
|
|
2696
510
|
}
|
|
2697
511
|
|
|
@@ -2703,7 +517,7 @@ class ListCostCategoryDefinitionsCommand extends smithyClient.Command
|
|
|
2703
517
|
})
|
|
2704
518
|
.s("AWSInsightsIndexService", "ListCostCategoryDefinitions", {})
|
|
2705
519
|
.n("CostExplorerClient", "ListCostCategoryDefinitionsCommand")
|
|
2706
|
-
.sc(ListCostCategoryDefinitions$)
|
|
520
|
+
.sc(schemas_0.ListCostCategoryDefinitions$)
|
|
2707
521
|
.build() {
|
|
2708
522
|
}
|
|
2709
523
|
|
|
@@ -2715,7 +529,7 @@ class ListCostCategoryResourceAssociationsCommand extends smithyClient.Command
|
|
|
2715
529
|
})
|
|
2716
530
|
.s("AWSInsightsIndexService", "ListCostCategoryResourceAssociations", {})
|
|
2717
531
|
.n("CostExplorerClient", "ListCostCategoryResourceAssociationsCommand")
|
|
2718
|
-
.sc(ListCostCategoryResourceAssociations$)
|
|
532
|
+
.sc(schemas_0.ListCostCategoryResourceAssociations$)
|
|
2719
533
|
.build() {
|
|
2720
534
|
}
|
|
2721
535
|
|
|
@@ -2727,7 +541,7 @@ class ListSavingsPlansPurchaseRecommendationGenerationCommand extends smithyClie
|
|
|
2727
541
|
})
|
|
2728
542
|
.s("AWSInsightsIndexService", "ListSavingsPlansPurchaseRecommendationGeneration", {})
|
|
2729
543
|
.n("CostExplorerClient", "ListSavingsPlansPurchaseRecommendationGenerationCommand")
|
|
2730
|
-
.sc(ListSavingsPlansPurchaseRecommendationGeneration$)
|
|
544
|
+
.sc(schemas_0.ListSavingsPlansPurchaseRecommendationGeneration$)
|
|
2731
545
|
.build() {
|
|
2732
546
|
}
|
|
2733
547
|
|
|
@@ -2739,7 +553,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2739
553
|
})
|
|
2740
554
|
.s("AWSInsightsIndexService", "ListTagsForResource", {})
|
|
2741
555
|
.n("CostExplorerClient", "ListTagsForResourceCommand")
|
|
2742
|
-
.sc(ListTagsForResource$)
|
|
556
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2743
557
|
.build() {
|
|
2744
558
|
}
|
|
2745
559
|
|
|
@@ -2751,7 +565,7 @@ class ProvideAnomalyFeedbackCommand extends smithyClient.Command
|
|
|
2751
565
|
})
|
|
2752
566
|
.s("AWSInsightsIndexService", "ProvideAnomalyFeedback", {})
|
|
2753
567
|
.n("CostExplorerClient", "ProvideAnomalyFeedbackCommand")
|
|
2754
|
-
.sc(ProvideAnomalyFeedback$)
|
|
568
|
+
.sc(schemas_0.ProvideAnomalyFeedback$)
|
|
2755
569
|
.build() {
|
|
2756
570
|
}
|
|
2757
571
|
|
|
@@ -2763,7 +577,7 @@ class StartCommitmentPurchaseAnalysisCommand extends smithyClient.Command
|
|
|
2763
577
|
})
|
|
2764
578
|
.s("AWSInsightsIndexService", "StartCommitmentPurchaseAnalysis", {})
|
|
2765
579
|
.n("CostExplorerClient", "StartCommitmentPurchaseAnalysisCommand")
|
|
2766
|
-
.sc(StartCommitmentPurchaseAnalysis$)
|
|
580
|
+
.sc(schemas_0.StartCommitmentPurchaseAnalysis$)
|
|
2767
581
|
.build() {
|
|
2768
582
|
}
|
|
2769
583
|
|
|
@@ -2775,7 +589,7 @@ class StartCostAllocationTagBackfillCommand extends smithyClient.Command
|
|
|
2775
589
|
})
|
|
2776
590
|
.s("AWSInsightsIndexService", "StartCostAllocationTagBackfill", {})
|
|
2777
591
|
.n("CostExplorerClient", "StartCostAllocationTagBackfillCommand")
|
|
2778
|
-
.sc(StartCostAllocationTagBackfill$)
|
|
592
|
+
.sc(schemas_0.StartCostAllocationTagBackfill$)
|
|
2779
593
|
.build() {
|
|
2780
594
|
}
|
|
2781
595
|
|
|
@@ -2787,7 +601,7 @@ class StartSavingsPlansPurchaseRecommendationGenerationCommand extends smithyCli
|
|
|
2787
601
|
})
|
|
2788
602
|
.s("AWSInsightsIndexService", "StartSavingsPlansPurchaseRecommendationGeneration", {})
|
|
2789
603
|
.n("CostExplorerClient", "StartSavingsPlansPurchaseRecommendationGenerationCommand")
|
|
2790
|
-
.sc(StartSavingsPlansPurchaseRecommendationGeneration$)
|
|
604
|
+
.sc(schemas_0.StartSavingsPlansPurchaseRecommendationGeneration$)
|
|
2791
605
|
.build() {
|
|
2792
606
|
}
|
|
2793
607
|
|
|
@@ -2799,7 +613,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2799
613
|
})
|
|
2800
614
|
.s("AWSInsightsIndexService", "TagResource", {})
|
|
2801
615
|
.n("CostExplorerClient", "TagResourceCommand")
|
|
2802
|
-
.sc(TagResource$)
|
|
616
|
+
.sc(schemas_0.TagResource$)
|
|
2803
617
|
.build() {
|
|
2804
618
|
}
|
|
2805
619
|
|
|
@@ -2811,7 +625,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2811
625
|
})
|
|
2812
626
|
.s("AWSInsightsIndexService", "UntagResource", {})
|
|
2813
627
|
.n("CostExplorerClient", "UntagResourceCommand")
|
|
2814
|
-
.sc(UntagResource$)
|
|
628
|
+
.sc(schemas_0.UntagResource$)
|
|
2815
629
|
.build() {
|
|
2816
630
|
}
|
|
2817
631
|
|
|
@@ -2823,7 +637,7 @@ class UpdateAnomalyMonitorCommand extends smithyClient.Command
|
|
|
2823
637
|
})
|
|
2824
638
|
.s("AWSInsightsIndexService", "UpdateAnomalyMonitor", {})
|
|
2825
639
|
.n("CostExplorerClient", "UpdateAnomalyMonitorCommand")
|
|
2826
|
-
.sc(UpdateAnomalyMonitor$)
|
|
640
|
+
.sc(schemas_0.UpdateAnomalyMonitor$)
|
|
2827
641
|
.build() {
|
|
2828
642
|
}
|
|
2829
643
|
|
|
@@ -2835,7 +649,7 @@ class UpdateAnomalySubscriptionCommand extends smithyClient.Command
|
|
|
2835
649
|
})
|
|
2836
650
|
.s("AWSInsightsIndexService", "UpdateAnomalySubscription", {})
|
|
2837
651
|
.n("CostExplorerClient", "UpdateAnomalySubscriptionCommand")
|
|
2838
|
-
.sc(UpdateAnomalySubscription$)
|
|
652
|
+
.sc(schemas_0.UpdateAnomalySubscription$)
|
|
2839
653
|
.build() {
|
|
2840
654
|
}
|
|
2841
655
|
|
|
@@ -2847,7 +661,7 @@ class UpdateCostAllocationTagsStatusCommand extends smithyClient.Command
|
|
|
2847
661
|
})
|
|
2848
662
|
.s("AWSInsightsIndexService", "UpdateCostAllocationTagsStatus", {})
|
|
2849
663
|
.n("CostExplorerClient", "UpdateCostAllocationTagsStatusCommand")
|
|
2850
|
-
.sc(UpdateCostAllocationTagsStatus$)
|
|
664
|
+
.sc(schemas_0.UpdateCostAllocationTagsStatus$)
|
|
2851
665
|
.build() {
|
|
2852
666
|
}
|
|
2853
667
|
|
|
@@ -2859,7 +673,7 @@ class UpdateCostCategoryDefinitionCommand extends smithyClient.Command
|
|
|
2859
673
|
})
|
|
2860
674
|
.s("AWSInsightsIndexService", "UpdateCostCategoryDefinition", {})
|
|
2861
675
|
.n("CostExplorerClient", "UpdateCostCategoryDefinitionCommand")
|
|
2862
|
-
.sc(UpdateCostCategoryDefinition$)
|
|
676
|
+
.sc(schemas_0.UpdateCostCategoryDefinition$)
|
|
2863
677
|
.build() {
|
|
2864
678
|
}
|
|
2865
679
|
|
|
@@ -3217,368 +1031,99 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3217
1031
|
enumerable: true,
|
|
3218
1032
|
get: function () { return smithyClient.Client; }
|
|
3219
1033
|
});
|
|
1034
|
+
Object.defineProperty(exports, "CostExplorerServiceException", {
|
|
1035
|
+
enumerable: true,
|
|
1036
|
+
get: function () { return CostExplorerServiceException.CostExplorerServiceException; }
|
|
1037
|
+
});
|
|
3220
1038
|
exports.AccountScope = AccountScope;
|
|
3221
|
-
exports.AnalysisDetails$ = AnalysisDetails$;
|
|
3222
|
-
exports.AnalysisNotFoundException = AnalysisNotFoundException;
|
|
3223
|
-
exports.AnalysisNotFoundException$ = AnalysisNotFoundException$;
|
|
3224
1039
|
exports.AnalysisStatus = AnalysisStatus;
|
|
3225
|
-
exports.AnalysisSummary$ = AnalysisSummary$;
|
|
3226
1040
|
exports.AnalysisType = AnalysisType;
|
|
3227
|
-
exports.Anomaly$ = Anomaly$;
|
|
3228
|
-
exports.AnomalyDateInterval$ = AnomalyDateInterval$;
|
|
3229
1041
|
exports.AnomalyFeedbackType = AnomalyFeedbackType;
|
|
3230
|
-
exports.AnomalyMonitor$ = AnomalyMonitor$;
|
|
3231
|
-
exports.AnomalyScore$ = AnomalyScore$;
|
|
3232
|
-
exports.AnomalySubscription$ = AnomalySubscription$;
|
|
3233
1042
|
exports.AnomalySubscriptionFrequency = AnomalySubscriptionFrequency;
|
|
3234
1043
|
exports.ApproximationDimension = ApproximationDimension;
|
|
3235
|
-
exports.BackfillLimitExceededException = BackfillLimitExceededException;
|
|
3236
|
-
exports.BackfillLimitExceededException$ = BackfillLimitExceededException$;
|
|
3237
|
-
exports.BillExpirationException = BillExpirationException;
|
|
3238
|
-
exports.BillExpirationException$ = BillExpirationException$;
|
|
3239
|
-
exports.BillingViewHealthStatusException = BillingViewHealthStatusException;
|
|
3240
|
-
exports.BillingViewHealthStatusException$ = BillingViewHealthStatusException$;
|
|
3241
|
-
exports.CommitmentPurchaseAnalysisConfiguration$ = CommitmentPurchaseAnalysisConfiguration$;
|
|
3242
|
-
exports.ComparisonMetricValue$ = ComparisonMetricValue$;
|
|
3243
1044
|
exports.Context = Context;
|
|
3244
|
-
exports.CostAllocationTag$ = CostAllocationTag$;
|
|
3245
|
-
exports.CostAllocationTagBackfillRequest$ = CostAllocationTagBackfillRequest$;
|
|
3246
1045
|
exports.CostAllocationTagBackfillStatus = CostAllocationTagBackfillStatus;
|
|
3247
1046
|
exports.CostAllocationTagStatus = CostAllocationTagStatus;
|
|
3248
|
-
exports.CostAllocationTagStatusEntry$ = CostAllocationTagStatusEntry$;
|
|
3249
1047
|
exports.CostAllocationTagType = CostAllocationTagType;
|
|
3250
|
-
exports.CostAndUsageComparison$ = CostAndUsageComparison$;
|
|
3251
|
-
exports.CostCategory$ = CostCategory$;
|
|
3252
|
-
exports.CostCategoryInheritedValueDimension$ = CostCategoryInheritedValueDimension$;
|
|
3253
1048
|
exports.CostCategoryInheritedValueDimensionName = CostCategoryInheritedValueDimensionName;
|
|
3254
|
-
exports.CostCategoryProcessingStatus$ = CostCategoryProcessingStatus$;
|
|
3255
|
-
exports.CostCategoryReference$ = CostCategoryReference$;
|
|
3256
|
-
exports.CostCategoryResourceAssociation$ = CostCategoryResourceAssociation$;
|
|
3257
|
-
exports.CostCategoryRule$ = CostCategoryRule$;
|
|
3258
1049
|
exports.CostCategoryRuleType = CostCategoryRuleType;
|
|
3259
1050
|
exports.CostCategoryRuleVersion = CostCategoryRuleVersion;
|
|
3260
1051
|
exports.CostCategorySplitChargeMethod = CostCategorySplitChargeMethod;
|
|
3261
|
-
exports.CostCategorySplitChargeRule$ = CostCategorySplitChargeRule$;
|
|
3262
|
-
exports.CostCategorySplitChargeRuleParameter$ = CostCategorySplitChargeRuleParameter$;
|
|
3263
1052
|
exports.CostCategorySplitChargeRuleParameterType = CostCategorySplitChargeRuleParameterType;
|
|
3264
1053
|
exports.CostCategoryStatus = CostCategoryStatus;
|
|
3265
1054
|
exports.CostCategoryStatusComponent = CostCategoryStatusComponent;
|
|
3266
|
-
exports.CostCategoryValues$ = CostCategoryValues$;
|
|
3267
|
-
exports.CostComparisonDriver$ = CostComparisonDriver$;
|
|
3268
|
-
exports.CostDriver$ = CostDriver$;
|
|
3269
1055
|
exports.CostExplorer = CostExplorer;
|
|
3270
1056
|
exports.CostExplorerClient = CostExplorerClient;
|
|
3271
|
-
exports.CostExplorerServiceException = CostExplorerServiceException;
|
|
3272
|
-
exports.CostExplorerServiceException$ = CostExplorerServiceException$;
|
|
3273
|
-
exports.Coverage$ = Coverage$;
|
|
3274
|
-
exports.CoverageByTime$ = CoverageByTime$;
|
|
3275
|
-
exports.CoverageCost$ = CoverageCost$;
|
|
3276
|
-
exports.CoverageHours$ = CoverageHours$;
|
|
3277
|
-
exports.CoverageNormalizedUnits$ = CoverageNormalizedUnits$;
|
|
3278
|
-
exports.CreateAnomalyMonitor$ = CreateAnomalyMonitor$;
|
|
3279
1057
|
exports.CreateAnomalyMonitorCommand = CreateAnomalyMonitorCommand;
|
|
3280
|
-
exports.CreateAnomalyMonitorRequest$ = CreateAnomalyMonitorRequest$;
|
|
3281
|
-
exports.CreateAnomalyMonitorResponse$ = CreateAnomalyMonitorResponse$;
|
|
3282
|
-
exports.CreateAnomalySubscription$ = CreateAnomalySubscription$;
|
|
3283
1058
|
exports.CreateAnomalySubscriptionCommand = CreateAnomalySubscriptionCommand;
|
|
3284
|
-
exports.CreateAnomalySubscriptionRequest$ = CreateAnomalySubscriptionRequest$;
|
|
3285
|
-
exports.CreateAnomalySubscriptionResponse$ = CreateAnomalySubscriptionResponse$;
|
|
3286
|
-
exports.CreateCostCategoryDefinition$ = CreateCostCategoryDefinition$;
|
|
3287
1059
|
exports.CreateCostCategoryDefinitionCommand = CreateCostCategoryDefinitionCommand;
|
|
3288
|
-
exports.CreateCostCategoryDefinitionRequest$ = CreateCostCategoryDefinitionRequest$;
|
|
3289
|
-
exports.CreateCostCategoryDefinitionResponse$ = CreateCostCategoryDefinitionResponse$;
|
|
3290
|
-
exports.CurrentInstance$ = CurrentInstance$;
|
|
3291
|
-
exports.DataUnavailableException = DataUnavailableException;
|
|
3292
|
-
exports.DataUnavailableException$ = DataUnavailableException$;
|
|
3293
|
-
exports.DateInterval$ = DateInterval$;
|
|
3294
|
-
exports.DeleteAnomalyMonitor$ = DeleteAnomalyMonitor$;
|
|
3295
1060
|
exports.DeleteAnomalyMonitorCommand = DeleteAnomalyMonitorCommand;
|
|
3296
|
-
exports.DeleteAnomalyMonitorRequest$ = DeleteAnomalyMonitorRequest$;
|
|
3297
|
-
exports.DeleteAnomalyMonitorResponse$ = DeleteAnomalyMonitorResponse$;
|
|
3298
|
-
exports.DeleteAnomalySubscription$ = DeleteAnomalySubscription$;
|
|
3299
1061
|
exports.DeleteAnomalySubscriptionCommand = DeleteAnomalySubscriptionCommand;
|
|
3300
|
-
exports.DeleteAnomalySubscriptionRequest$ = DeleteAnomalySubscriptionRequest$;
|
|
3301
|
-
exports.DeleteAnomalySubscriptionResponse$ = DeleteAnomalySubscriptionResponse$;
|
|
3302
|
-
exports.DeleteCostCategoryDefinition$ = DeleteCostCategoryDefinition$;
|
|
3303
1062
|
exports.DeleteCostCategoryDefinitionCommand = DeleteCostCategoryDefinitionCommand;
|
|
3304
|
-
exports.DeleteCostCategoryDefinitionRequest$ = DeleteCostCategoryDefinitionRequest$;
|
|
3305
|
-
exports.DeleteCostCategoryDefinitionResponse$ = DeleteCostCategoryDefinitionResponse$;
|
|
3306
|
-
exports.DescribeCostCategoryDefinition$ = DescribeCostCategoryDefinition$;
|
|
3307
1063
|
exports.DescribeCostCategoryDefinitionCommand = DescribeCostCategoryDefinitionCommand;
|
|
3308
|
-
exports.DescribeCostCategoryDefinitionRequest$ = DescribeCostCategoryDefinitionRequest$;
|
|
3309
|
-
exports.DescribeCostCategoryDefinitionResponse$ = DescribeCostCategoryDefinitionResponse$;
|
|
3310
1064
|
exports.Dimension = Dimension;
|
|
3311
|
-
exports.DimensionValues$ = DimensionValues$;
|
|
3312
|
-
exports.DimensionValuesWithAttributes$ = DimensionValuesWithAttributes$;
|
|
3313
|
-
exports.DiskResourceUtilization$ = DiskResourceUtilization$;
|
|
3314
|
-
exports.DynamoDBCapacityDetails$ = DynamoDBCapacityDetails$;
|
|
3315
|
-
exports.EBSResourceUtilization$ = EBSResourceUtilization$;
|
|
3316
|
-
exports.EC2InstanceDetails$ = EC2InstanceDetails$;
|
|
3317
|
-
exports.EC2ResourceDetails$ = EC2ResourceDetails$;
|
|
3318
|
-
exports.EC2ResourceUtilization$ = EC2ResourceUtilization$;
|
|
3319
|
-
exports.EC2Specification$ = EC2Specification$;
|
|
3320
|
-
exports.ESInstanceDetails$ = ESInstanceDetails$;
|
|
3321
|
-
exports.ElastiCacheInstanceDetails$ = ElastiCacheInstanceDetails$;
|
|
3322
1065
|
exports.ErrorCode = ErrorCode;
|
|
3323
|
-
exports.Expression$ = Expression$;
|
|
3324
1066
|
exports.FindingReasonCode = FindingReasonCode;
|
|
3325
|
-
exports.ForecastResult$ = ForecastResult$;
|
|
3326
|
-
exports.GenerationExistsException = GenerationExistsException;
|
|
3327
|
-
exports.GenerationExistsException$ = GenerationExistsException$;
|
|
3328
1067
|
exports.GenerationStatus = GenerationStatus;
|
|
3329
|
-
exports.GenerationSummary$ = GenerationSummary$;
|
|
3330
|
-
exports.GetAnomalies$ = GetAnomalies$;
|
|
3331
1068
|
exports.GetAnomaliesCommand = GetAnomaliesCommand;
|
|
3332
|
-
exports.GetAnomaliesRequest$ = GetAnomaliesRequest$;
|
|
3333
|
-
exports.GetAnomaliesResponse$ = GetAnomaliesResponse$;
|
|
3334
|
-
exports.GetAnomalyMonitors$ = GetAnomalyMonitors$;
|
|
3335
1069
|
exports.GetAnomalyMonitorsCommand = GetAnomalyMonitorsCommand;
|
|
3336
|
-
exports.GetAnomalyMonitorsRequest$ = GetAnomalyMonitorsRequest$;
|
|
3337
|
-
exports.GetAnomalyMonitorsResponse$ = GetAnomalyMonitorsResponse$;
|
|
3338
|
-
exports.GetAnomalySubscriptions$ = GetAnomalySubscriptions$;
|
|
3339
1070
|
exports.GetAnomalySubscriptionsCommand = GetAnomalySubscriptionsCommand;
|
|
3340
|
-
exports.GetAnomalySubscriptionsRequest$ = GetAnomalySubscriptionsRequest$;
|
|
3341
|
-
exports.GetAnomalySubscriptionsResponse$ = GetAnomalySubscriptionsResponse$;
|
|
3342
|
-
exports.GetApproximateUsageRecords$ = GetApproximateUsageRecords$;
|
|
3343
1071
|
exports.GetApproximateUsageRecordsCommand = GetApproximateUsageRecordsCommand;
|
|
3344
|
-
exports.GetApproximateUsageRecordsRequest$ = GetApproximateUsageRecordsRequest$;
|
|
3345
|
-
exports.GetApproximateUsageRecordsResponse$ = GetApproximateUsageRecordsResponse$;
|
|
3346
|
-
exports.GetCommitmentPurchaseAnalysis$ = GetCommitmentPurchaseAnalysis$;
|
|
3347
1072
|
exports.GetCommitmentPurchaseAnalysisCommand = GetCommitmentPurchaseAnalysisCommand;
|
|
3348
|
-
exports.GetCommitmentPurchaseAnalysisRequest$ = GetCommitmentPurchaseAnalysisRequest$;
|
|
3349
|
-
exports.GetCommitmentPurchaseAnalysisResponse$ = GetCommitmentPurchaseAnalysisResponse$;
|
|
3350
|
-
exports.GetCostAndUsage$ = GetCostAndUsage$;
|
|
3351
1073
|
exports.GetCostAndUsageCommand = GetCostAndUsageCommand;
|
|
3352
|
-
exports.GetCostAndUsageComparisons$ = GetCostAndUsageComparisons$;
|
|
3353
1074
|
exports.GetCostAndUsageComparisonsCommand = GetCostAndUsageComparisonsCommand;
|
|
3354
|
-
exports.GetCostAndUsageComparisonsRequest$ = GetCostAndUsageComparisonsRequest$;
|
|
3355
|
-
exports.GetCostAndUsageComparisonsResponse$ = GetCostAndUsageComparisonsResponse$;
|
|
3356
|
-
exports.GetCostAndUsageRequest$ = GetCostAndUsageRequest$;
|
|
3357
|
-
exports.GetCostAndUsageResponse$ = GetCostAndUsageResponse$;
|
|
3358
|
-
exports.GetCostAndUsageWithResources$ = GetCostAndUsageWithResources$;
|
|
3359
1075
|
exports.GetCostAndUsageWithResourcesCommand = GetCostAndUsageWithResourcesCommand;
|
|
3360
|
-
exports.GetCostAndUsageWithResourcesRequest$ = GetCostAndUsageWithResourcesRequest$;
|
|
3361
|
-
exports.GetCostAndUsageWithResourcesResponse$ = GetCostAndUsageWithResourcesResponse$;
|
|
3362
|
-
exports.GetCostCategories$ = GetCostCategories$;
|
|
3363
1076
|
exports.GetCostCategoriesCommand = GetCostCategoriesCommand;
|
|
3364
|
-
exports.GetCostCategoriesRequest$ = GetCostCategoriesRequest$;
|
|
3365
|
-
exports.GetCostCategoriesResponse$ = GetCostCategoriesResponse$;
|
|
3366
|
-
exports.GetCostComparisonDrivers$ = GetCostComparisonDrivers$;
|
|
3367
1077
|
exports.GetCostComparisonDriversCommand = GetCostComparisonDriversCommand;
|
|
3368
|
-
exports.GetCostComparisonDriversRequest$ = GetCostComparisonDriversRequest$;
|
|
3369
|
-
exports.GetCostComparisonDriversResponse$ = GetCostComparisonDriversResponse$;
|
|
3370
|
-
exports.GetCostForecast$ = GetCostForecast$;
|
|
3371
1078
|
exports.GetCostForecastCommand = GetCostForecastCommand;
|
|
3372
|
-
exports.GetCostForecastRequest$ = GetCostForecastRequest$;
|
|
3373
|
-
exports.GetCostForecastResponse$ = GetCostForecastResponse$;
|
|
3374
|
-
exports.GetDimensionValues$ = GetDimensionValues$;
|
|
3375
1079
|
exports.GetDimensionValuesCommand = GetDimensionValuesCommand;
|
|
3376
|
-
exports.GetDimensionValuesRequest$ = GetDimensionValuesRequest$;
|
|
3377
|
-
exports.GetDimensionValuesResponse$ = GetDimensionValuesResponse$;
|
|
3378
|
-
exports.GetReservationCoverage$ = GetReservationCoverage$;
|
|
3379
1080
|
exports.GetReservationCoverageCommand = GetReservationCoverageCommand;
|
|
3380
|
-
exports.GetReservationCoverageRequest$ = GetReservationCoverageRequest$;
|
|
3381
|
-
exports.GetReservationCoverageResponse$ = GetReservationCoverageResponse$;
|
|
3382
|
-
exports.GetReservationPurchaseRecommendation$ = GetReservationPurchaseRecommendation$;
|
|
3383
1081
|
exports.GetReservationPurchaseRecommendationCommand = GetReservationPurchaseRecommendationCommand;
|
|
3384
|
-
exports.GetReservationPurchaseRecommendationRequest$ = GetReservationPurchaseRecommendationRequest$;
|
|
3385
|
-
exports.GetReservationPurchaseRecommendationResponse$ = GetReservationPurchaseRecommendationResponse$;
|
|
3386
|
-
exports.GetReservationUtilization$ = GetReservationUtilization$;
|
|
3387
1082
|
exports.GetReservationUtilizationCommand = GetReservationUtilizationCommand;
|
|
3388
|
-
exports.GetReservationUtilizationRequest$ = GetReservationUtilizationRequest$;
|
|
3389
|
-
exports.GetReservationUtilizationResponse$ = GetReservationUtilizationResponse$;
|
|
3390
|
-
exports.GetRightsizingRecommendation$ = GetRightsizingRecommendation$;
|
|
3391
1083
|
exports.GetRightsizingRecommendationCommand = GetRightsizingRecommendationCommand;
|
|
3392
|
-
exports.GetRightsizingRecommendationRequest$ = GetRightsizingRecommendationRequest$;
|
|
3393
|
-
exports.GetRightsizingRecommendationResponse$ = GetRightsizingRecommendationResponse$;
|
|
3394
|
-
exports.GetSavingsPlanPurchaseRecommendationDetails$ = GetSavingsPlanPurchaseRecommendationDetails$;
|
|
3395
1084
|
exports.GetSavingsPlanPurchaseRecommendationDetailsCommand = GetSavingsPlanPurchaseRecommendationDetailsCommand;
|
|
3396
|
-
exports.GetSavingsPlanPurchaseRecommendationDetailsRequest$ = GetSavingsPlanPurchaseRecommendationDetailsRequest$;
|
|
3397
|
-
exports.GetSavingsPlanPurchaseRecommendationDetailsResponse$ = GetSavingsPlanPurchaseRecommendationDetailsResponse$;
|
|
3398
|
-
exports.GetSavingsPlansCoverage$ = GetSavingsPlansCoverage$;
|
|
3399
1085
|
exports.GetSavingsPlansCoverageCommand = GetSavingsPlansCoverageCommand;
|
|
3400
|
-
exports.GetSavingsPlansCoverageRequest$ = GetSavingsPlansCoverageRequest$;
|
|
3401
|
-
exports.GetSavingsPlansCoverageResponse$ = GetSavingsPlansCoverageResponse$;
|
|
3402
|
-
exports.GetSavingsPlansPurchaseRecommendation$ = GetSavingsPlansPurchaseRecommendation$;
|
|
3403
1086
|
exports.GetSavingsPlansPurchaseRecommendationCommand = GetSavingsPlansPurchaseRecommendationCommand;
|
|
3404
|
-
exports.GetSavingsPlansPurchaseRecommendationRequest$ = GetSavingsPlansPurchaseRecommendationRequest$;
|
|
3405
|
-
exports.GetSavingsPlansPurchaseRecommendationResponse$ = GetSavingsPlansPurchaseRecommendationResponse$;
|
|
3406
|
-
exports.GetSavingsPlansUtilization$ = GetSavingsPlansUtilization$;
|
|
3407
1087
|
exports.GetSavingsPlansUtilizationCommand = GetSavingsPlansUtilizationCommand;
|
|
3408
|
-
exports.GetSavingsPlansUtilizationDetails$ = GetSavingsPlansUtilizationDetails$;
|
|
3409
1088
|
exports.GetSavingsPlansUtilizationDetailsCommand = GetSavingsPlansUtilizationDetailsCommand;
|
|
3410
|
-
exports.GetSavingsPlansUtilizationDetailsRequest$ = GetSavingsPlansUtilizationDetailsRequest$;
|
|
3411
|
-
exports.GetSavingsPlansUtilizationDetailsResponse$ = GetSavingsPlansUtilizationDetailsResponse$;
|
|
3412
|
-
exports.GetSavingsPlansUtilizationRequest$ = GetSavingsPlansUtilizationRequest$;
|
|
3413
|
-
exports.GetSavingsPlansUtilizationResponse$ = GetSavingsPlansUtilizationResponse$;
|
|
3414
|
-
exports.GetTags$ = GetTags$;
|
|
3415
1089
|
exports.GetTagsCommand = GetTagsCommand;
|
|
3416
|
-
exports.GetTagsRequest$ = GetTagsRequest$;
|
|
3417
|
-
exports.GetTagsResponse$ = GetTagsResponse$;
|
|
3418
|
-
exports.GetUsageForecast$ = GetUsageForecast$;
|
|
3419
1090
|
exports.GetUsageForecastCommand = GetUsageForecastCommand;
|
|
3420
|
-
exports.GetUsageForecastRequest$ = GetUsageForecastRequest$;
|
|
3421
|
-
exports.GetUsageForecastResponse$ = GetUsageForecastResponse$;
|
|
3422
1091
|
exports.Granularity = Granularity;
|
|
3423
|
-
exports.Group$ = Group$;
|
|
3424
|
-
exports.GroupDefinition$ = GroupDefinition$;
|
|
3425
1092
|
exports.GroupDefinitionType = GroupDefinitionType;
|
|
3426
|
-
exports.Impact$ = Impact$;
|
|
3427
|
-
exports.InstanceDetails$ = InstanceDetails$;
|
|
3428
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
3429
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
3430
|
-
exports.LimitExceededException = LimitExceededException;
|
|
3431
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
3432
|
-
exports.ListCommitmentPurchaseAnalyses$ = ListCommitmentPurchaseAnalyses$;
|
|
3433
1093
|
exports.ListCommitmentPurchaseAnalysesCommand = ListCommitmentPurchaseAnalysesCommand;
|
|
3434
|
-
exports.ListCommitmentPurchaseAnalysesRequest$ = ListCommitmentPurchaseAnalysesRequest$;
|
|
3435
|
-
exports.ListCommitmentPurchaseAnalysesResponse$ = ListCommitmentPurchaseAnalysesResponse$;
|
|
3436
|
-
exports.ListCostAllocationTagBackfillHistory$ = ListCostAllocationTagBackfillHistory$;
|
|
3437
1094
|
exports.ListCostAllocationTagBackfillHistoryCommand = ListCostAllocationTagBackfillHistoryCommand;
|
|
3438
|
-
exports.ListCostAllocationTagBackfillHistoryRequest$ = ListCostAllocationTagBackfillHistoryRequest$;
|
|
3439
|
-
exports.ListCostAllocationTagBackfillHistoryResponse$ = ListCostAllocationTagBackfillHistoryResponse$;
|
|
3440
|
-
exports.ListCostAllocationTags$ = ListCostAllocationTags$;
|
|
3441
1095
|
exports.ListCostAllocationTagsCommand = ListCostAllocationTagsCommand;
|
|
3442
|
-
exports.ListCostAllocationTagsRequest$ = ListCostAllocationTagsRequest$;
|
|
3443
|
-
exports.ListCostAllocationTagsResponse$ = ListCostAllocationTagsResponse$;
|
|
3444
|
-
exports.ListCostCategoryDefinitions$ = ListCostCategoryDefinitions$;
|
|
3445
1096
|
exports.ListCostCategoryDefinitionsCommand = ListCostCategoryDefinitionsCommand;
|
|
3446
|
-
exports.ListCostCategoryDefinitionsRequest$ = ListCostCategoryDefinitionsRequest$;
|
|
3447
|
-
exports.ListCostCategoryDefinitionsResponse$ = ListCostCategoryDefinitionsResponse$;
|
|
3448
|
-
exports.ListCostCategoryResourceAssociations$ = ListCostCategoryResourceAssociations$;
|
|
3449
1097
|
exports.ListCostCategoryResourceAssociationsCommand = ListCostCategoryResourceAssociationsCommand;
|
|
3450
|
-
exports.ListCostCategoryResourceAssociationsRequest$ = ListCostCategoryResourceAssociationsRequest$;
|
|
3451
|
-
exports.ListCostCategoryResourceAssociationsResponse$ = ListCostCategoryResourceAssociationsResponse$;
|
|
3452
|
-
exports.ListSavingsPlansPurchaseRecommendationGeneration$ = ListSavingsPlansPurchaseRecommendationGeneration$;
|
|
3453
1098
|
exports.ListSavingsPlansPurchaseRecommendationGenerationCommand = ListSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
3454
|
-
exports.ListSavingsPlansPurchaseRecommendationGenerationRequest$ = ListSavingsPlansPurchaseRecommendationGenerationRequest$;
|
|
3455
|
-
exports.ListSavingsPlansPurchaseRecommendationGenerationResponse$ = ListSavingsPlansPurchaseRecommendationGenerationResponse$;
|
|
3456
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3457
1099
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3458
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3459
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3460
1100
|
exports.LookbackPeriodInDays = LookbackPeriodInDays;
|
|
3461
1101
|
exports.MatchOption = MatchOption;
|
|
3462
|
-
exports.MemoryDBInstanceDetails$ = MemoryDBInstanceDetails$;
|
|
3463
1102
|
exports.Metric = Metric;
|
|
3464
|
-
exports.MetricValue$ = MetricValue$;
|
|
3465
|
-
exports.ModifyRecommendationDetail$ = ModifyRecommendationDetail$;
|
|
3466
1103
|
exports.MonitorDimension = MonitorDimension;
|
|
3467
1104
|
exports.MonitorType = MonitorType;
|
|
3468
|
-
exports.NetworkResourceUtilization$ = NetworkResourceUtilization$;
|
|
3469
1105
|
exports.NumericOperator = NumericOperator;
|
|
3470
1106
|
exports.OfferingClass = OfferingClass;
|
|
3471
1107
|
exports.PaymentOption = PaymentOption;
|
|
3472
1108
|
exports.PlatformDifference = PlatformDifference;
|
|
3473
|
-
exports.ProvideAnomalyFeedback$ = ProvideAnomalyFeedback$;
|
|
3474
1109
|
exports.ProvideAnomalyFeedbackCommand = ProvideAnomalyFeedbackCommand;
|
|
3475
|
-
exports.ProvideAnomalyFeedbackRequest$ = ProvideAnomalyFeedbackRequest$;
|
|
3476
|
-
exports.ProvideAnomalyFeedbackResponse$ = ProvideAnomalyFeedbackResponse$;
|
|
3477
|
-
exports.RDSInstanceDetails$ = RDSInstanceDetails$;
|
|
3478
|
-
exports.RecommendationDetailData$ = RecommendationDetailData$;
|
|
3479
|
-
exports.RecommendationDetailHourlyMetrics$ = RecommendationDetailHourlyMetrics$;
|
|
3480
1110
|
exports.RecommendationTarget = RecommendationTarget;
|
|
3481
|
-
exports.RedshiftInstanceDetails$ = RedshiftInstanceDetails$;
|
|
3482
|
-
exports.RequestChangedException = RequestChangedException;
|
|
3483
|
-
exports.RequestChangedException$ = RequestChangedException$;
|
|
3484
|
-
exports.ReservationAggregates$ = ReservationAggregates$;
|
|
3485
|
-
exports.ReservationCoverageGroup$ = ReservationCoverageGroup$;
|
|
3486
|
-
exports.ReservationPurchaseRecommendation$ = ReservationPurchaseRecommendation$;
|
|
3487
|
-
exports.ReservationPurchaseRecommendationDetail$ = ReservationPurchaseRecommendationDetail$;
|
|
3488
|
-
exports.ReservationPurchaseRecommendationMetadata$ = ReservationPurchaseRecommendationMetadata$;
|
|
3489
|
-
exports.ReservationPurchaseRecommendationSummary$ = ReservationPurchaseRecommendationSummary$;
|
|
3490
|
-
exports.ReservationUtilizationGroup$ = ReservationUtilizationGroup$;
|
|
3491
|
-
exports.ReservedCapacityDetails$ = ReservedCapacityDetails$;
|
|
3492
|
-
exports.ResourceDetails$ = ResourceDetails$;
|
|
3493
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3494
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3495
|
-
exports.ResourceTag$ = ResourceTag$;
|
|
3496
|
-
exports.ResourceUtilization$ = ResourceUtilization$;
|
|
3497
|
-
exports.ResultByTime$ = ResultByTime$;
|
|
3498
|
-
exports.RightsizingRecommendation$ = RightsizingRecommendation$;
|
|
3499
|
-
exports.RightsizingRecommendationConfiguration$ = RightsizingRecommendationConfiguration$;
|
|
3500
|
-
exports.RightsizingRecommendationMetadata$ = RightsizingRecommendationMetadata$;
|
|
3501
|
-
exports.RightsizingRecommendationSummary$ = RightsizingRecommendationSummary$;
|
|
3502
1111
|
exports.RightsizingType = RightsizingType;
|
|
3503
|
-
exports.RootCause$ = RootCause$;
|
|
3504
|
-
exports.RootCauseImpact$ = RootCauseImpact$;
|
|
3505
|
-
exports.SavingsPlans$ = SavingsPlans$;
|
|
3506
|
-
exports.SavingsPlansAmortizedCommitment$ = SavingsPlansAmortizedCommitment$;
|
|
3507
|
-
exports.SavingsPlansCoverage$ = SavingsPlansCoverage$;
|
|
3508
|
-
exports.SavingsPlansCoverageData$ = SavingsPlansCoverageData$;
|
|
3509
1112
|
exports.SavingsPlansDataType = SavingsPlansDataType;
|
|
3510
|
-
exports.SavingsPlansDetails$ = SavingsPlansDetails$;
|
|
3511
|
-
exports.SavingsPlansPurchaseAnalysisConfiguration$ = SavingsPlansPurchaseAnalysisConfiguration$;
|
|
3512
|
-
exports.SavingsPlansPurchaseAnalysisDetails$ = SavingsPlansPurchaseAnalysisDetails$;
|
|
3513
|
-
exports.SavingsPlansPurchaseRecommendation$ = SavingsPlansPurchaseRecommendation$;
|
|
3514
|
-
exports.SavingsPlansPurchaseRecommendationDetail$ = SavingsPlansPurchaseRecommendationDetail$;
|
|
3515
|
-
exports.SavingsPlansPurchaseRecommendationMetadata$ = SavingsPlansPurchaseRecommendationMetadata$;
|
|
3516
|
-
exports.SavingsPlansPurchaseRecommendationSummary$ = SavingsPlansPurchaseRecommendationSummary$;
|
|
3517
|
-
exports.SavingsPlansSavings$ = SavingsPlansSavings$;
|
|
3518
|
-
exports.SavingsPlansUtilization$ = SavingsPlansUtilization$;
|
|
3519
|
-
exports.SavingsPlansUtilizationAggregates$ = SavingsPlansUtilizationAggregates$;
|
|
3520
|
-
exports.SavingsPlansUtilizationByTime$ = SavingsPlansUtilizationByTime$;
|
|
3521
|
-
exports.SavingsPlansUtilizationDetail$ = SavingsPlansUtilizationDetail$;
|
|
3522
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3523
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3524
|
-
exports.ServiceSpecification$ = ServiceSpecification$;
|
|
3525
|
-
exports.SortDefinition$ = SortDefinition$;
|
|
3526
1113
|
exports.SortOrder = SortOrder;
|
|
3527
|
-
exports.StartCommitmentPurchaseAnalysis$ = StartCommitmentPurchaseAnalysis$;
|
|
3528
1114
|
exports.StartCommitmentPurchaseAnalysisCommand = StartCommitmentPurchaseAnalysisCommand;
|
|
3529
|
-
exports.StartCommitmentPurchaseAnalysisRequest$ = StartCommitmentPurchaseAnalysisRequest$;
|
|
3530
|
-
exports.StartCommitmentPurchaseAnalysisResponse$ = StartCommitmentPurchaseAnalysisResponse$;
|
|
3531
|
-
exports.StartCostAllocationTagBackfill$ = StartCostAllocationTagBackfill$;
|
|
3532
1115
|
exports.StartCostAllocationTagBackfillCommand = StartCostAllocationTagBackfillCommand;
|
|
3533
|
-
exports.StartCostAllocationTagBackfillRequest$ = StartCostAllocationTagBackfillRequest$;
|
|
3534
|
-
exports.StartCostAllocationTagBackfillResponse$ = StartCostAllocationTagBackfillResponse$;
|
|
3535
|
-
exports.StartSavingsPlansPurchaseRecommendationGeneration$ = StartSavingsPlansPurchaseRecommendationGeneration$;
|
|
3536
1116
|
exports.StartSavingsPlansPurchaseRecommendationGenerationCommand = StartSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
3537
|
-
exports.StartSavingsPlansPurchaseRecommendationGenerationRequest$ = StartSavingsPlansPurchaseRecommendationGenerationRequest$;
|
|
3538
|
-
exports.StartSavingsPlansPurchaseRecommendationGenerationResponse$ = StartSavingsPlansPurchaseRecommendationGenerationResponse$;
|
|
3539
|
-
exports.Subscriber$ = Subscriber$;
|
|
3540
1117
|
exports.SubscriberStatus = SubscriberStatus;
|
|
3541
1118
|
exports.SubscriberType = SubscriberType;
|
|
3542
1119
|
exports.SupportedSavingsPlansType = SupportedSavingsPlansType;
|
|
3543
|
-
exports.TagResource$ = TagResource$;
|
|
3544
1120
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3545
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3546
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3547
|
-
exports.TagValues$ = TagValues$;
|
|
3548
|
-
exports.TargetInstance$ = TargetInstance$;
|
|
3549
1121
|
exports.TermInYears = TermInYears;
|
|
3550
|
-
exports.TerminateRecommendationDetail$ = TerminateRecommendationDetail$;
|
|
3551
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
3552
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3553
|
-
exports.TotalImpactFilter$ = TotalImpactFilter$;
|
|
3554
|
-
exports.UnknownMonitorException = UnknownMonitorException;
|
|
3555
|
-
exports.UnknownMonitorException$ = UnknownMonitorException$;
|
|
3556
|
-
exports.UnknownSubscriptionException = UnknownSubscriptionException;
|
|
3557
|
-
exports.UnknownSubscriptionException$ = UnknownSubscriptionException$;
|
|
3558
|
-
exports.UnresolvableUsageUnitException = UnresolvableUsageUnitException;
|
|
3559
|
-
exports.UnresolvableUsageUnitException$ = UnresolvableUsageUnitException$;
|
|
3560
|
-
exports.UntagResource$ = UntagResource$;
|
|
3561
1122
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3562
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3563
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3564
|
-
exports.UpdateAnomalyMonitor$ = UpdateAnomalyMonitor$;
|
|
3565
1123
|
exports.UpdateAnomalyMonitorCommand = UpdateAnomalyMonitorCommand;
|
|
3566
|
-
exports.UpdateAnomalyMonitorRequest$ = UpdateAnomalyMonitorRequest$;
|
|
3567
|
-
exports.UpdateAnomalyMonitorResponse$ = UpdateAnomalyMonitorResponse$;
|
|
3568
|
-
exports.UpdateAnomalySubscription$ = UpdateAnomalySubscription$;
|
|
3569
1124
|
exports.UpdateAnomalySubscriptionCommand = UpdateAnomalySubscriptionCommand;
|
|
3570
|
-
exports.UpdateAnomalySubscriptionRequest$ = UpdateAnomalySubscriptionRequest$;
|
|
3571
|
-
exports.UpdateAnomalySubscriptionResponse$ = UpdateAnomalySubscriptionResponse$;
|
|
3572
|
-
exports.UpdateCostAllocationTagsStatus$ = UpdateCostAllocationTagsStatus$;
|
|
3573
1125
|
exports.UpdateCostAllocationTagsStatusCommand = UpdateCostAllocationTagsStatusCommand;
|
|
3574
|
-
exports.UpdateCostAllocationTagsStatusError$ = UpdateCostAllocationTagsStatusError$;
|
|
3575
|
-
exports.UpdateCostAllocationTagsStatusRequest$ = UpdateCostAllocationTagsStatusRequest$;
|
|
3576
|
-
exports.UpdateCostAllocationTagsStatusResponse$ = UpdateCostAllocationTagsStatusResponse$;
|
|
3577
|
-
exports.UpdateCostCategoryDefinition$ = UpdateCostCategoryDefinition$;
|
|
3578
1126
|
exports.UpdateCostCategoryDefinitionCommand = UpdateCostCategoryDefinitionCommand;
|
|
3579
|
-
exports.UpdateCostCategoryDefinitionRequest$ = UpdateCostCategoryDefinitionRequest$;
|
|
3580
|
-
exports.UpdateCostCategoryDefinitionResponse$ = UpdateCostCategoryDefinitionResponse$;
|
|
3581
|
-
exports.UtilizationByTime$ = UtilizationByTime$;
|
|
3582
1127
|
exports.paginateGetAnomalies = paginateGetAnomalies;
|
|
3583
1128
|
exports.paginateGetAnomalyMonitors = paginateGetAnomalyMonitors;
|
|
3584
1129
|
exports.paginateGetAnomalySubscriptions = paginateGetAnomalySubscriptions;
|
|
@@ -3594,3 +1139,15 @@ exports.paginateListCostAllocationTags = paginateListCostAllocationTags;
|
|
|
3594
1139
|
exports.paginateListCostCategoryDefinitions = paginateListCostCategoryDefinitions;
|
|
3595
1140
|
exports.paginateListCostCategoryResourceAssociations = paginateListCostCategoryResourceAssociations;
|
|
3596
1141
|
exports.paginateListSavingsPlansPurchaseRecommendationGeneration = paginateListSavingsPlansPurchaseRecommendationGeneration;
|
|
1142
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1143
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1144
|
+
enumerable: true,
|
|
1145
|
+
get: function () { return schemas_0[k]; }
|
|
1146
|
+
});
|
|
1147
|
+
});
|
|
1148
|
+
Object.keys(errors).forEach(function (k) {
|
|
1149
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1150
|
+
enumerable: true,
|
|
1151
|
+
get: function () { return errors[k]; }
|
|
1152
|
+
});
|
|
1153
|
+
});
|