@aws-sdk/client-auto-scaling-plans 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateScalingPlanCommand.js +2 -2
- package/dist-cjs/commands/DeleteScalingPlanCommand.js +2 -2
- package/dist-cjs/commands/DescribeScalingPlanResourcesCommand.js +2 -2
- package/dist-cjs/commands/DescribeScalingPlansCommand.js +2 -2
- package/dist-cjs/commands/GetScalingPlanResourceForecastDataCommand.js +2 -2
- package/dist-cjs/commands/UpdateScalingPlanCommand.js +2 -2
- package/dist-cjs/models/models_0.js +101 -151
- package/dist-es/commands/CreateScalingPlanCommand.js +3 -3
- package/dist-es/commands/DeleteScalingPlanCommand.js +3 -3
- package/dist-es/commands/DescribeScalingPlanResourcesCommand.js +3 -3
- package/dist-es/commands/DescribeScalingPlansCommand.js +3 -3
- package/dist-es/commands/GetScalingPlanResourceForecastDataCommand.js +3 -3
- package/dist-es/commands/UpdateScalingPlanCommand.js +3 -3
- package/dist-es/models/models_0.js +25 -100
- package/dist-types/models/models_0.d.ts +100 -150
- package/dist-types/ts3.4/models/models_0.d.ts +50 -100
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
7
37
|
|
|
8
38
|
|
package/README.md
CHANGED
|
@@ -198,7 +198,7 @@ try {
|
|
|
198
198
|
const data = await client.send(command);
|
|
199
199
|
// process data.
|
|
200
200
|
} catch (error) {
|
|
201
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
201
|
+
const { requestId, cfId, extendedRequestId } = error.$$metadata;
|
|
202
202
|
console.log({ requestId, cfId, extendedRequestId });
|
|
203
203
|
/**
|
|
204
204
|
* The keys within exceptions are also parsed.
|
|
@@ -20,8 +20,8 @@ class CreateScalingPlanCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DeleteScalingPlanCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeScalingPlanResourcesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeScalingPlanResourcesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeScalingPlanResourcesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeScalingPlansCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeScalingPlansRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeScalingPlansResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetScalingPlanResourceForecastDataCommand extends smithy_client_1.Command
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetScalingPlanResourceForecastDataRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetScalingPlanResourceForecastDataResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class UpdateScalingPlanCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateScalingPlanResponseFilterSensitiveLog = exports.UpdateScalingPlanRequestFilterSensitiveLog = exports.GetScalingPlanResourceForecastDataResponseFilterSensitiveLog = exports.DatapointFilterSensitiveLog = exports.GetScalingPlanResourceForecastDataRequestFilterSensitiveLog = exports.DescribeScalingPlansResponseFilterSensitiveLog = exports.ScalingPlanFilterSensitiveLog = exports.DescribeScalingPlansRequestFilterSensitiveLog = exports.DescribeScalingPlanResourcesResponseFilterSensitiveLog = exports.ScalingPlanResourceFilterSensitiveLog = exports.ScalingPolicyFilterSensitiveLog = exports.DescribeScalingPlanResourcesRequestFilterSensitiveLog = exports.DeleteScalingPlanResponseFilterSensitiveLog = exports.DeleteScalingPlanRequestFilterSensitiveLog = exports.CreateScalingPlanResponseFilterSensitiveLog = exports.CreateScalingPlanRequestFilterSensitiveLog = exports.ScalingInstructionFilterSensitiveLog = exports.TargetTrackingConfigurationFilterSensitiveLog = exports.PredefinedScalingMetricSpecificationFilterSensitiveLog = exports.CustomizedScalingMetricSpecificationFilterSensitiveLog = exports.PredefinedLoadMetricSpecificationFilterSensitiveLog = exports.CustomizedLoadMetricSpecificationFilterSensitiveLog = exports.MetricDimensionFilterSensitiveLog = exports.ApplicationSourceFilterSensitiveLog = exports.TagFilterFilterSensitiveLog = exports.ForecastDataType = exports.ScalingPlanStatusCode = exports.InvalidNextTokenException = exports.ScalingStatusCode = exports.PolicyType = exports.ObjectNotFoundException = exports.ValidationException = exports.LimitExceededException = exports.InternalServiceException = exports.ScalingMetricType = exports.ServiceNamespace = exports.ScalingPolicyUpdateBehavior = exports.ScalableDimension = exports.PredictiveScalingMode = exports.PredictiveScalingMaxCapacityBehavior = exports.LoadMetricType = exports.MetricStatistic = exports.ConcurrentUpdateException = void 0;
|
|
4
4
|
const AutoScalingPlansServiceException_1 = require("./AutoScalingPlansServiceException");
|
|
5
5
|
class ConcurrentUpdateException extends AutoScalingPlansServiceException_1.AutoScalingPlansServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -16,24 +16,6 @@ class ConcurrentUpdateException extends AutoScalingPlansServiceException_1.AutoS
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
exports.ConcurrentUpdateException = ConcurrentUpdateException;
|
|
19
|
-
var TagFilter;
|
|
20
|
-
(function (TagFilter) {
|
|
21
|
-
TagFilter.filterSensitiveLog = (obj) => ({
|
|
22
|
-
...obj,
|
|
23
|
-
});
|
|
24
|
-
})(TagFilter = exports.TagFilter || (exports.TagFilter = {}));
|
|
25
|
-
var ApplicationSource;
|
|
26
|
-
(function (ApplicationSource) {
|
|
27
|
-
ApplicationSource.filterSensitiveLog = (obj) => ({
|
|
28
|
-
...obj,
|
|
29
|
-
});
|
|
30
|
-
})(ApplicationSource = exports.ApplicationSource || (exports.ApplicationSource = {}));
|
|
31
|
-
var MetricDimension;
|
|
32
|
-
(function (MetricDimension) {
|
|
33
|
-
MetricDimension.filterSensitiveLog = (obj) => ({
|
|
34
|
-
...obj,
|
|
35
|
-
});
|
|
36
|
-
})(MetricDimension = exports.MetricDimension || (exports.MetricDimension = {}));
|
|
37
19
|
var MetricStatistic;
|
|
38
20
|
(function (MetricStatistic) {
|
|
39
21
|
MetricStatistic["Average"] = "Average";
|
|
@@ -42,12 +24,6 @@ var MetricStatistic;
|
|
|
42
24
|
MetricStatistic["SampleCount"] = "SampleCount";
|
|
43
25
|
MetricStatistic["Sum"] = "Sum";
|
|
44
26
|
})(MetricStatistic = exports.MetricStatistic || (exports.MetricStatistic = {}));
|
|
45
|
-
var CustomizedLoadMetricSpecification;
|
|
46
|
-
(function (CustomizedLoadMetricSpecification) {
|
|
47
|
-
CustomizedLoadMetricSpecification.filterSensitiveLog = (obj) => ({
|
|
48
|
-
...obj,
|
|
49
|
-
});
|
|
50
|
-
})(CustomizedLoadMetricSpecification = exports.CustomizedLoadMetricSpecification || (exports.CustomizedLoadMetricSpecification = {}));
|
|
51
27
|
var LoadMetricType;
|
|
52
28
|
(function (LoadMetricType) {
|
|
53
29
|
LoadMetricType["ALBTargetGroupRequestCount"] = "ALBTargetGroupRequestCount";
|
|
@@ -55,12 +31,6 @@ var LoadMetricType;
|
|
|
55
31
|
LoadMetricType["ASGTotalNetworkIn"] = "ASGTotalNetworkIn";
|
|
56
32
|
LoadMetricType["ASGTotalNetworkOut"] = "ASGTotalNetworkOut";
|
|
57
33
|
})(LoadMetricType = exports.LoadMetricType || (exports.LoadMetricType = {}));
|
|
58
|
-
var PredefinedLoadMetricSpecification;
|
|
59
|
-
(function (PredefinedLoadMetricSpecification) {
|
|
60
|
-
PredefinedLoadMetricSpecification.filterSensitiveLog = (obj) => ({
|
|
61
|
-
...obj,
|
|
62
|
-
});
|
|
63
|
-
})(PredefinedLoadMetricSpecification = exports.PredefinedLoadMetricSpecification || (exports.PredefinedLoadMetricSpecification = {}));
|
|
64
34
|
var PredictiveScalingMaxCapacityBehavior;
|
|
65
35
|
(function (PredictiveScalingMaxCapacityBehavior) {
|
|
66
36
|
PredictiveScalingMaxCapacityBehavior["SetForecastCapacityToMaxCapacity"] = "SetForecastCapacityToMaxCapacity";
|
|
@@ -96,12 +66,6 @@ var ServiceNamespace;
|
|
|
96
66
|
ServiceNamespace["ECS"] = "ecs";
|
|
97
67
|
ServiceNamespace["RDS"] = "rds";
|
|
98
68
|
})(ServiceNamespace = exports.ServiceNamespace || (exports.ServiceNamespace = {}));
|
|
99
|
-
var CustomizedScalingMetricSpecification;
|
|
100
|
-
(function (CustomizedScalingMetricSpecification) {
|
|
101
|
-
CustomizedScalingMetricSpecification.filterSensitiveLog = (obj) => ({
|
|
102
|
-
...obj,
|
|
103
|
-
});
|
|
104
|
-
})(CustomizedScalingMetricSpecification = exports.CustomizedScalingMetricSpecification || (exports.CustomizedScalingMetricSpecification = {}));
|
|
105
69
|
var ScalingMetricType;
|
|
106
70
|
(function (ScalingMetricType) {
|
|
107
71
|
ScalingMetricType["ALBRequestCountPerTarget"] = "ALBRequestCountPerTarget";
|
|
@@ -118,36 +82,6 @@ var ScalingMetricType;
|
|
|
118
82
|
ScalingMetricType["RDSReaderAverageCPUUtilization"] = "RDSReaderAverageCPUUtilization";
|
|
119
83
|
ScalingMetricType["RDSReaderAverageDatabaseConnections"] = "RDSReaderAverageDatabaseConnections";
|
|
120
84
|
})(ScalingMetricType = exports.ScalingMetricType || (exports.ScalingMetricType = {}));
|
|
121
|
-
var PredefinedScalingMetricSpecification;
|
|
122
|
-
(function (PredefinedScalingMetricSpecification) {
|
|
123
|
-
PredefinedScalingMetricSpecification.filterSensitiveLog = (obj) => ({
|
|
124
|
-
...obj,
|
|
125
|
-
});
|
|
126
|
-
})(PredefinedScalingMetricSpecification = exports.PredefinedScalingMetricSpecification || (exports.PredefinedScalingMetricSpecification = {}));
|
|
127
|
-
var TargetTrackingConfiguration;
|
|
128
|
-
(function (TargetTrackingConfiguration) {
|
|
129
|
-
TargetTrackingConfiguration.filterSensitiveLog = (obj) => ({
|
|
130
|
-
...obj,
|
|
131
|
-
});
|
|
132
|
-
})(TargetTrackingConfiguration = exports.TargetTrackingConfiguration || (exports.TargetTrackingConfiguration = {}));
|
|
133
|
-
var ScalingInstruction;
|
|
134
|
-
(function (ScalingInstruction) {
|
|
135
|
-
ScalingInstruction.filterSensitiveLog = (obj) => ({
|
|
136
|
-
...obj,
|
|
137
|
-
});
|
|
138
|
-
})(ScalingInstruction = exports.ScalingInstruction || (exports.ScalingInstruction = {}));
|
|
139
|
-
var CreateScalingPlanRequest;
|
|
140
|
-
(function (CreateScalingPlanRequest) {
|
|
141
|
-
CreateScalingPlanRequest.filterSensitiveLog = (obj) => ({
|
|
142
|
-
...obj,
|
|
143
|
-
});
|
|
144
|
-
})(CreateScalingPlanRequest = exports.CreateScalingPlanRequest || (exports.CreateScalingPlanRequest = {}));
|
|
145
|
-
var CreateScalingPlanResponse;
|
|
146
|
-
(function (CreateScalingPlanResponse) {
|
|
147
|
-
CreateScalingPlanResponse.filterSensitiveLog = (obj) => ({
|
|
148
|
-
...obj,
|
|
149
|
-
});
|
|
150
|
-
})(CreateScalingPlanResponse = exports.CreateScalingPlanResponse || (exports.CreateScalingPlanResponse = {}));
|
|
151
85
|
class InternalServiceException extends AutoScalingPlansServiceException_1.AutoScalingPlansServiceException {
|
|
152
86
|
constructor(opts) {
|
|
153
87
|
super({
|
|
@@ -190,18 +124,6 @@ class ValidationException extends AutoScalingPlansServiceException_1.AutoScaling
|
|
|
190
124
|
}
|
|
191
125
|
}
|
|
192
126
|
exports.ValidationException = ValidationException;
|
|
193
|
-
var DeleteScalingPlanRequest;
|
|
194
|
-
(function (DeleteScalingPlanRequest) {
|
|
195
|
-
DeleteScalingPlanRequest.filterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
});
|
|
198
|
-
})(DeleteScalingPlanRequest = exports.DeleteScalingPlanRequest || (exports.DeleteScalingPlanRequest = {}));
|
|
199
|
-
var DeleteScalingPlanResponse;
|
|
200
|
-
(function (DeleteScalingPlanResponse) {
|
|
201
|
-
DeleteScalingPlanResponse.filterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
});
|
|
204
|
-
})(DeleteScalingPlanResponse = exports.DeleteScalingPlanResponse || (exports.DeleteScalingPlanResponse = {}));
|
|
205
127
|
class ObjectNotFoundException extends AutoScalingPlansServiceException_1.AutoScalingPlansServiceException {
|
|
206
128
|
constructor(opts) {
|
|
207
129
|
super({
|
|
@@ -216,40 +138,16 @@ class ObjectNotFoundException extends AutoScalingPlansServiceException_1.AutoSca
|
|
|
216
138
|
}
|
|
217
139
|
}
|
|
218
140
|
exports.ObjectNotFoundException = ObjectNotFoundException;
|
|
219
|
-
var DescribeScalingPlanResourcesRequest;
|
|
220
|
-
(function (DescribeScalingPlanResourcesRequest) {
|
|
221
|
-
DescribeScalingPlanResourcesRequest.filterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
})(DescribeScalingPlanResourcesRequest = exports.DescribeScalingPlanResourcesRequest || (exports.DescribeScalingPlanResourcesRequest = {}));
|
|
225
141
|
var PolicyType;
|
|
226
142
|
(function (PolicyType) {
|
|
227
143
|
PolicyType["TargetTrackingScaling"] = "TargetTrackingScaling";
|
|
228
144
|
})(PolicyType = exports.PolicyType || (exports.PolicyType = {}));
|
|
229
|
-
var ScalingPolicy;
|
|
230
|
-
(function (ScalingPolicy) {
|
|
231
|
-
ScalingPolicy.filterSensitiveLog = (obj) => ({
|
|
232
|
-
...obj,
|
|
233
|
-
});
|
|
234
|
-
})(ScalingPolicy = exports.ScalingPolicy || (exports.ScalingPolicy = {}));
|
|
235
145
|
var ScalingStatusCode;
|
|
236
146
|
(function (ScalingStatusCode) {
|
|
237
147
|
ScalingStatusCode["Active"] = "Active";
|
|
238
148
|
ScalingStatusCode["Inactive"] = "Inactive";
|
|
239
149
|
ScalingStatusCode["PartiallyActive"] = "PartiallyActive";
|
|
240
150
|
})(ScalingStatusCode = exports.ScalingStatusCode || (exports.ScalingStatusCode = {}));
|
|
241
|
-
var ScalingPlanResource;
|
|
242
|
-
(function (ScalingPlanResource) {
|
|
243
|
-
ScalingPlanResource.filterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
});
|
|
246
|
-
})(ScalingPlanResource = exports.ScalingPlanResource || (exports.ScalingPlanResource = {}));
|
|
247
|
-
var DescribeScalingPlanResourcesResponse;
|
|
248
|
-
(function (DescribeScalingPlanResourcesResponse) {
|
|
249
|
-
DescribeScalingPlanResourcesResponse.filterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
});
|
|
252
|
-
})(DescribeScalingPlanResourcesResponse = exports.DescribeScalingPlanResourcesResponse || (exports.DescribeScalingPlanResourcesResponse = {}));
|
|
253
151
|
class InvalidNextTokenException extends AutoScalingPlansServiceException_1.AutoScalingPlansServiceException {
|
|
254
152
|
constructor(opts) {
|
|
255
153
|
super({
|
|
@@ -264,12 +162,6 @@ class InvalidNextTokenException extends AutoScalingPlansServiceException_1.AutoS
|
|
|
264
162
|
}
|
|
265
163
|
}
|
|
266
164
|
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
267
|
-
var DescribeScalingPlansRequest;
|
|
268
|
-
(function (DescribeScalingPlansRequest) {
|
|
269
|
-
DescribeScalingPlansRequest.filterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
})(DescribeScalingPlansRequest = exports.DescribeScalingPlansRequest || (exports.DescribeScalingPlansRequest = {}));
|
|
273
165
|
var ScalingPlanStatusCode;
|
|
274
166
|
(function (ScalingPlanStatusCode) {
|
|
275
167
|
ScalingPlanStatusCode["Active"] = "Active";
|
|
@@ -281,18 +173,6 @@ var ScalingPlanStatusCode;
|
|
|
281
173
|
ScalingPlanStatusCode["UpdateFailed"] = "UpdateFailed";
|
|
282
174
|
ScalingPlanStatusCode["UpdateInProgress"] = "UpdateInProgress";
|
|
283
175
|
})(ScalingPlanStatusCode = exports.ScalingPlanStatusCode || (exports.ScalingPlanStatusCode = {}));
|
|
284
|
-
var ScalingPlan;
|
|
285
|
-
(function (ScalingPlan) {
|
|
286
|
-
ScalingPlan.filterSensitiveLog = (obj) => ({
|
|
287
|
-
...obj,
|
|
288
|
-
});
|
|
289
|
-
})(ScalingPlan = exports.ScalingPlan || (exports.ScalingPlan = {}));
|
|
290
|
-
var DescribeScalingPlansResponse;
|
|
291
|
-
(function (DescribeScalingPlansResponse) {
|
|
292
|
-
DescribeScalingPlansResponse.filterSensitiveLog = (obj) => ({
|
|
293
|
-
...obj,
|
|
294
|
-
});
|
|
295
|
-
})(DescribeScalingPlansResponse = exports.DescribeScalingPlansResponse || (exports.DescribeScalingPlansResponse = {}));
|
|
296
176
|
var ForecastDataType;
|
|
297
177
|
(function (ForecastDataType) {
|
|
298
178
|
ForecastDataType["CapacityForecast"] = "CapacityForecast";
|
|
@@ -300,33 +180,103 @@ var ForecastDataType;
|
|
|
300
180
|
ForecastDataType["ScheduledActionMaxCapacity"] = "ScheduledActionMaxCapacity";
|
|
301
181
|
ForecastDataType["ScheduledActionMinCapacity"] = "ScheduledActionMinCapacity";
|
|
302
182
|
})(ForecastDataType = exports.ForecastDataType || (exports.ForecastDataType = {}));
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
183
|
+
const TagFilterFilterSensitiveLog = (obj) => ({
|
|
184
|
+
...obj,
|
|
185
|
+
});
|
|
186
|
+
exports.TagFilterFilterSensitiveLog = TagFilterFilterSensitiveLog;
|
|
187
|
+
const ApplicationSourceFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
exports.ApplicationSourceFilterSensitiveLog = ApplicationSourceFilterSensitiveLog;
|
|
191
|
+
const MetricDimensionFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
});
|
|
194
|
+
exports.MetricDimensionFilterSensitiveLog = MetricDimensionFilterSensitiveLog;
|
|
195
|
+
const CustomizedLoadMetricSpecificationFilterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
});
|
|
198
|
+
exports.CustomizedLoadMetricSpecificationFilterSensitiveLog = CustomizedLoadMetricSpecificationFilterSensitiveLog;
|
|
199
|
+
const PredefinedLoadMetricSpecificationFilterSensitiveLog = (obj) => ({
|
|
200
|
+
...obj,
|
|
201
|
+
});
|
|
202
|
+
exports.PredefinedLoadMetricSpecificationFilterSensitiveLog = PredefinedLoadMetricSpecificationFilterSensitiveLog;
|
|
203
|
+
const CustomizedScalingMetricSpecificationFilterSensitiveLog = (obj) => ({
|
|
204
|
+
...obj,
|
|
205
|
+
});
|
|
206
|
+
exports.CustomizedScalingMetricSpecificationFilterSensitiveLog = CustomizedScalingMetricSpecificationFilterSensitiveLog;
|
|
207
|
+
const PredefinedScalingMetricSpecificationFilterSensitiveLog = (obj) => ({
|
|
208
|
+
...obj,
|
|
209
|
+
});
|
|
210
|
+
exports.PredefinedScalingMetricSpecificationFilterSensitiveLog = PredefinedScalingMetricSpecificationFilterSensitiveLog;
|
|
211
|
+
const TargetTrackingConfigurationFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
});
|
|
214
|
+
exports.TargetTrackingConfigurationFilterSensitiveLog = TargetTrackingConfigurationFilterSensitiveLog;
|
|
215
|
+
const ScalingInstructionFilterSensitiveLog = (obj) => ({
|
|
216
|
+
...obj,
|
|
217
|
+
});
|
|
218
|
+
exports.ScalingInstructionFilterSensitiveLog = ScalingInstructionFilterSensitiveLog;
|
|
219
|
+
const CreateScalingPlanRequestFilterSensitiveLog = (obj) => ({
|
|
220
|
+
...obj,
|
|
221
|
+
});
|
|
222
|
+
exports.CreateScalingPlanRequestFilterSensitiveLog = CreateScalingPlanRequestFilterSensitiveLog;
|
|
223
|
+
const CreateScalingPlanResponseFilterSensitiveLog = (obj) => ({
|
|
224
|
+
...obj,
|
|
225
|
+
});
|
|
226
|
+
exports.CreateScalingPlanResponseFilterSensitiveLog = CreateScalingPlanResponseFilterSensitiveLog;
|
|
227
|
+
const DeleteScalingPlanRequestFilterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
});
|
|
230
|
+
exports.DeleteScalingPlanRequestFilterSensitiveLog = DeleteScalingPlanRequestFilterSensitiveLog;
|
|
231
|
+
const DeleteScalingPlanResponseFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
exports.DeleteScalingPlanResponseFilterSensitiveLog = DeleteScalingPlanResponseFilterSensitiveLog;
|
|
235
|
+
const DescribeScalingPlanResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
236
|
+
...obj,
|
|
237
|
+
});
|
|
238
|
+
exports.DescribeScalingPlanResourcesRequestFilterSensitiveLog = DescribeScalingPlanResourcesRequestFilterSensitiveLog;
|
|
239
|
+
const ScalingPolicyFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
});
|
|
242
|
+
exports.ScalingPolicyFilterSensitiveLog = ScalingPolicyFilterSensitiveLog;
|
|
243
|
+
const ScalingPlanResourceFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
});
|
|
246
|
+
exports.ScalingPlanResourceFilterSensitiveLog = ScalingPlanResourceFilterSensitiveLog;
|
|
247
|
+
const DescribeScalingPlanResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
exports.DescribeScalingPlanResourcesResponseFilterSensitiveLog = DescribeScalingPlanResourcesResponseFilterSensitiveLog;
|
|
251
|
+
const DescribeScalingPlansRequestFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
});
|
|
254
|
+
exports.DescribeScalingPlansRequestFilterSensitiveLog = DescribeScalingPlansRequestFilterSensitiveLog;
|
|
255
|
+
const ScalingPlanFilterSensitiveLog = (obj) => ({
|
|
256
|
+
...obj,
|
|
257
|
+
});
|
|
258
|
+
exports.ScalingPlanFilterSensitiveLog = ScalingPlanFilterSensitiveLog;
|
|
259
|
+
const DescribeScalingPlansResponseFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
exports.DescribeScalingPlansResponseFilterSensitiveLog = DescribeScalingPlansResponseFilterSensitiveLog;
|
|
263
|
+
const GetScalingPlanResourceForecastDataRequestFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
exports.GetScalingPlanResourceForecastDataRequestFilterSensitiveLog = GetScalingPlanResourceForecastDataRequestFilterSensitiveLog;
|
|
267
|
+
const DatapointFilterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
exports.DatapointFilterSensitiveLog = DatapointFilterSensitiveLog;
|
|
271
|
+
const GetScalingPlanResourceForecastDataResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
});
|
|
274
|
+
exports.GetScalingPlanResourceForecastDataResponseFilterSensitiveLog = GetScalingPlanResourceForecastDataResponseFilterSensitiveLog;
|
|
275
|
+
const UpdateScalingPlanRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
});
|
|
278
|
+
exports.UpdateScalingPlanRequestFilterSensitiveLog = UpdateScalingPlanRequestFilterSensitiveLog;
|
|
279
|
+
const UpdateScalingPlanResponseFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
});
|
|
282
|
+
exports.UpdateScalingPlanResponseFilterSensitiveLog = UpdateScalingPlanResponseFilterSensitiveLog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateScalingPlanRequestFilterSensitiveLog, CreateScalingPlanResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateScalingPlanCommand, serializeAws_json1_1CreateScalingPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateScalingPlanCommand = (function (_super) {
|
|
7
7
|
__extends(CreateScalingPlanCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateScalingPlanCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteScalingPlanRequestFilterSensitiveLog, DeleteScalingPlanResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteScalingPlanCommand, serializeAws_json1_1DeleteScalingPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteScalingPlanCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteScalingPlanCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteScalingPlanCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeScalingPlanResourcesRequestFilterSensitiveLog, DescribeScalingPlanResourcesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeScalingPlanResourcesCommand, serializeAws_json1_1DescribeScalingPlanResourcesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeScalingPlanResourcesCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeScalingPlanResourcesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeScalingPlanResourcesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeScalingPlanResourcesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeScalingPlanResourcesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeScalingPlansRequestFilterSensitiveLog, DescribeScalingPlansResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeScalingPlansCommand, serializeAws_json1_1DescribeScalingPlansCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeScalingPlansCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeScalingPlansCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeScalingPlansCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeScalingPlansRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeScalingPlansResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetScalingPlanResourceForecastDataRequestFilterSensitiveLog, GetScalingPlanResourceForecastDataResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetScalingPlanResourceForecastDataCommand, serializeAws_json1_1GetScalingPlanResourceForecastDataCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetScalingPlanResourceForecastDataCommand = (function (_super) {
|
|
7
7
|
__extends(GetScalingPlanResourceForecastDataCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetScalingPlanResourceForecastDataCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetScalingPlanResourceForecastDataRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetScalingPlanResourceForecastDataResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateScalingPlanRequestFilterSensitiveLog, UpdateScalingPlanResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateScalingPlanCommand, serializeAws_json1_1UpdateScalingPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateScalingPlanCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateScalingPlanCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateScalingPlanCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateScalingPlanRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateScalingPlanResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|