@aws-sdk/client-savingsplans 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/SavingsplansServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +54 -1
- package/dist-cjs/protocols/Aws_restJson1.js +104 -282
- package/dist-es/index.js +1 -0
- package/dist-es/models/SavingsplansServiceException.js +12 -0
- package/dist-es/models/models_0.js +50 -1
- package/dist-es/protocols/Aws_restJson1.js +195 -323
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SavingsplansServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -17
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SavingsplansServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -17
- package/package.json +25 -25
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SavingsplansServiceException as __BaseException } from "./SavingsplansServiceException";
|
|
2
3
|
export var CreateSavingsPlanRequest;
|
|
3
4
|
(function (CreateSavingsPlanRequest) {
|
|
4
5
|
CreateSavingsPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +8,54 @@ export var CreateSavingsPlanResponse;
|
|
|
7
8
|
(function (CreateSavingsPlanResponse) {
|
|
8
9
|
CreateSavingsPlanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
10
|
})(CreateSavingsPlanResponse || (CreateSavingsPlanResponse = {}));
|
|
11
|
+
var InternalServerException = (function (_super) {
|
|
12
|
+
__extends(InternalServerException, _super);
|
|
13
|
+
function InternalServerException(opts) {
|
|
14
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
15
|
+
_this.name = "InternalServerException";
|
|
16
|
+
_this.$fault = "server";
|
|
17
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
return InternalServerException;
|
|
21
|
+
}(__BaseException));
|
|
22
|
+
export { InternalServerException };
|
|
23
|
+
var ResourceNotFoundException = (function (_super) {
|
|
24
|
+
__extends(ResourceNotFoundException, _super);
|
|
25
|
+
function ResourceNotFoundException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
27
|
+
_this.name = "ResourceNotFoundException";
|
|
28
|
+
_this.$fault = "client";
|
|
29
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
30
|
+
return _this;
|
|
31
|
+
}
|
|
32
|
+
return ResourceNotFoundException;
|
|
33
|
+
}(__BaseException));
|
|
34
|
+
export { ResourceNotFoundException };
|
|
35
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
36
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
37
|
+
function ServiceQuotaExceededException(opts) {
|
|
38
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
39
|
+
_this.name = "ServiceQuotaExceededException";
|
|
40
|
+
_this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
42
|
+
return _this;
|
|
43
|
+
}
|
|
44
|
+
return ServiceQuotaExceededException;
|
|
45
|
+
}(__BaseException));
|
|
46
|
+
export { ServiceQuotaExceededException };
|
|
47
|
+
var ValidationException = (function (_super) {
|
|
48
|
+
__extends(ValidationException, _super);
|
|
49
|
+
function ValidationException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "ValidationException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
return ValidationException;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { ValidationException };
|
|
10
59
|
export var DeleteQueuedSavingsPlanRequest;
|
|
11
60
|
(function (DeleteQueuedSavingsPlanRequest) {
|
|
12
61
|
DeleteQueuedSavingsPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|