@aws-sdk/client-application-auto-scaling 3.183.0 → 3.185.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/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ApplicationAutoScaling.js +49 -42
- package/dist-es/ApplicationAutoScalingClient.js +28 -22
- package/dist-es/commands/DeleteScalingPolicyCommand.js +28 -21
- package/dist-es/commands/DeleteScheduledActionCommand.js +28 -21
- package/dist-es/commands/DeregisterScalableTargetCommand.js +28 -21
- package/dist-es/commands/DescribeScalableTargetsCommand.js +28 -21
- package/dist-es/commands/DescribeScalingActivitiesCommand.js +28 -21
- package/dist-es/commands/DescribeScalingPoliciesCommand.js +28 -21
- package/dist-es/commands/DescribeScheduledActionsCommand.js +28 -21
- package/dist-es/commands/PutScalingPolicyCommand.js +28 -21
- package/dist-es/commands/PutScheduledActionCommand.js +28 -21
- package/dist-es/commands/RegisterScalableTargetCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ApplicationAutoScalingServiceException.js +10 -5
- package/dist-es/models/models_0.js +118 -183
- package/dist-es/pagination/DescribeScalableTargetsPaginator.js +68 -25
- package/dist-es/pagination/DescribeScalingActivitiesPaginator.js +68 -25
- package/dist-es/pagination/DescribeScalingPoliciesPaginator.js +68 -25
- package/dist-es/pagination/DescribeScheduledActionsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +1004 -848
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-application-auto-scaling
|
|
@@ -1117,10 +1117,10 @@ const deserializeAws_json1_1ValidationException = (output, context) => {
|
|
|
1117
1117
|
};
|
|
1118
1118
|
};
|
|
1119
1119
|
const deserializeMetadata = (output) => {
|
|
1120
|
-
var _a;
|
|
1120
|
+
var _a, _b;
|
|
1121
1121
|
return ({
|
|
1122
1122
|
httpStatusCode: output.statusCode,
|
|
1123
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
1123
|
+
requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
|
|
1124
1124
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1125
1125
|
cfId: output.headers["x-amz-cf-id"],
|
|
1126
1126
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ApplicationAutoScalingClient } from "./ApplicationAutoScalingClient";
|
|
2
3
|
import { DeleteScalingPolicyCommand, } from "./commands/DeleteScalingPolicyCommand";
|
|
3
4
|
import { DeleteScheduledActionCommand, } from "./commands/DeleteScheduledActionCommand";
|
|
@@ -9,145 +10,151 @@ import { DescribeScheduledActionsCommand, } from "./commands/DescribeScheduledAc
|
|
|
9
10
|
import { PutScalingPolicyCommand, } from "./commands/PutScalingPolicyCommand";
|
|
10
11
|
import { PutScheduledActionCommand, } from "./commands/PutScheduledActionCommand";
|
|
11
12
|
import { RegisterScalableTargetCommand, } from "./commands/RegisterScalableTargetCommand";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
var ApplicationAutoScaling = (function (_super) {
|
|
14
|
+
__extends(ApplicationAutoScaling, _super);
|
|
15
|
+
function ApplicationAutoScaling() {
|
|
16
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
17
|
+
}
|
|
18
|
+
ApplicationAutoScaling.prototype.deleteScalingPolicy = function (args, optionsOrCb, cb) {
|
|
19
|
+
var command = new DeleteScalingPolicyCommand(args);
|
|
15
20
|
if (typeof optionsOrCb === "function") {
|
|
16
21
|
this.send(command, optionsOrCb);
|
|
17
22
|
}
|
|
18
23
|
else if (typeof cb === "function") {
|
|
19
24
|
if (typeof optionsOrCb !== "object")
|
|
20
|
-
throw new Error(
|
|
25
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
21
26
|
this.send(command, optionsOrCb || {}, cb);
|
|
22
27
|
}
|
|
23
28
|
else {
|
|
24
29
|
return this.send(command, optionsOrCb);
|
|
25
30
|
}
|
|
26
|
-
}
|
|
27
|
-
deleteScheduledAction(args, optionsOrCb, cb) {
|
|
28
|
-
|
|
31
|
+
};
|
|
32
|
+
ApplicationAutoScaling.prototype.deleteScheduledAction = function (args, optionsOrCb, cb) {
|
|
33
|
+
var command = new DeleteScheduledActionCommand(args);
|
|
29
34
|
if (typeof optionsOrCb === "function") {
|
|
30
35
|
this.send(command, optionsOrCb);
|
|
31
36
|
}
|
|
32
37
|
else if (typeof cb === "function") {
|
|
33
38
|
if (typeof optionsOrCb !== "object")
|
|
34
|
-
throw new Error(
|
|
39
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
35
40
|
this.send(command, optionsOrCb || {}, cb);
|
|
36
41
|
}
|
|
37
42
|
else {
|
|
38
43
|
return this.send(command, optionsOrCb);
|
|
39
44
|
}
|
|
40
|
-
}
|
|
41
|
-
deregisterScalableTarget(args, optionsOrCb, cb) {
|
|
42
|
-
|
|
45
|
+
};
|
|
46
|
+
ApplicationAutoScaling.prototype.deregisterScalableTarget = function (args, optionsOrCb, cb) {
|
|
47
|
+
var command = new DeregisterScalableTargetCommand(args);
|
|
43
48
|
if (typeof optionsOrCb === "function") {
|
|
44
49
|
this.send(command, optionsOrCb);
|
|
45
50
|
}
|
|
46
51
|
else if (typeof cb === "function") {
|
|
47
52
|
if (typeof optionsOrCb !== "object")
|
|
48
|
-
throw new Error(
|
|
53
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
49
54
|
this.send(command, optionsOrCb || {}, cb);
|
|
50
55
|
}
|
|
51
56
|
else {
|
|
52
57
|
return this.send(command, optionsOrCb);
|
|
53
58
|
}
|
|
54
|
-
}
|
|
55
|
-
describeScalableTargets(args, optionsOrCb, cb) {
|
|
56
|
-
|
|
59
|
+
};
|
|
60
|
+
ApplicationAutoScaling.prototype.describeScalableTargets = function (args, optionsOrCb, cb) {
|
|
61
|
+
var command = new DescribeScalableTargetsCommand(args);
|
|
57
62
|
if (typeof optionsOrCb === "function") {
|
|
58
63
|
this.send(command, optionsOrCb);
|
|
59
64
|
}
|
|
60
65
|
else if (typeof cb === "function") {
|
|
61
66
|
if (typeof optionsOrCb !== "object")
|
|
62
|
-
throw new Error(
|
|
67
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
63
68
|
this.send(command, optionsOrCb || {}, cb);
|
|
64
69
|
}
|
|
65
70
|
else {
|
|
66
71
|
return this.send(command, optionsOrCb);
|
|
67
72
|
}
|
|
68
|
-
}
|
|
69
|
-
describeScalingActivities(args, optionsOrCb, cb) {
|
|
70
|
-
|
|
73
|
+
};
|
|
74
|
+
ApplicationAutoScaling.prototype.describeScalingActivities = function (args, optionsOrCb, cb) {
|
|
75
|
+
var command = new DescribeScalingActivitiesCommand(args);
|
|
71
76
|
if (typeof optionsOrCb === "function") {
|
|
72
77
|
this.send(command, optionsOrCb);
|
|
73
78
|
}
|
|
74
79
|
else if (typeof cb === "function") {
|
|
75
80
|
if (typeof optionsOrCb !== "object")
|
|
76
|
-
throw new Error(
|
|
81
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
77
82
|
this.send(command, optionsOrCb || {}, cb);
|
|
78
83
|
}
|
|
79
84
|
else {
|
|
80
85
|
return this.send(command, optionsOrCb);
|
|
81
86
|
}
|
|
82
|
-
}
|
|
83
|
-
describeScalingPolicies(args, optionsOrCb, cb) {
|
|
84
|
-
|
|
87
|
+
};
|
|
88
|
+
ApplicationAutoScaling.prototype.describeScalingPolicies = function (args, optionsOrCb, cb) {
|
|
89
|
+
var command = new DescribeScalingPoliciesCommand(args);
|
|
85
90
|
if (typeof optionsOrCb === "function") {
|
|
86
91
|
this.send(command, optionsOrCb);
|
|
87
92
|
}
|
|
88
93
|
else if (typeof cb === "function") {
|
|
89
94
|
if (typeof optionsOrCb !== "object")
|
|
90
|
-
throw new Error(
|
|
95
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
91
96
|
this.send(command, optionsOrCb || {}, cb);
|
|
92
97
|
}
|
|
93
98
|
else {
|
|
94
99
|
return this.send(command, optionsOrCb);
|
|
95
100
|
}
|
|
96
|
-
}
|
|
97
|
-
describeScheduledActions(args, optionsOrCb, cb) {
|
|
98
|
-
|
|
101
|
+
};
|
|
102
|
+
ApplicationAutoScaling.prototype.describeScheduledActions = function (args, optionsOrCb, cb) {
|
|
103
|
+
var command = new DescribeScheduledActionsCommand(args);
|
|
99
104
|
if (typeof optionsOrCb === "function") {
|
|
100
105
|
this.send(command, optionsOrCb);
|
|
101
106
|
}
|
|
102
107
|
else if (typeof cb === "function") {
|
|
103
108
|
if (typeof optionsOrCb !== "object")
|
|
104
|
-
throw new Error(
|
|
109
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
105
110
|
this.send(command, optionsOrCb || {}, cb);
|
|
106
111
|
}
|
|
107
112
|
else {
|
|
108
113
|
return this.send(command, optionsOrCb);
|
|
109
114
|
}
|
|
110
|
-
}
|
|
111
|
-
putScalingPolicy(args, optionsOrCb, cb) {
|
|
112
|
-
|
|
115
|
+
};
|
|
116
|
+
ApplicationAutoScaling.prototype.putScalingPolicy = function (args, optionsOrCb, cb) {
|
|
117
|
+
var command = new PutScalingPolicyCommand(args);
|
|
113
118
|
if (typeof optionsOrCb === "function") {
|
|
114
119
|
this.send(command, optionsOrCb);
|
|
115
120
|
}
|
|
116
121
|
else if (typeof cb === "function") {
|
|
117
122
|
if (typeof optionsOrCb !== "object")
|
|
118
|
-
throw new Error(
|
|
123
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
119
124
|
this.send(command, optionsOrCb || {}, cb);
|
|
120
125
|
}
|
|
121
126
|
else {
|
|
122
127
|
return this.send(command, optionsOrCb);
|
|
123
128
|
}
|
|
124
|
-
}
|
|
125
|
-
putScheduledAction(args, optionsOrCb, cb) {
|
|
126
|
-
|
|
129
|
+
};
|
|
130
|
+
ApplicationAutoScaling.prototype.putScheduledAction = function (args, optionsOrCb, cb) {
|
|
131
|
+
var command = new PutScheduledActionCommand(args);
|
|
127
132
|
if (typeof optionsOrCb === "function") {
|
|
128
133
|
this.send(command, optionsOrCb);
|
|
129
134
|
}
|
|
130
135
|
else if (typeof cb === "function") {
|
|
131
136
|
if (typeof optionsOrCb !== "object")
|
|
132
|
-
throw new Error(
|
|
137
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
133
138
|
this.send(command, optionsOrCb || {}, cb);
|
|
134
139
|
}
|
|
135
140
|
else {
|
|
136
141
|
return this.send(command, optionsOrCb);
|
|
137
142
|
}
|
|
138
|
-
}
|
|
139
|
-
registerScalableTarget(args, optionsOrCb, cb) {
|
|
140
|
-
|
|
143
|
+
};
|
|
144
|
+
ApplicationAutoScaling.prototype.registerScalableTarget = function (args, optionsOrCb, cb) {
|
|
145
|
+
var command = new RegisterScalableTargetCommand(args);
|
|
141
146
|
if (typeof optionsOrCb === "function") {
|
|
142
147
|
this.send(command, optionsOrCb);
|
|
143
148
|
}
|
|
144
149
|
else if (typeof cb === "function") {
|
|
145
150
|
if (typeof optionsOrCb !== "object")
|
|
146
|
-
throw new Error(
|
|
151
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
147
152
|
this.send(command, optionsOrCb || {}, cb);
|
|
148
153
|
}
|
|
149
154
|
else {
|
|
150
155
|
return this.send(command, optionsOrCb);
|
|
151
156
|
}
|
|
152
|
-
}
|
|
153
|
-
|
|
157
|
+
};
|
|
158
|
+
return ApplicationAutoScaling;
|
|
159
|
+
}(ApplicationAutoScalingClient));
|
|
160
|
+
export { ApplicationAutoScaling };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var ApplicationAutoScalingClient = (function (_super) {
|
|
13
|
+
__extends(ApplicationAutoScalingClient, _super);
|
|
14
|
+
function ApplicationAutoScalingClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
ApplicationAutoScalingClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return ApplicationAutoScalingClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { ApplicationAutoScalingClient };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DeleteScalingPolicyRequestFilterSensitiveLog, DeleteScalingPolicyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DeleteScalingPolicyCommand, serializeAws_json1_1DeleteScalingPolicyCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeleteScalingPolicyCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteScalingPolicyCommand, _super);
|
|
8
|
+
function DeleteScalingPolicyCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeleteScalingPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationAutoScalingClient";
|
|
18
|
+
var commandName = "DeleteScalingPolicyCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeleteScalingPolicyRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeleteScalingPolicyResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteScalingPolicyCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DeleteScalingPolicyCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeleteScalingPolicyCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DeleteScalingPolicyCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeleteScalingPolicyCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteScalingPolicyCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DeleteScheduledActionRequestFilterSensitiveLog, DeleteScheduledActionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DeleteScheduledActionCommand, serializeAws_json1_1DeleteScheduledActionCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeleteScheduledActionCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteScheduledActionCommand, _super);
|
|
8
|
+
function DeleteScheduledActionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeleteScheduledActionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationAutoScalingClient";
|
|
18
|
+
var commandName = "DeleteScheduledActionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeleteScheduledActionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeleteScheduledActionResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteScheduledActionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DeleteScheduledActionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeleteScheduledActionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DeleteScheduledActionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeleteScheduledActionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteScheduledActionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DeregisterScalableTargetRequestFilterSensitiveLog, DeregisterScalableTargetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DeregisterScalableTargetCommand, serializeAws_json1_1DeregisterScalableTargetCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeregisterScalableTargetCommand = (function (_super) {
|
|
7
|
+
__extends(DeregisterScalableTargetCommand, _super);
|
|
8
|
+
function DeregisterScalableTargetCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeregisterScalableTargetCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationAutoScalingClient";
|
|
18
|
+
var commandName = "DeregisterScalableTargetCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeregisterScalableTargetRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeregisterScalableTargetResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeregisterScalableTargetCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DeregisterScalableTargetCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeregisterScalableTargetCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DeregisterScalableTargetCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeregisterScalableTargetCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeregisterScalableTargetCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeScalableTargetsRequestFilterSensitiveLog, DescribeScalableTargetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeScalableTargetsCommand, serializeAws_json1_1DescribeScalableTargetsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeScalableTargetsCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeScalableTargetsCommand, _super);
|
|
8
|
+
function DescribeScalableTargetsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeScalableTargetsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationAutoScalingClient";
|
|
18
|
+
var commandName = "DescribeScalableTargetsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeScalableTargetsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeScalableTargetsResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeScalableTargetsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeScalableTargetsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeScalableTargetsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeScalableTargetsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeScalableTargetsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeScalableTargetsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DescribeScalingActivitiesRequestFilterSensitiveLog, DescribeScalingActivitiesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1DescribeScalingActivitiesCommand, serializeAws_json1_1DescribeScalingActivitiesCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DescribeScalingActivitiesCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeScalingActivitiesCommand, _super);
|
|
8
|
+
function DescribeScalingActivitiesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DescribeScalingActivitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationAutoScalingClient";
|
|
18
|
+
var commandName = "DescribeScalingActivitiesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DescribeScalingActivitiesRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DescribeScalingActivitiesResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeScalingActivitiesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1DescribeScalingActivitiesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DescribeScalingActivitiesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1DescribeScalingActivitiesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DescribeScalingActivitiesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeScalingActivitiesCommand };
|