@aws-sdk/client-application-auto-scaling 3.489.0 → 3.495.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 (31) hide show
  1. package/dist-cjs/ApplicationAutoScaling.js +1 -37
  2. package/dist-cjs/ApplicationAutoScalingClient.js +1 -43
  3. package/dist-cjs/commands/DeleteScalingPolicyCommand.js +1 -28
  4. package/dist-cjs/commands/DeleteScheduledActionCommand.js +1 -28
  5. package/dist-cjs/commands/DeregisterScalableTargetCommand.js +1 -28
  6. package/dist-cjs/commands/DescribeScalableTargetsCommand.js +1 -28
  7. package/dist-cjs/commands/DescribeScalingActivitiesCommand.js +1 -28
  8. package/dist-cjs/commands/DescribeScalingPoliciesCommand.js +1 -28
  9. package/dist-cjs/commands/DescribeScheduledActionsCommand.js +1 -28
  10. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  11. package/dist-cjs/commands/PutScalingPolicyCommand.js +1 -28
  12. package/dist-cjs/commands/PutScheduledActionCommand.js +1 -28
  13. package/dist-cjs/commands/RegisterScalableTargetCommand.js +1 -28
  14. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  15. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  16. package/dist-cjs/commands/index.js +1 -16
  17. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  18. package/dist-cjs/extensionConfiguration.js +1 -2
  19. package/dist-cjs/index.js +1688 -11
  20. package/dist-cjs/models/ApplicationAutoScalingServiceException.js +1 -12
  21. package/dist-cjs/models/index.js +1 -4
  22. package/dist-cjs/models/models_0.js +1 -227
  23. package/dist-cjs/pagination/DescribeScalableTargetsPaginator.js +1 -7
  24. package/dist-cjs/pagination/DescribeScalingActivitiesPaginator.js +1 -7
  25. package/dist-cjs/pagination/DescribeScalingPoliciesPaginator.js +1 -7
  26. package/dist-cjs/pagination/DescribeScheduledActionsPaginator.js +1 -7
  27. package/dist-cjs/pagination/Interfaces.js +1 -2
  28. package/dist-cjs/pagination/index.js +1 -8
  29. package/dist-cjs/protocols/Aws_json1_1.js +1 -996
  30. package/dist-cjs/runtimeExtensions.js +1 -22
  31. package/package.json +40 -40
@@ -1,37 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApplicationAutoScaling = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const ApplicationAutoScalingClient_1 = require("./ApplicationAutoScalingClient");
6
- const DeleteScalingPolicyCommand_1 = require("./commands/DeleteScalingPolicyCommand");
7
- const DeleteScheduledActionCommand_1 = require("./commands/DeleteScheduledActionCommand");
8
- const DeregisterScalableTargetCommand_1 = require("./commands/DeregisterScalableTargetCommand");
9
- const DescribeScalableTargetsCommand_1 = require("./commands/DescribeScalableTargetsCommand");
10
- const DescribeScalingActivitiesCommand_1 = require("./commands/DescribeScalingActivitiesCommand");
11
- const DescribeScalingPoliciesCommand_1 = require("./commands/DescribeScalingPoliciesCommand");
12
- const DescribeScheduledActionsCommand_1 = require("./commands/DescribeScheduledActionsCommand");
13
- const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
14
- const PutScalingPolicyCommand_1 = require("./commands/PutScalingPolicyCommand");
15
- const PutScheduledActionCommand_1 = require("./commands/PutScheduledActionCommand");
16
- const RegisterScalableTargetCommand_1 = require("./commands/RegisterScalableTargetCommand");
17
- const TagResourceCommand_1 = require("./commands/TagResourceCommand");
18
- const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
19
- const commands = {
20
- DeleteScalingPolicyCommand: DeleteScalingPolicyCommand_1.DeleteScalingPolicyCommand,
21
- DeleteScheduledActionCommand: DeleteScheduledActionCommand_1.DeleteScheduledActionCommand,
22
- DeregisterScalableTargetCommand: DeregisterScalableTargetCommand_1.DeregisterScalableTargetCommand,
23
- DescribeScalableTargetsCommand: DescribeScalableTargetsCommand_1.DescribeScalableTargetsCommand,
24
- DescribeScalingActivitiesCommand: DescribeScalingActivitiesCommand_1.DescribeScalingActivitiesCommand,
25
- DescribeScalingPoliciesCommand: DescribeScalingPoliciesCommand_1.DescribeScalingPoliciesCommand,
26
- DescribeScheduledActionsCommand: DescribeScheduledActionsCommand_1.DescribeScheduledActionsCommand,
27
- ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
28
- PutScalingPolicyCommand: PutScalingPolicyCommand_1.PutScalingPolicyCommand,
29
- PutScheduledActionCommand: PutScheduledActionCommand_1.PutScheduledActionCommand,
30
- RegisterScalableTargetCommand: RegisterScalableTargetCommand_1.RegisterScalableTargetCommand,
31
- TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
32
- UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
33
- };
34
- class ApplicationAutoScaling extends ApplicationAutoScalingClient_1.ApplicationAutoScalingClient {
35
- }
36
- exports.ApplicationAutoScaling = ApplicationAutoScaling;
37
- (0, smithy_client_1.createAggregatedClient)(commands, ApplicationAutoScaling);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApplicationAutoScalingClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class ApplicationAutoScalingClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.ApplicationAutoScalingClient = ApplicationAutoScalingClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteScalingPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeleteScalingPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DeleteScalingPolicy", {})
22
- .n("ApplicationAutoScalingClient", "DeleteScalingPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteScalingPolicyCommand)
25
- .de(Aws_json1_1_1.de_DeleteScalingPolicyCommand)
26
- .build() {
27
- }
28
- exports.DeleteScalingPolicyCommand = DeleteScalingPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteScheduledActionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeleteScheduledActionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DeleteScheduledAction", {})
22
- .n("ApplicationAutoScalingClient", "DeleteScheduledActionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteScheduledActionCommand)
25
- .de(Aws_json1_1_1.de_DeleteScheduledActionCommand)
26
- .build() {
27
- }
28
- exports.DeleteScheduledActionCommand = DeleteScheduledActionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeregisterScalableTargetCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeregisterScalableTargetCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DeregisterScalableTarget", {})
22
- .n("ApplicationAutoScalingClient", "DeregisterScalableTargetCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeregisterScalableTargetCommand)
25
- .de(Aws_json1_1_1.de_DeregisterScalableTargetCommand)
26
- .build() {
27
- }
28
- exports.DeregisterScalableTargetCommand = DeregisterScalableTargetCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeScalableTargetsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeScalableTargetsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DescribeScalableTargets", {})
22
- .n("ApplicationAutoScalingClient", "DescribeScalableTargetsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeScalableTargetsCommand)
25
- .de(Aws_json1_1_1.de_DescribeScalableTargetsCommand)
26
- .build() {
27
- }
28
- exports.DescribeScalableTargetsCommand = DescribeScalableTargetsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeScalingActivitiesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeScalingActivitiesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DescribeScalingActivities", {})
22
- .n("ApplicationAutoScalingClient", "DescribeScalingActivitiesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeScalingActivitiesCommand)
25
- .de(Aws_json1_1_1.de_DescribeScalingActivitiesCommand)
26
- .build() {
27
- }
28
- exports.DescribeScalingActivitiesCommand = DescribeScalingActivitiesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeScalingPoliciesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeScalingPoliciesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DescribeScalingPolicies", {})
22
- .n("ApplicationAutoScalingClient", "DescribeScalingPoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeScalingPoliciesCommand)
25
- .de(Aws_json1_1_1.de_DescribeScalingPoliciesCommand)
26
- .build() {
27
- }
28
- exports.DescribeScalingPoliciesCommand = DescribeScalingPoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeScheduledActionsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeScheduledActionsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "DescribeScheduledActions", {})
22
- .n("ApplicationAutoScalingClient", "DescribeScheduledActionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeScheduledActionsCommand)
25
- .de(Aws_json1_1_1.de_DescribeScheduledActionsCommand)
26
- .build() {
27
- }
28
- exports.DescribeScheduledActionsCommand = DescribeScheduledActionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "ListTagsForResource", {})
22
- .n("ApplicationAutoScalingClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_json1_1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutScalingPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class PutScalingPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "PutScalingPolicy", {})
22
- .n("ApplicationAutoScalingClient", "PutScalingPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_PutScalingPolicyCommand)
25
- .de(Aws_json1_1_1.de_PutScalingPolicyCommand)
26
- .build() {
27
- }
28
- exports.PutScalingPolicyCommand = PutScalingPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutScheduledActionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class PutScheduledActionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "PutScheduledAction", {})
22
- .n("ApplicationAutoScalingClient", "PutScheduledActionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_PutScheduledActionCommand)
25
- .de(Aws_json1_1_1.de_PutScheduledActionCommand)
26
- .build() {
27
- }
28
- exports.PutScheduledActionCommand = PutScheduledActionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RegisterScalableTargetCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class RegisterScalableTargetCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "RegisterScalableTarget", {})
22
- .n("ApplicationAutoScalingClient", "RegisterScalableTargetCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_RegisterScalableTargetCommand)
25
- .de(Aws_json1_1_1.de_RegisterScalableTargetCommand)
26
- .build() {
27
- }
28
- exports.RegisterScalableTargetCommand = RegisterScalableTargetCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "TagResource", {})
22
- .n("ApplicationAutoScalingClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_TagResourceCommand)
25
- .de(Aws_json1_1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AnyScaleFrontendService", "UntagResource", {})
22
- .n("ApplicationAutoScalingClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UntagResourceCommand)
25
- .de(Aws_json1_1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,16 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./DeleteScalingPolicyCommand"), exports);
5
- tslib_1.__exportStar(require("./DeleteScheduledActionCommand"), exports);
6
- tslib_1.__exportStar(require("./DeregisterScalableTargetCommand"), exports);
7
- tslib_1.__exportStar(require("./DescribeScalableTargetsCommand"), exports);
8
- tslib_1.__exportStar(require("./DescribeScalingActivitiesCommand"), exports);
9
- tslib_1.__exportStar(require("./DescribeScalingPoliciesCommand"), exports);
10
- tslib_1.__exportStar(require("./DescribeScheduledActionsCommand"), exports);
11
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
12
- tslib_1.__exportStar(require("./PutScalingPolicyCommand"), exports);
13
- tslib_1.__exportStar(require("./PutScheduledActionCommand"), exports);
14
- tslib_1.__exportStar(require("./RegisterScalableTargetCommand"), exports);
15
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
16
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "application-autoscaling",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");