@aws-sdk/client-auto-scaling-plans 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AutoScalingPlansServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_json1_1.js +84 -231
- package/dist-es/index.js +1 -0
- package/dist-es/models/AutoScalingPlansServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_1.js +155 -244
- package/dist-types/AutoScalingPlansClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AutoScalingPlansServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- 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/AutoScalingPlansClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AutoScalingPlansServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 +33 -33
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
|
|
3
|
+
var ConcurrentUpdateException = (function (_super) {
|
|
4
|
+
__extends(ConcurrentUpdateException, _super);
|
|
5
|
+
function ConcurrentUpdateException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentUpdateException", $fault: "server" }, opts)) || this;
|
|
7
|
+
_this.name = "ConcurrentUpdateException";
|
|
8
|
+
_this.$fault = "server";
|
|
9
|
+
Object.setPrototypeOf(_this, ConcurrentUpdateException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return ConcurrentUpdateException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { ConcurrentUpdateException };
|
|
2
16
|
export var TagFilter;
|
|
3
17
|
(function (TagFilter) {
|
|
4
18
|
TagFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -109,6 +123,45 @@ export var CreateScalingPlanResponse;
|
|
|
109
123
|
(function (CreateScalingPlanResponse) {
|
|
110
124
|
CreateScalingPlanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
125
|
})(CreateScalingPlanResponse || (CreateScalingPlanResponse = {}));
|
|
126
|
+
var InternalServiceException = (function (_super) {
|
|
127
|
+
__extends(InternalServiceException, _super);
|
|
128
|
+
function InternalServiceException(opts) {
|
|
129
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
|
|
130
|
+
_this.name = "InternalServiceException";
|
|
131
|
+
_this.$fault = "server";
|
|
132
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
133
|
+
_this.Message = opts.Message;
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return InternalServiceException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { InternalServiceException };
|
|
139
|
+
var LimitExceededException = (function (_super) {
|
|
140
|
+
__extends(LimitExceededException, _super);
|
|
141
|
+
function LimitExceededException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
143
|
+
_this.name = "LimitExceededException";
|
|
144
|
+
_this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
146
|
+
_this.Message = opts.Message;
|
|
147
|
+
return _this;
|
|
148
|
+
}
|
|
149
|
+
return LimitExceededException;
|
|
150
|
+
}(__BaseException));
|
|
151
|
+
export { LimitExceededException };
|
|
152
|
+
var ValidationException = (function (_super) {
|
|
153
|
+
__extends(ValidationException, _super);
|
|
154
|
+
function ValidationException(opts) {
|
|
155
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
156
|
+
_this.name = "ValidationException";
|
|
157
|
+
_this.$fault = "client";
|
|
158
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
159
|
+
_this.Message = opts.Message;
|
|
160
|
+
return _this;
|
|
161
|
+
}
|
|
162
|
+
return ValidationException;
|
|
163
|
+
}(__BaseException));
|
|
164
|
+
export { ValidationException };
|
|
112
165
|
export var DeleteScalingPlanRequest;
|
|
113
166
|
(function (DeleteScalingPlanRequest) {
|
|
114
167
|
DeleteScalingPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -117,6 +170,19 @@ export var DeleteScalingPlanResponse;
|
|
|
117
170
|
(function (DeleteScalingPlanResponse) {
|
|
118
171
|
DeleteScalingPlanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
172
|
})(DeleteScalingPlanResponse || (DeleteScalingPlanResponse = {}));
|
|
173
|
+
var ObjectNotFoundException = (function (_super) {
|
|
174
|
+
__extends(ObjectNotFoundException, _super);
|
|
175
|
+
function ObjectNotFoundException(opts) {
|
|
176
|
+
var _this = _super.call(this, __assign({ name: "ObjectNotFoundException", $fault: "client" }, opts)) || this;
|
|
177
|
+
_this.name = "ObjectNotFoundException";
|
|
178
|
+
_this.$fault = "client";
|
|
179
|
+
Object.setPrototypeOf(_this, ObjectNotFoundException.prototype);
|
|
180
|
+
_this.Message = opts.Message;
|
|
181
|
+
return _this;
|
|
182
|
+
}
|
|
183
|
+
return ObjectNotFoundException;
|
|
184
|
+
}(__BaseException));
|
|
185
|
+
export { ObjectNotFoundException };
|
|
120
186
|
export var DescribeScalingPlanResourcesRequest;
|
|
121
187
|
(function (DescribeScalingPlanResourcesRequest) {
|
|
122
188
|
DescribeScalingPlanResourcesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -143,6 +209,19 @@ export var DescribeScalingPlanResourcesResponse;
|
|
|
143
209
|
(function (DescribeScalingPlanResourcesResponse) {
|
|
144
210
|
DescribeScalingPlanResourcesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
211
|
})(DescribeScalingPlanResourcesResponse || (DescribeScalingPlanResourcesResponse = {}));
|
|
212
|
+
var InvalidNextTokenException = (function (_super) {
|
|
213
|
+
__extends(InvalidNextTokenException, _super);
|
|
214
|
+
function InvalidNextTokenException(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "InvalidNextTokenException";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
219
|
+
_this.Message = opts.Message;
|
|
220
|
+
return _this;
|
|
221
|
+
}
|
|
222
|
+
return InvalidNextTokenException;
|
|
223
|
+
}(__BaseException));
|
|
224
|
+
export { InvalidNextTokenException };
|
|
146
225
|
export var DescribeScalingPlansRequest;
|
|
147
226
|
(function (DescribeScalingPlansRequest) {
|
|
148
227
|
DescribeScalingPlansRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|