@aws-sdk/client-cost-explorer 3.52.0 → 3.53.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/CHANGELOG.md +11 -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/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/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/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var CostExplorerServiceException = (function (_super) {
|
|
4
|
+
__extends(CostExplorerServiceException, _super);
|
|
5
|
+
function CostExplorerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CostExplorerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CostExplorerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CostExplorerServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
|
|
2
3
|
export var AccountScope;
|
|
3
4
|
(function (AccountScope) {
|
|
4
5
|
AccountScope["LINKED"] = "LINKED";
|
|
@@ -124,6 +125,19 @@ export var CreateAnomalyMonitorResponse;
|
|
|
124
125
|
(function (CreateAnomalyMonitorResponse) {
|
|
125
126
|
CreateAnomalyMonitorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
127
|
})(CreateAnomalyMonitorResponse || (CreateAnomalyMonitorResponse = {}));
|
|
128
|
+
var LimitExceededException = (function (_super) {
|
|
129
|
+
__extends(LimitExceededException, _super);
|
|
130
|
+
function LimitExceededException(opts) {
|
|
131
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
132
|
+
_this.name = "LimitExceededException";
|
|
133
|
+
_this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
135
|
+
_this.Message = opts.Message;
|
|
136
|
+
return _this;
|
|
137
|
+
}
|
|
138
|
+
return LimitExceededException;
|
|
139
|
+
}(__BaseException));
|
|
140
|
+
export { LimitExceededException };
|
|
127
141
|
export var CreateAnomalySubscriptionRequest;
|
|
128
142
|
(function (CreateAnomalySubscriptionRequest) {
|
|
129
143
|
CreateAnomalySubscriptionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -132,6 +146,19 @@ export var CreateAnomalySubscriptionResponse;
|
|
|
132
146
|
(function (CreateAnomalySubscriptionResponse) {
|
|
133
147
|
CreateAnomalySubscriptionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
148
|
})(CreateAnomalySubscriptionResponse || (CreateAnomalySubscriptionResponse = {}));
|
|
149
|
+
var UnknownMonitorException = (function (_super) {
|
|
150
|
+
__extends(UnknownMonitorException, _super);
|
|
151
|
+
function UnknownMonitorException(opts) {
|
|
152
|
+
var _this = _super.call(this, __assign({ name: "UnknownMonitorException", $fault: "client" }, opts)) || this;
|
|
153
|
+
_this.name = "UnknownMonitorException";
|
|
154
|
+
_this.$fault = "client";
|
|
155
|
+
Object.setPrototypeOf(_this, UnknownMonitorException.prototype);
|
|
156
|
+
_this.Message = opts.Message;
|
|
157
|
+
return _this;
|
|
158
|
+
}
|
|
159
|
+
return UnknownMonitorException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { UnknownMonitorException };
|
|
135
162
|
export var CostCategoryInheritedValueDimensionName;
|
|
136
163
|
(function (CostCategoryInheritedValueDimensionName) {
|
|
137
164
|
CostCategoryInheritedValueDimensionName["LINKED_ACCOUNT_NAME"] = "LINKED_ACCOUNT_NAME";
|
|
@@ -172,6 +199,19 @@ export var CreateCostCategoryDefinitionResponse;
|
|
|
172
199
|
(function (CreateCostCategoryDefinitionResponse) {
|
|
173
200
|
CreateCostCategoryDefinitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
201
|
})(CreateCostCategoryDefinitionResponse || (CreateCostCategoryDefinitionResponse = {}));
|
|
202
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
203
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
204
|
+
function ServiceQuotaExceededException(opts) {
|
|
205
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
206
|
+
_this.name = "ServiceQuotaExceededException";
|
|
207
|
+
_this.$fault = "client";
|
|
208
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
209
|
+
_this.Message = opts.Message;
|
|
210
|
+
return _this;
|
|
211
|
+
}
|
|
212
|
+
return ServiceQuotaExceededException;
|
|
213
|
+
}(__BaseException));
|
|
214
|
+
export { ServiceQuotaExceededException };
|
|
175
215
|
export var DeleteAnomalyMonitorRequest;
|
|
176
216
|
(function (DeleteAnomalyMonitorRequest) {
|
|
177
217
|
DeleteAnomalyMonitorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -188,6 +228,19 @@ export var DeleteAnomalySubscriptionResponse;
|
|
|
188
228
|
(function (DeleteAnomalySubscriptionResponse) {
|
|
189
229
|
DeleteAnomalySubscriptionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
230
|
})(DeleteAnomalySubscriptionResponse || (DeleteAnomalySubscriptionResponse = {}));
|
|
231
|
+
var UnknownSubscriptionException = (function (_super) {
|
|
232
|
+
__extends(UnknownSubscriptionException, _super);
|
|
233
|
+
function UnknownSubscriptionException(opts) {
|
|
234
|
+
var _this = _super.call(this, __assign({ name: "UnknownSubscriptionException", $fault: "client" }, opts)) || this;
|
|
235
|
+
_this.name = "UnknownSubscriptionException";
|
|
236
|
+
_this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(_this, UnknownSubscriptionException.prototype);
|
|
238
|
+
_this.Message = opts.Message;
|
|
239
|
+
return _this;
|
|
240
|
+
}
|
|
241
|
+
return UnknownSubscriptionException;
|
|
242
|
+
}(__BaseException));
|
|
243
|
+
export { UnknownSubscriptionException };
|
|
191
244
|
export var DeleteCostCategoryDefinitionRequest;
|
|
192
245
|
(function (DeleteCostCategoryDefinitionRequest) {
|
|
193
246
|
DeleteCostCategoryDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -196,6 +249,19 @@ export var DeleteCostCategoryDefinitionResponse;
|
|
|
196
249
|
(function (DeleteCostCategoryDefinitionResponse) {
|
|
197
250
|
DeleteCostCategoryDefinitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
251
|
})(DeleteCostCategoryDefinitionResponse || (DeleteCostCategoryDefinitionResponse = {}));
|
|
252
|
+
var ResourceNotFoundException = (function (_super) {
|
|
253
|
+
__extends(ResourceNotFoundException, _super);
|
|
254
|
+
function ResourceNotFoundException(opts) {
|
|
255
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
256
|
+
_this.name = "ResourceNotFoundException";
|
|
257
|
+
_this.$fault = "client";
|
|
258
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
259
|
+
_this.Message = opts.Message;
|
|
260
|
+
return _this;
|
|
261
|
+
}
|
|
262
|
+
return ResourceNotFoundException;
|
|
263
|
+
}(__BaseException));
|
|
264
|
+
export { ResourceNotFoundException };
|
|
199
265
|
export var DescribeCostCategoryDefinitionRequest;
|
|
200
266
|
(function (DescribeCostCategoryDefinitionRequest) {
|
|
201
267
|
DescribeCostCategoryDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -234,6 +300,19 @@ export var GetAnomaliesResponse;
|
|
|
234
300
|
(function (GetAnomaliesResponse) {
|
|
235
301
|
GetAnomaliesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
302
|
})(GetAnomaliesResponse || (GetAnomaliesResponse = {}));
|
|
303
|
+
var InvalidNextTokenException = (function (_super) {
|
|
304
|
+
__extends(InvalidNextTokenException, _super);
|
|
305
|
+
function InvalidNextTokenException(opts) {
|
|
306
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
307
|
+
_this.name = "InvalidNextTokenException";
|
|
308
|
+
_this.$fault = "client";
|
|
309
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
310
|
+
_this.Message = opts.Message;
|
|
311
|
+
return _this;
|
|
312
|
+
}
|
|
313
|
+
return InvalidNextTokenException;
|
|
314
|
+
}(__BaseException));
|
|
315
|
+
export { InvalidNextTokenException };
|
|
237
316
|
export var GetAnomalyMonitorsRequest;
|
|
238
317
|
(function (GetAnomalyMonitorsRequest) {
|
|
239
318
|
GetAnomalyMonitorsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -246,6 +325,32 @@ export var GetAnomalySubscriptionsResponse;
|
|
|
246
325
|
(function (GetAnomalySubscriptionsResponse) {
|
|
247
326
|
GetAnomalySubscriptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
327
|
})(GetAnomalySubscriptionsResponse || (GetAnomalySubscriptionsResponse = {}));
|
|
328
|
+
var BillExpirationException = (function (_super) {
|
|
329
|
+
__extends(BillExpirationException, _super);
|
|
330
|
+
function BillExpirationException(opts) {
|
|
331
|
+
var _this = _super.call(this, __assign({ name: "BillExpirationException", $fault: "client" }, opts)) || this;
|
|
332
|
+
_this.name = "BillExpirationException";
|
|
333
|
+
_this.$fault = "client";
|
|
334
|
+
Object.setPrototypeOf(_this, BillExpirationException.prototype);
|
|
335
|
+
_this.Message = opts.Message;
|
|
336
|
+
return _this;
|
|
337
|
+
}
|
|
338
|
+
return BillExpirationException;
|
|
339
|
+
}(__BaseException));
|
|
340
|
+
export { BillExpirationException };
|
|
341
|
+
var DataUnavailableException = (function (_super) {
|
|
342
|
+
__extends(DataUnavailableException, _super);
|
|
343
|
+
function DataUnavailableException(opts) {
|
|
344
|
+
var _this = _super.call(this, __assign({ name: "DataUnavailableException", $fault: "client" }, opts)) || this;
|
|
345
|
+
_this.name = "DataUnavailableException";
|
|
346
|
+
_this.$fault = "client";
|
|
347
|
+
Object.setPrototypeOf(_this, DataUnavailableException.prototype);
|
|
348
|
+
_this.Message = opts.Message;
|
|
349
|
+
return _this;
|
|
350
|
+
}
|
|
351
|
+
return DataUnavailableException;
|
|
352
|
+
}(__BaseException));
|
|
353
|
+
export { DataUnavailableException };
|
|
249
354
|
export var Granularity;
|
|
250
355
|
(function (Granularity) {
|
|
251
356
|
Granularity["DAILY"] = "DAILY";
|
|
@@ -286,6 +391,19 @@ export var GetCostAndUsageResponse;
|
|
|
286
391
|
(function (GetCostAndUsageResponse) {
|
|
287
392
|
GetCostAndUsageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
393
|
})(GetCostAndUsageResponse || (GetCostAndUsageResponse = {}));
|
|
394
|
+
var RequestChangedException = (function (_super) {
|
|
395
|
+
__extends(RequestChangedException, _super);
|
|
396
|
+
function RequestChangedException(opts) {
|
|
397
|
+
var _this = _super.call(this, __assign({ name: "RequestChangedException", $fault: "client" }, opts)) || this;
|
|
398
|
+
_this.name = "RequestChangedException";
|
|
399
|
+
_this.$fault = "client";
|
|
400
|
+
Object.setPrototypeOf(_this, RequestChangedException.prototype);
|
|
401
|
+
_this.Message = opts.Message;
|
|
402
|
+
return _this;
|
|
403
|
+
}
|
|
404
|
+
return RequestChangedException;
|
|
405
|
+
}(__BaseException));
|
|
406
|
+
export { RequestChangedException };
|
|
289
407
|
export var GetCostAndUsageWithResourcesResponse;
|
|
290
408
|
(function (GetCostAndUsageWithResourcesResponse) {
|
|
291
409
|
GetCostAndUsageWithResourcesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -642,6 +760,19 @@ export var GetUsageForecastResponse;
|
|
|
642
760
|
(function (GetUsageForecastResponse) {
|
|
643
761
|
GetUsageForecastResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
644
762
|
})(GetUsageForecastResponse || (GetUsageForecastResponse = {}));
|
|
763
|
+
var UnresolvableUsageUnitException = (function (_super) {
|
|
764
|
+
__extends(UnresolvableUsageUnitException, _super);
|
|
765
|
+
function UnresolvableUsageUnitException(opts) {
|
|
766
|
+
var _this = _super.call(this, __assign({ name: "UnresolvableUsageUnitException", $fault: "client" }, opts)) || this;
|
|
767
|
+
_this.name = "UnresolvableUsageUnitException";
|
|
768
|
+
_this.$fault = "client";
|
|
769
|
+
Object.setPrototypeOf(_this, UnresolvableUsageUnitException.prototype);
|
|
770
|
+
_this.Message = opts.Message;
|
|
771
|
+
return _this;
|
|
772
|
+
}
|
|
773
|
+
return UnresolvableUsageUnitException;
|
|
774
|
+
}(__BaseException));
|
|
775
|
+
export { UnresolvableUsageUnitException };
|
|
645
776
|
export var ListCostCategoryDefinitionsRequest;
|
|
646
777
|
(function (ListCostCategoryDefinitionsRequest) {
|
|
647
778
|
ListCostCategoryDefinitionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|