@aws-sdk/client-application-auto-scaling 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/ApplicationAutoScalingServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +100 -1
- package/dist-cjs/protocols/Aws_json1_1.js +121 -406
- package/dist-es/index.js +1 -0
- package/dist-es/models/ApplicationAutoScalingServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_json1_1.js +246 -433
- package/dist-types/ApplicationAutoScalingClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ApplicationAutoScalingServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- 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/ApplicationAutoScalingClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ApplicationAutoScalingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- 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
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 ApplicationAutoScalingServiceException = (function (_super) {
|
|
4
|
+
__extends(ApplicationAutoScalingServiceException, _super);
|
|
5
|
+
function ApplicationAutoScalingServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ApplicationAutoScalingServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ApplicationAutoScalingServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ApplicationAutoScalingServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ApplicationAutoScalingServiceException as __BaseException } from "./ApplicationAutoScalingServiceException";
|
|
2
3
|
export var AdjustmentType;
|
|
3
4
|
(function (AdjustmentType) {
|
|
4
5
|
AdjustmentType["ChangeInCapacity"] = "ChangeInCapacity";
|
|
@@ -9,6 +10,19 @@ export var Alarm;
|
|
|
9
10
|
(function (Alarm) {
|
|
10
11
|
Alarm.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
12
|
})(Alarm || (Alarm = {}));
|
|
13
|
+
var ConcurrentUpdateException = (function (_super) {
|
|
14
|
+
__extends(ConcurrentUpdateException, _super);
|
|
15
|
+
function ConcurrentUpdateException(opts) {
|
|
16
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentUpdateException", $fault: "server" }, opts)) || this;
|
|
17
|
+
_this.name = "ConcurrentUpdateException";
|
|
18
|
+
_this.$fault = "server";
|
|
19
|
+
Object.setPrototypeOf(_this, ConcurrentUpdateException.prototype);
|
|
20
|
+
_this.Message = opts.Message;
|
|
21
|
+
return _this;
|
|
22
|
+
}
|
|
23
|
+
return ConcurrentUpdateException;
|
|
24
|
+
}(__BaseException));
|
|
25
|
+
export { ConcurrentUpdateException };
|
|
12
26
|
export var ScalableDimension;
|
|
13
27
|
(function (ScalableDimension) {
|
|
14
28
|
ScalableDimension["AppstreamFleetDesiredCapacity"] = "appstream:fleet:DesiredCapacity";
|
|
@@ -57,6 +71,45 @@ export var DeleteScalingPolicyResponse;
|
|
|
57
71
|
(function (DeleteScalingPolicyResponse) {
|
|
58
72
|
DeleteScalingPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
59
73
|
})(DeleteScalingPolicyResponse || (DeleteScalingPolicyResponse = {}));
|
|
74
|
+
var InternalServiceException = (function (_super) {
|
|
75
|
+
__extends(InternalServiceException, _super);
|
|
76
|
+
function InternalServiceException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
|
|
78
|
+
_this.name = "InternalServiceException";
|
|
79
|
+
_this.$fault = "server";
|
|
80
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
81
|
+
_this.Message = opts.Message;
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
return InternalServiceException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { InternalServiceException };
|
|
87
|
+
var ObjectNotFoundException = (function (_super) {
|
|
88
|
+
__extends(ObjectNotFoundException, _super);
|
|
89
|
+
function ObjectNotFoundException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "ObjectNotFoundException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "ObjectNotFoundException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, ObjectNotFoundException.prototype);
|
|
94
|
+
_this.Message = opts.Message;
|
|
95
|
+
return _this;
|
|
96
|
+
}
|
|
97
|
+
return ObjectNotFoundException;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { ObjectNotFoundException };
|
|
100
|
+
var ValidationException = (function (_super) {
|
|
101
|
+
__extends(ValidationException, _super);
|
|
102
|
+
function ValidationException(opts) {
|
|
103
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
104
|
+
_this.name = "ValidationException";
|
|
105
|
+
_this.$fault = "client";
|
|
106
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
107
|
+
_this.Message = opts.Message;
|
|
108
|
+
return _this;
|
|
109
|
+
}
|
|
110
|
+
return ValidationException;
|
|
111
|
+
}(__BaseException));
|
|
112
|
+
export { ValidationException };
|
|
60
113
|
export var DeleteScheduledActionRequest;
|
|
61
114
|
(function (DeleteScheduledActionRequest) {
|
|
62
115
|
DeleteScheduledActionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -89,6 +142,19 @@ export var DescribeScalableTargetsResponse;
|
|
|
89
142
|
(function (DescribeScalableTargetsResponse) {
|
|
90
143
|
DescribeScalableTargetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
91
144
|
})(DescribeScalableTargetsResponse || (DescribeScalableTargetsResponse = {}));
|
|
145
|
+
var InvalidNextTokenException = (function (_super) {
|
|
146
|
+
__extends(InvalidNextTokenException, _super);
|
|
147
|
+
function InvalidNextTokenException(opts) {
|
|
148
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
149
|
+
_this.name = "InvalidNextTokenException";
|
|
150
|
+
_this.$fault = "client";
|
|
151
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
152
|
+
_this.Message = opts.Message;
|
|
153
|
+
return _this;
|
|
154
|
+
}
|
|
155
|
+
return InvalidNextTokenException;
|
|
156
|
+
}(__BaseException));
|
|
157
|
+
export { InvalidNextTokenException };
|
|
92
158
|
export var DescribeScalingActivitiesRequest;
|
|
93
159
|
(function (DescribeScalingActivitiesRequest) {
|
|
94
160
|
DescribeScalingActivitiesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -189,6 +255,19 @@ export var DescribeScalingPoliciesResponse;
|
|
|
189
255
|
(function (DescribeScalingPoliciesResponse) {
|
|
190
256
|
DescribeScalingPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
257
|
})(DescribeScalingPoliciesResponse || (DescribeScalingPoliciesResponse = {}));
|
|
258
|
+
var FailedResourceAccessException = (function (_super) {
|
|
259
|
+
__extends(FailedResourceAccessException, _super);
|
|
260
|
+
function FailedResourceAccessException(opts) {
|
|
261
|
+
var _this = _super.call(this, __assign({ name: "FailedResourceAccessException", $fault: "client" }, opts)) || this;
|
|
262
|
+
_this.name = "FailedResourceAccessException";
|
|
263
|
+
_this.$fault = "client";
|
|
264
|
+
Object.setPrototypeOf(_this, FailedResourceAccessException.prototype);
|
|
265
|
+
_this.Message = opts.Message;
|
|
266
|
+
return _this;
|
|
267
|
+
}
|
|
268
|
+
return FailedResourceAccessException;
|
|
269
|
+
}(__BaseException));
|
|
270
|
+
export { FailedResourceAccessException };
|
|
192
271
|
export var DescribeScheduledActionsRequest;
|
|
193
272
|
(function (DescribeScheduledActionsRequest) {
|
|
194
273
|
DescribeScheduledActionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -205,6 +284,19 @@ export var DescribeScheduledActionsResponse;
|
|
|
205
284
|
(function (DescribeScheduledActionsResponse) {
|
|
206
285
|
DescribeScheduledActionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
286
|
})(DescribeScheduledActionsResponse || (DescribeScheduledActionsResponse = {}));
|
|
287
|
+
var LimitExceededException = (function (_super) {
|
|
288
|
+
__extends(LimitExceededException, _super);
|
|
289
|
+
function LimitExceededException(opts) {
|
|
290
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
291
|
+
_this.name = "LimitExceededException";
|
|
292
|
+
_this.$fault = "client";
|
|
293
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
294
|
+
_this.Message = opts.Message;
|
|
295
|
+
return _this;
|
|
296
|
+
}
|
|
297
|
+
return LimitExceededException;
|
|
298
|
+
}(__BaseException));
|
|
299
|
+
export { LimitExceededException };
|
|
208
300
|
export var PutScalingPolicyRequest;
|
|
209
301
|
(function (PutScalingPolicyRequest) {
|
|
210
302
|
PutScalingPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|