@aws-sdk/client-cost-explorer 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CostExplorerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +145 -4
- package/dist-cjs/protocols/Aws_json1_1.js +314 -882
- package/dist-es/index.js +1 -0
- package/dist-es/models/CostExplorerServiceException.js +12 -0
- package/dist-es/models/models_0.js +132 -1
- package/dist-es/protocols/Aws_json1_1.js +637 -983
- package/dist-types/CostExplorerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CostExplorerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -31
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CostExplorerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CostExplorerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -31
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cost-explorer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-cost-explorer
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-cost-explorer
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CostExplorerServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./CostExplorer"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./CostExplorerClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var CostExplorerServiceException_1 = require("./models/CostExplorerServiceException");
|
|
11
|
+
Object.defineProperty(exports, "CostExplorerServiceException", { enumerable: true, get: function () { return CostExplorerServiceException_1.CostExplorerServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CostExplorerServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class CostExplorerServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, CostExplorerServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.CostExplorerServiceException = CostExplorerServiceException;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.DescribeCostCategoryDefinitionResponse = exports.UpdateCostCategoryDefinitionRequest = exports.GetAnomalyMonitorsResponse = exports.CreateCostCategoryDefinitionRequest = exports.CostCategory = exports.CreateAnomalyMonitorRequest = exports.GetUsageForecastRequest = exports.GetTagsRequest = exports.GetSavingsPlansUtilizationRequest = exports.GetSavingsPlansUtilizationDetailsRequest = exports.GetSavingsPlansPurchaseRecommendationRequest = exports.GetSavingsPlansCoverageRequest = exports.GetRightsizingRecommendationRequest = exports.GetReservationUtilizationRequest = exports.GetReservationPurchaseRecommendationRequest = exports.GetReservationCoverageRequest = exports.GetDimensionValuesRequest = exports.GetCostForecastRequest = exports.GetCostCategoriesRequest = void 0;
|
|
3
|
+
exports.GetAnomaliesResponse = exports.GetAnomaliesRequest = exports.TotalImpactFilter = exports.NumericOperator = exports.CostCategoryProcessingStatus = exports.CostCategoryStatus = exports.CostCategoryStatusComponent = exports.DescribeCostCategoryDefinitionRequest = exports.ResourceNotFoundException = exports.DeleteCostCategoryDefinitionResponse = exports.DeleteCostCategoryDefinitionRequest = exports.UnknownSubscriptionException = exports.DeleteAnomalySubscriptionResponse = exports.DeleteAnomalySubscriptionRequest = exports.DeleteAnomalyMonitorResponse = exports.DeleteAnomalyMonitorRequest = exports.ServiceQuotaExceededException = exports.CreateCostCategoryDefinitionResponse = exports.CostCategorySplitChargeRule = exports.CostCategorySplitChargeRuleParameter = exports.CostCategorySplitChargeRuleParameterType = exports.CostCategorySplitChargeMethod = exports.CostCategoryRuleVersion = exports.CostCategoryRuleType = exports.CostCategoryInheritedValueDimension = exports.CostCategoryInheritedValueDimensionName = exports.UnknownMonitorException = exports.CreateAnomalySubscriptionResponse = exports.CreateAnomalySubscriptionRequest = exports.LimitExceededException = exports.CreateAnomalyMonitorResponse = exports.AnomalySubscription = exports.Subscriber = exports.SubscriberType = exports.SubscriberStatus = exports.AnomalySubscriptionFrequency = exports.MonitorType = exports.TagValues = exports.DimensionValues = exports.Dimension = exports.CostCategoryValues = exports.MatchOption = exports.MonitorDimension = exports.AnomalyDateInterval = exports.Anomaly = exports.RootCause = exports.Impact = exports.AnomalyFeedbackType = exports.AnomalyScore = exports.AccountScope = void 0;
|
|
4
|
+
exports.ReservationAggregates = exports.GetReservationPurchaseRecommendationResponse = exports.ReservationPurchaseRecommendation = exports.ReservationPurchaseRecommendationSummary = exports.ReservationPurchaseRecommendationDetail = exports.InstanceDetails = exports.RedshiftInstanceDetails = exports.RDSInstanceDetails = exports.ESInstanceDetails = exports.ElastiCacheInstanceDetails = exports.EC2InstanceDetails = exports.ReservationPurchaseRecommendationMetadata = exports.TermInYears = exports.ServiceSpecification = exports.EC2Specification = exports.OfferingClass = exports.PaymentOption = exports.LookbackPeriodInDays = exports.GetReservationCoverageResponse = exports.CoverageByTime = exports.ReservationCoverageGroup = exports.Coverage = exports.CoverageNormalizedUnits = exports.CoverageHours = exports.CoverageCost = exports.GetDimensionValuesResponse = exports.Context = exports.GetCostForecastResponse = exports.ForecastResult = exports.Metric = exports.GetCostCategoriesResponse = exports.SortDefinition = exports.SortOrder = exports.GetCostAndUsageWithResourcesResponse = exports.RequestChangedException = exports.GetCostAndUsageResponse = exports.ResultByTime = exports.Group = exports.MetricValue = exports.DimensionValuesWithAttributes = exports.DateInterval = exports.GroupDefinition = exports.GroupDefinitionType = exports.Granularity = exports.DataUnavailableException = exports.BillExpirationException = exports.GetAnomalySubscriptionsResponse = exports.GetAnomalySubscriptionsRequest = exports.GetAnomalyMonitorsRequest = exports.InvalidNextTokenException = void 0;
|
|
5
|
+
exports.ProvideAnomalyFeedbackResponse = exports.ProvideAnomalyFeedbackRequest = exports.ListCostCategoryDefinitionsResponse = exports.CostCategoryReference = exports.ListCostCategoryDefinitionsRequest = exports.UnresolvableUsageUnitException = exports.GetUsageForecastResponse = exports.GetTagsResponse = exports.GetSavingsPlansUtilizationDetailsResponse = exports.SavingsPlansUtilizationDetail = exports.SavingsPlansDataType = exports.GetSavingsPlansUtilizationResponse = exports.SavingsPlansUtilizationAggregates = exports.SavingsPlansUtilizationByTime = exports.SavingsPlansUtilization = exports.SavingsPlansSavings = exports.SavingsPlansAmortizedCommitment = exports.GetSavingsPlansPurchaseRecommendationResponse = exports.SavingsPlansPurchaseRecommendation = exports.SavingsPlansPurchaseRecommendationSummary = exports.SavingsPlansPurchaseRecommendationDetail = exports.SavingsPlansDetails = exports.SavingsPlansPurchaseRecommendationMetadata = exports.SupportedSavingsPlansType = exports.GetSavingsPlansCoverageResponse = exports.SavingsPlansCoverage = exports.SavingsPlansCoverageData = exports.GetRightsizingRecommendationResponse = exports.RightsizingRecommendationSummary = exports.RightsizingRecommendation = exports.TerminateRecommendationDetail = exports.RightsizingType = exports.ModifyRecommendationDetail = exports.TargetInstance = exports.PlatformDifference = exports.FindingReasonCode = exports.CurrentInstance = exports.ResourceUtilization = exports.EC2ResourceUtilization = exports.NetworkResourceUtilization = exports.EBSResourceUtilization = exports.DiskResourceUtilization = exports.ResourceDetails = exports.EC2ResourceDetails = exports.RightsizingRecommendationMetadata = exports.RightsizingRecommendationConfiguration = exports.RecommendationTarget = exports.GetReservationUtilizationResponse = exports.UtilizationByTime = exports.ReservationUtilizationGroup = void 0;
|
|
6
|
+
exports.DescribeCostCategoryDefinitionResponse = exports.UpdateCostCategoryDefinitionRequest = exports.GetAnomalyMonitorsResponse = exports.CreateCostCategoryDefinitionRequest = exports.CostCategory = exports.CreateAnomalyMonitorRequest = exports.GetUsageForecastRequest = exports.GetTagsRequest = exports.GetSavingsPlansUtilizationRequest = exports.GetSavingsPlansUtilizationDetailsRequest = exports.GetSavingsPlansPurchaseRecommendationRequest = exports.GetSavingsPlansCoverageRequest = exports.GetRightsizingRecommendationRequest = exports.GetReservationUtilizationRequest = exports.GetReservationPurchaseRecommendationRequest = exports.GetReservationCoverageRequest = exports.GetDimensionValuesRequest = exports.GetCostForecastRequest = exports.GetCostCategoriesRequest = exports.GetCostAndUsageWithResourcesRequest = exports.GetCostAndUsageRequest = exports.CostCategoryRule = exports.AnomalyMonitor = exports.Expression = exports.UpdateCostCategoryDefinitionResponse = exports.UpdateAnomalySubscriptionResponse = exports.UpdateAnomalySubscriptionRequest = exports.UpdateAnomalyMonitorResponse = exports.UpdateAnomalyMonitorRequest = void 0;
|
|
7
|
+
const CostExplorerServiceException_1 = require("./CostExplorerServiceException");
|
|
7
8
|
var AccountScope;
|
|
8
9
|
(function (AccountScope) {
|
|
9
10
|
AccountScope["LINKED"] = "LINKED";
|
|
@@ -151,6 +152,20 @@ var CreateAnomalyMonitorResponse;
|
|
|
151
152
|
...obj,
|
|
152
153
|
});
|
|
153
154
|
})(CreateAnomalyMonitorResponse = exports.CreateAnomalyMonitorResponse || (exports.CreateAnomalyMonitorResponse = {}));
|
|
155
|
+
class LimitExceededException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "LimitExceededException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
this.name = "LimitExceededException";
|
|
163
|
+
this.$fault = "client";
|
|
164
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
exports.LimitExceededException = LimitExceededException;
|
|
154
169
|
var CreateAnomalySubscriptionRequest;
|
|
155
170
|
(function (CreateAnomalySubscriptionRequest) {
|
|
156
171
|
CreateAnomalySubscriptionRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -163,6 +178,20 @@ var CreateAnomalySubscriptionResponse;
|
|
|
163
178
|
...obj,
|
|
164
179
|
});
|
|
165
180
|
})(CreateAnomalySubscriptionResponse = exports.CreateAnomalySubscriptionResponse || (exports.CreateAnomalySubscriptionResponse = {}));
|
|
181
|
+
class UnknownMonitorException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "UnknownMonitorException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
this.name = "UnknownMonitorException";
|
|
189
|
+
this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(this, UnknownMonitorException.prototype);
|
|
191
|
+
this.Message = opts.Message;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
exports.UnknownMonitorException = UnknownMonitorException;
|
|
166
195
|
var CostCategoryInheritedValueDimensionName;
|
|
167
196
|
(function (CostCategoryInheritedValueDimensionName) {
|
|
168
197
|
CostCategoryInheritedValueDimensionName["LINKED_ACCOUNT_NAME"] = "LINKED_ACCOUNT_NAME";
|
|
@@ -211,6 +240,20 @@ var CreateCostCategoryDefinitionResponse;
|
|
|
211
240
|
...obj,
|
|
212
241
|
});
|
|
213
242
|
})(CreateCostCategoryDefinitionResponse = exports.CreateCostCategoryDefinitionResponse || (exports.CreateCostCategoryDefinitionResponse = {}));
|
|
243
|
+
class ServiceQuotaExceededException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
244
|
+
constructor(opts) {
|
|
245
|
+
super({
|
|
246
|
+
name: "ServiceQuotaExceededException",
|
|
247
|
+
$fault: "client",
|
|
248
|
+
...opts,
|
|
249
|
+
});
|
|
250
|
+
this.name = "ServiceQuotaExceededException";
|
|
251
|
+
this.$fault = "client";
|
|
252
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
253
|
+
this.Message = opts.Message;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
214
257
|
var DeleteAnomalyMonitorRequest;
|
|
215
258
|
(function (DeleteAnomalyMonitorRequest) {
|
|
216
259
|
DeleteAnomalyMonitorRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -235,6 +278,20 @@ var DeleteAnomalySubscriptionResponse;
|
|
|
235
278
|
...obj,
|
|
236
279
|
});
|
|
237
280
|
})(DeleteAnomalySubscriptionResponse = exports.DeleteAnomalySubscriptionResponse || (exports.DeleteAnomalySubscriptionResponse = {}));
|
|
281
|
+
class UnknownSubscriptionException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "UnknownSubscriptionException",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
this.name = "UnknownSubscriptionException";
|
|
289
|
+
this.$fault = "client";
|
|
290
|
+
Object.setPrototypeOf(this, UnknownSubscriptionException.prototype);
|
|
291
|
+
this.Message = opts.Message;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
exports.UnknownSubscriptionException = UnknownSubscriptionException;
|
|
238
295
|
var DeleteCostCategoryDefinitionRequest;
|
|
239
296
|
(function (DeleteCostCategoryDefinitionRequest) {
|
|
240
297
|
DeleteCostCategoryDefinitionRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -247,6 +304,20 @@ var DeleteCostCategoryDefinitionResponse;
|
|
|
247
304
|
...obj,
|
|
248
305
|
});
|
|
249
306
|
})(DeleteCostCategoryDefinitionResponse = exports.DeleteCostCategoryDefinitionResponse || (exports.DeleteCostCategoryDefinitionResponse = {}));
|
|
307
|
+
class ResourceNotFoundException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
308
|
+
constructor(opts) {
|
|
309
|
+
super({
|
|
310
|
+
name: "ResourceNotFoundException",
|
|
311
|
+
$fault: "client",
|
|
312
|
+
...opts,
|
|
313
|
+
});
|
|
314
|
+
this.name = "ResourceNotFoundException";
|
|
315
|
+
this.$fault = "client";
|
|
316
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
317
|
+
this.Message = opts.Message;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
250
321
|
var DescribeCostCategoryDefinitionRequest;
|
|
251
322
|
(function (DescribeCostCategoryDefinitionRequest) {
|
|
252
323
|
DescribeCostCategoryDefinitionRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -295,6 +366,20 @@ var GetAnomaliesResponse;
|
|
|
295
366
|
...obj,
|
|
296
367
|
});
|
|
297
368
|
})(GetAnomaliesResponse = exports.GetAnomaliesResponse || (exports.GetAnomaliesResponse = {}));
|
|
369
|
+
class InvalidNextTokenException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
370
|
+
constructor(opts) {
|
|
371
|
+
super({
|
|
372
|
+
name: "InvalidNextTokenException",
|
|
373
|
+
$fault: "client",
|
|
374
|
+
...opts,
|
|
375
|
+
});
|
|
376
|
+
this.name = "InvalidNextTokenException";
|
|
377
|
+
this.$fault = "client";
|
|
378
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
379
|
+
this.Message = opts.Message;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
298
383
|
var GetAnomalyMonitorsRequest;
|
|
299
384
|
(function (GetAnomalyMonitorsRequest) {
|
|
300
385
|
GetAnomalyMonitorsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -313,6 +398,34 @@ var GetAnomalySubscriptionsResponse;
|
|
|
313
398
|
...obj,
|
|
314
399
|
});
|
|
315
400
|
})(GetAnomalySubscriptionsResponse = exports.GetAnomalySubscriptionsResponse || (exports.GetAnomalySubscriptionsResponse = {}));
|
|
401
|
+
class BillExpirationException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
402
|
+
constructor(opts) {
|
|
403
|
+
super({
|
|
404
|
+
name: "BillExpirationException",
|
|
405
|
+
$fault: "client",
|
|
406
|
+
...opts,
|
|
407
|
+
});
|
|
408
|
+
this.name = "BillExpirationException";
|
|
409
|
+
this.$fault = "client";
|
|
410
|
+
Object.setPrototypeOf(this, BillExpirationException.prototype);
|
|
411
|
+
this.Message = opts.Message;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
exports.BillExpirationException = BillExpirationException;
|
|
415
|
+
class DataUnavailableException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
416
|
+
constructor(opts) {
|
|
417
|
+
super({
|
|
418
|
+
name: "DataUnavailableException",
|
|
419
|
+
$fault: "client",
|
|
420
|
+
...opts,
|
|
421
|
+
});
|
|
422
|
+
this.name = "DataUnavailableException";
|
|
423
|
+
this.$fault = "client";
|
|
424
|
+
Object.setPrototypeOf(this, DataUnavailableException.prototype);
|
|
425
|
+
this.Message = opts.Message;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
exports.DataUnavailableException = DataUnavailableException;
|
|
316
429
|
var Granularity;
|
|
317
430
|
(function (Granularity) {
|
|
318
431
|
Granularity["DAILY"] = "DAILY";
|
|
@@ -367,6 +480,20 @@ var GetCostAndUsageResponse;
|
|
|
367
480
|
...obj,
|
|
368
481
|
});
|
|
369
482
|
})(GetCostAndUsageResponse = exports.GetCostAndUsageResponse || (exports.GetCostAndUsageResponse = {}));
|
|
483
|
+
class RequestChangedException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
484
|
+
constructor(opts) {
|
|
485
|
+
super({
|
|
486
|
+
name: "RequestChangedException",
|
|
487
|
+
$fault: "client",
|
|
488
|
+
...opts,
|
|
489
|
+
});
|
|
490
|
+
this.name = "RequestChangedException";
|
|
491
|
+
this.$fault = "client";
|
|
492
|
+
Object.setPrototypeOf(this, RequestChangedException.prototype);
|
|
493
|
+
this.Message = opts.Message;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
exports.RequestChangedException = RequestChangedException;
|
|
370
497
|
var GetCostAndUsageWithResourcesResponse;
|
|
371
498
|
(function (GetCostAndUsageWithResourcesResponse) {
|
|
372
499
|
GetCostAndUsageWithResourcesResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -853,6 +980,20 @@ var GetUsageForecastResponse;
|
|
|
853
980
|
...obj,
|
|
854
981
|
});
|
|
855
982
|
})(GetUsageForecastResponse = exports.GetUsageForecastResponse || (exports.GetUsageForecastResponse = {}));
|
|
983
|
+
class UnresolvableUsageUnitException extends CostExplorerServiceException_1.CostExplorerServiceException {
|
|
984
|
+
constructor(opts) {
|
|
985
|
+
super({
|
|
986
|
+
name: "UnresolvableUsageUnitException",
|
|
987
|
+
$fault: "client",
|
|
988
|
+
...opts,
|
|
989
|
+
});
|
|
990
|
+
this.name = "UnresolvableUsageUnitException";
|
|
991
|
+
this.$fault = "client";
|
|
992
|
+
Object.setPrototypeOf(this, UnresolvableUsageUnitException.prototype);
|
|
993
|
+
this.Message = opts.Message;
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
exports.UnresolvableUsageUnitException = UnresolvableUsageUnitException;
|
|
856
997
|
var ListCostCategoryDefinitionsRequest;
|
|
857
998
|
(function (ListCostCategoryDefinitionsRequest) {
|
|
858
999
|
ListCostCategoryDefinitionsRequest.filterSensitiveLog = (obj) => ({
|