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