@aws-sdk/client-auto-scaling 3.36.1 → 3.40.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 (41) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist-cjs/commands/index.js +64 -0
  3. package/dist-cjs/endpoints.js +72 -6
  4. package/dist-cjs/index.js +5 -75
  5. package/dist-cjs/models/models_0.js +121 -10
  6. package/dist-cjs/pagination/index.js +12 -0
  7. package/dist-cjs/protocols/Aws_query.js +621 -0
  8. package/dist-cjs/runtimeConfig.browser.js +6 -3
  9. package/dist-cjs/runtimeConfig.js +5 -3
  10. package/dist-cjs/waiters/index.js +6 -0
  11. package/dist-es/commands/index.js +61 -0
  12. package/dist-es/endpoints.js +72 -6
  13. package/dist-es/index.js +5 -75
  14. package/dist-es/models/models_0.js +97 -4
  15. package/dist-es/pagination/index.js +9 -0
  16. package/dist-es/protocols/Aws_query.js +922 -207
  17. package/dist-es/runtimeConfig.browser.js +3 -2
  18. package/dist-es/runtimeConfig.js +3 -3
  19. package/dist-es/waiters/index.js +3 -0
  20. package/dist-types/AutoScaling.d.ts +8 -2
  21. package/dist-types/AutoScalingClient.d.ts +10 -0
  22. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeAutoScalingGroupsCommand.d.ts +5 -1
  24. package/dist-types/commands/index.d.ts +61 -0
  25. package/dist-types/index.d.ts +5 -75
  26. package/dist-types/models/models_0.d.ts +672 -125
  27. package/dist-types/pagination/index.d.ts +9 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  29. package/dist-types/runtimeConfig.d.ts +2 -0
  30. package/dist-types/runtimeConfig.native.d.ts +2 -0
  31. package/dist-types/ts3.4/AutoScalingClient.d.ts +4 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +61 -0
  33. package/dist-types/ts3.4/index.d.ts +5 -75
  34. package/dist-types/ts3.4/models/models_0.d.ts +206 -11
  35. package/dist-types/ts3.4/pagination/index.d.ts +9 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  39. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  40. package/dist-types/waiters/index.d.ts +3 -0
  41. package/package.json +33 -33
@@ -1,6 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { Sha256 } from "@aws-crypto/sha256-browser";
4
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
4
5
  import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
6
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
7
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
@@ -10,7 +11,7 @@ import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
11
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
13
  export var getRuntimeConfig = function (config) {
13
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
14
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
14
15
  var clientSharedValues = getSharedRuntimeConfig(config);
15
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
16
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
16
17
  };
@@ -1,7 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
4
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS } from "@aws-sdk/config-resolver";
4
+ import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
5
5
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
6
6
  import { Hash } from "@aws-sdk/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
@@ -14,8 +14,8 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
16
16
  export var getRuntimeConfig = function (config) {
17
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18
18
  emitWarningIfUnsupportedVersion(process.version);
19
19
  var clientSharedValues = getSharedRuntimeConfig(config);
20
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
20
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
21
21
  };
@@ -0,0 +1,3 @@
1
+ export * from "./waitForGroupExists";
2
+ export * from "./waitForGroupInService";
3
+ export * from "./waitForGroupNotExists";
@@ -70,6 +70,8 @@ import { UpdateAutoScalingGroupCommandInput, UpdateAutoScalingGroupCommandOutput
70
70
  *
71
71
  *
72
72
  *
73
+ *
74
+ *
73
75
  * <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances
74
76
  * based on user-defined scaling policies, scheduled actions, and health checks.</p>
75
77
  * <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required
@@ -310,7 +312,7 @@ export declare class AutoScaling extends AutoScalingClient {
310
312
  deleteWarmPool(args: DeleteWarmPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWarmPoolCommandOutput) => void): void;
311
313
  /**
312
314
  * <p>Describes the current Amazon EC2 Auto Scaling resource quotas for your account.</p>
313
- * <p>When you establish an account, the account has initial quotas on the maximum
315
+ * <p>When you establish an Amazon Web Services account, the account has initial quotas on the maximum
314
316
  * number of Auto Scaling groups and launch configurations that you can create in a given Region.
315
317
  * For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-account-limits.html">Amazon EC2 Auto Scaling service
316
318
  * quotas</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
@@ -345,7 +347,11 @@ export declare class AutoScaling extends AutoScalingClient {
345
347
  describeAdjustmentTypes(args: DescribeAdjustmentTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAdjustmentTypesCommandOutput) => void): void;
346
348
  /**
347
349
  * <p>Gets information about the Auto Scaling groups in the account and Region.</p>
348
- * <p>This operation returns information about instances in Auto Scaling groups. To retrieve
350
+ * <p>If you specify Auto Scaling group names, the output includes information for only the
351
+ * specified Auto Scaling groups. If you specify filters, the output includes information for only
352
+ * those Auto Scaling groups that meet the filter criteria. If you do not specify group names or
353
+ * filters, the output includes information for all Auto Scaling groups. </p>
354
+ * <p>This operation also returns information about instances in Auto Scaling groups. To retrieve
349
355
  * information about the instances in a warm pool, you must call the <a>DescribeWarmPool</a> API. </p>
350
356
  */
351
357
  describeAutoScalingGroups(args: DescribeAutoScalingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingGroupsCommandOutput>;
@@ -137,6 +137,14 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
137
137
  * Optional logger for logging debug/info/warn/error.
138
138
  */
139
139
  logger?: __Logger;
140
+ /**
141
+ * Enables IPv6/IPv4 dualstack endpoint.
142
+ */
143
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
144
+ /**
145
+ * Enables FIPS compatible endpoints.
146
+ */
147
+ useFipsEndpoint?: boolean | __Provider<boolean>;
140
148
  /**
141
149
  * Unique service identifier.
142
150
  * @internal
@@ -183,6 +191,8 @@ export interface AutoScalingClientResolvedConfig extends AutoScalingClientResolv
183
191
  *
184
192
  *
185
193
  *
194
+ *
195
+ *
186
196
  * <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances
187
197
  * based on user-defined scaling policies, scheduled actions, and health checks.</p>
188
198
  * <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required
@@ -8,7 +8,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
8
8
  }
9
9
  /**
10
10
  * <p>Describes the current Amazon EC2 Auto Scaling resource quotas for your account.</p>
11
- * <p>When you establish an account, the account has initial quotas on the maximum
11
+ * <p>When you establish an Amazon Web Services account, the account has initial quotas on the maximum
12
12
  * number of Auto Scaling groups and launch configurations that you can create in a given Region.
13
13
  * For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-account-limits.html">Amazon EC2 Auto Scaling service
14
14
  * quotas</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
@@ -8,7 +8,11 @@ export interface DescribeAutoScalingGroupsCommandOutput extends AutoScalingGroup
8
8
  }
9
9
  /**
10
10
  * <p>Gets information about the Auto Scaling groups in the account and Region.</p>
11
- * <p>This operation returns information about instances in Auto Scaling groups. To retrieve
11
+ * <p>If you specify Auto Scaling group names, the output includes information for only the
12
+ * specified Auto Scaling groups. If you specify filters, the output includes information for only
13
+ * those Auto Scaling groups that meet the filter criteria. If you do not specify group names or
14
+ * filters, the output includes information for all Auto Scaling groups. </p>
15
+ * <p>This operation also returns information about instances in Auto Scaling groups. To retrieve
12
16
  * information about the instances in a warm pool, you must call the <a>DescribeWarmPool</a> API. </p>
13
17
  * @example
14
18
  * Use a bare-bones client and the command you need to make an API call.
@@ -0,0 +1,61 @@
1
+ export * from "./AttachInstancesCommand";
2
+ export * from "./AttachLoadBalancerTargetGroupsCommand";
3
+ export * from "./AttachLoadBalancersCommand";
4
+ export * from "./BatchDeleteScheduledActionCommand";
5
+ export * from "./BatchPutScheduledUpdateGroupActionCommand";
6
+ export * from "./CancelInstanceRefreshCommand";
7
+ export * from "./CompleteLifecycleActionCommand";
8
+ export * from "./CreateAutoScalingGroupCommand";
9
+ export * from "./CreateLaunchConfigurationCommand";
10
+ export * from "./CreateOrUpdateTagsCommand";
11
+ export * from "./DeleteAutoScalingGroupCommand";
12
+ export * from "./DeleteLaunchConfigurationCommand";
13
+ export * from "./DeleteLifecycleHookCommand";
14
+ export * from "./DeleteNotificationConfigurationCommand";
15
+ export * from "./DeletePolicyCommand";
16
+ export * from "./DeleteScheduledActionCommand";
17
+ export * from "./DeleteTagsCommand";
18
+ export * from "./DeleteWarmPoolCommand";
19
+ export * from "./DescribeAccountLimitsCommand";
20
+ export * from "./DescribeAdjustmentTypesCommand";
21
+ export * from "./DescribeAutoScalingGroupsCommand";
22
+ export * from "./DescribeAutoScalingInstancesCommand";
23
+ export * from "./DescribeAutoScalingNotificationTypesCommand";
24
+ export * from "./DescribeInstanceRefreshesCommand";
25
+ export * from "./DescribeLaunchConfigurationsCommand";
26
+ export * from "./DescribeLifecycleHookTypesCommand";
27
+ export * from "./DescribeLifecycleHooksCommand";
28
+ export * from "./DescribeLoadBalancerTargetGroupsCommand";
29
+ export * from "./DescribeLoadBalancersCommand";
30
+ export * from "./DescribeMetricCollectionTypesCommand";
31
+ export * from "./DescribeNotificationConfigurationsCommand";
32
+ export * from "./DescribePoliciesCommand";
33
+ export * from "./DescribeScalingActivitiesCommand";
34
+ export * from "./DescribeScalingProcessTypesCommand";
35
+ export * from "./DescribeScheduledActionsCommand";
36
+ export * from "./DescribeTagsCommand";
37
+ export * from "./DescribeTerminationPolicyTypesCommand";
38
+ export * from "./DescribeWarmPoolCommand";
39
+ export * from "./DetachInstancesCommand";
40
+ export * from "./DetachLoadBalancerTargetGroupsCommand";
41
+ export * from "./DetachLoadBalancersCommand";
42
+ export * from "./DisableMetricsCollectionCommand";
43
+ export * from "./EnableMetricsCollectionCommand";
44
+ export * from "./EnterStandbyCommand";
45
+ export * from "./ExecutePolicyCommand";
46
+ export * from "./ExitStandbyCommand";
47
+ export * from "./GetPredictiveScalingForecastCommand";
48
+ export * from "./PutLifecycleHookCommand";
49
+ export * from "./PutNotificationConfigurationCommand";
50
+ export * from "./PutScalingPolicyCommand";
51
+ export * from "./PutScheduledUpdateGroupActionCommand";
52
+ export * from "./PutWarmPoolCommand";
53
+ export * from "./RecordLifecycleActionHeartbeatCommand";
54
+ export * from "./ResumeProcessesCommand";
55
+ export * from "./SetDesiredCapacityCommand";
56
+ export * from "./SetInstanceHealthCommand";
57
+ export * from "./SetInstanceProtectionCommand";
58
+ export * from "./StartInstanceRefreshCommand";
59
+ export * from "./SuspendProcessesCommand";
60
+ export * from "./TerminateInstanceInAutoScalingGroupCommand";
61
+ export * from "./UpdateAutoScalingGroupCommand";
@@ -1,76 +1,6 @@
1
- export * from "./AutoScalingClient";
2
1
  export * from "./AutoScaling";
3
- export * from "./commands/AttachInstancesCommand";
4
- export * from "./commands/AttachLoadBalancersCommand";
5
- export * from "./commands/AttachLoadBalancerTargetGroupsCommand";
6
- export * from "./commands/BatchDeleteScheduledActionCommand";
7
- export * from "./commands/BatchPutScheduledUpdateGroupActionCommand";
8
- export * from "./commands/CancelInstanceRefreshCommand";
9
- export * from "./commands/CompleteLifecycleActionCommand";
10
- export * from "./commands/CreateAutoScalingGroupCommand";
11
- export * from "./commands/CreateLaunchConfigurationCommand";
12
- export * from "./commands/CreateOrUpdateTagsCommand";
13
- export * from "./commands/DeleteAutoScalingGroupCommand";
14
- export * from "./commands/DeleteLaunchConfigurationCommand";
15
- export * from "./commands/DeleteLifecycleHookCommand";
16
- export * from "./commands/DeleteNotificationConfigurationCommand";
17
- export * from "./commands/DeletePolicyCommand";
18
- export * from "./commands/DeleteScheduledActionCommand";
19
- export * from "./commands/DeleteTagsCommand";
20
- export * from "./commands/DeleteWarmPoolCommand";
21
- export * from "./commands/DescribeAccountLimitsCommand";
22
- export * from "./commands/DescribeAdjustmentTypesCommand";
23
- export * from "./commands/DescribeAutoScalingGroupsCommand";
24
- export * from "./pagination/DescribeAutoScalingGroupsPaginator";
25
- export * from "./waiters/waitForGroupExists";
26
- export * from "./waiters/waitForGroupInService";
27
- export * from "./waiters/waitForGroupNotExists";
28
- export * from "./commands/DescribeAutoScalingInstancesCommand";
29
- export * from "./pagination/DescribeAutoScalingInstancesPaginator";
30
- export * from "./commands/DescribeAutoScalingNotificationTypesCommand";
31
- export * from "./commands/DescribeInstanceRefreshesCommand";
32
- export * from "./commands/DescribeLaunchConfigurationsCommand";
33
- export * from "./pagination/DescribeLaunchConfigurationsPaginator";
34
- export * from "./commands/DescribeLifecycleHooksCommand";
35
- export * from "./commands/DescribeLifecycleHookTypesCommand";
36
- export * from "./commands/DescribeLoadBalancersCommand";
37
- export * from "./commands/DescribeLoadBalancerTargetGroupsCommand";
38
- export * from "./commands/DescribeMetricCollectionTypesCommand";
39
- export * from "./commands/DescribeNotificationConfigurationsCommand";
40
- export * from "./pagination/DescribeNotificationConfigurationsPaginator";
41
- export * from "./commands/DescribePoliciesCommand";
42
- export * from "./pagination/DescribePoliciesPaginator";
43
- export * from "./commands/DescribeScalingActivitiesCommand";
44
- export * from "./pagination/DescribeScalingActivitiesPaginator";
45
- export * from "./commands/DescribeScalingProcessTypesCommand";
46
- export * from "./commands/DescribeScheduledActionsCommand";
47
- export * from "./pagination/DescribeScheduledActionsPaginator";
48
- export * from "./commands/DescribeTagsCommand";
49
- export * from "./pagination/DescribeTagsPaginator";
50
- export * from "./commands/DescribeTerminationPolicyTypesCommand";
51
- export * from "./commands/DescribeWarmPoolCommand";
52
- export * from "./commands/DetachInstancesCommand";
53
- export * from "./commands/DetachLoadBalancersCommand";
54
- export * from "./commands/DetachLoadBalancerTargetGroupsCommand";
55
- export * from "./commands/DisableMetricsCollectionCommand";
56
- export * from "./commands/EnableMetricsCollectionCommand";
57
- export * from "./commands/EnterStandbyCommand";
58
- export * from "./commands/ExecutePolicyCommand";
59
- export * from "./commands/ExitStandbyCommand";
60
- export * from "./commands/GetPredictiveScalingForecastCommand";
61
- export * from "./commands/PutLifecycleHookCommand";
62
- export * from "./commands/PutNotificationConfigurationCommand";
63
- export * from "./commands/PutScalingPolicyCommand";
64
- export * from "./commands/PutScheduledUpdateGroupActionCommand";
65
- export * from "./commands/PutWarmPoolCommand";
66
- export * from "./commands/RecordLifecycleActionHeartbeatCommand";
67
- export * from "./commands/ResumeProcessesCommand";
68
- export * from "./commands/SetDesiredCapacityCommand";
69
- export * from "./commands/SetInstanceHealthCommand";
70
- export * from "./commands/SetInstanceProtectionCommand";
71
- export * from "./commands/StartInstanceRefreshCommand";
72
- export * from "./commands/SuspendProcessesCommand";
73
- export * from "./commands/TerminateInstanceInAutoScalingGroupCommand";
74
- export * from "./commands/UpdateAutoScalingGroupCommand";
75
- export * from "./pagination/Interfaces";
76
- export * from "./models/index";
2
+ export * from "./AutoScalingClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";