@aws-sdk/client-auto-scaling 3.1018.0 → 3.1020.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/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +7 -0
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/AutoScaling.js +3 -3
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/models/enums.js +7 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/waiters/waitForGroupExists.js +1 -1
- package/dist-es/waiters/waitForGroupInService.js +1 -1
- package/dist-es/waiters/waitForGroupNotExists.js +1 -1
- package/dist-types/AutoScaling.d.ts +66 -66
- package/dist-types/AutoScalingClient.d.ts +69 -69
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/DescribeAutoScalingGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWarmPoolCommand.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +49 -4
- package/dist-types/pagination/DescribeAutoScalingGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeAutoScalingInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInstanceRefreshesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLaunchConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLoadBalancerTargetGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeNotificationConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScalingActivitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScheduledActionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeTagsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeTrafficSourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeWarmPoolPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AutoScalingClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/waiters/waitForGroupExists.d.ts +3 -3
- package/dist-types/waiters/waitForGroupInService.d.ts +3 -3
- package/dist-types/waiters/waitForGroupNotExists.d.ts +3 -3
- package/package.json +14 -14
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultAutoScalingHttpAuthSchemeProvider = exports.defaultAutoScalingHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultAutoScalingHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultAutoScalingHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultAutoScalingHttpAuthSchemeProvider = defaultAutoScalingHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
package/dist-cjs/index.js
CHANGED
|
@@ -1270,20 +1270,27 @@ const LifecycleState = {
|
|
|
1270
1270
|
PENDING_PROCEED: "Pending:Proceed",
|
|
1271
1271
|
PENDING_WAIT: "Pending:Wait",
|
|
1272
1272
|
QUARANTINED: "Quarantined",
|
|
1273
|
+
REPLACING_ROOT_VOLUME: "ReplacingRootVolume",
|
|
1274
|
+
REPLACING_ROOT_VOLUME_PROCEED: "ReplacingRootVolume:Proceed",
|
|
1275
|
+
REPLACING_ROOT_VOLUME_WAIT: "ReplacingRootVolume:Wait",
|
|
1276
|
+
ROOT_VOLUME_REPLACED: "RootVolumeReplaced",
|
|
1273
1277
|
STANDBY: "Standby",
|
|
1274
1278
|
TERMINATED: "Terminated",
|
|
1275
1279
|
TERMINATING: "Terminating",
|
|
1276
1280
|
TERMINATING_PROCEED: "Terminating:Proceed",
|
|
1281
|
+
TERMINATING_RETAINED: "Terminating:Retained",
|
|
1277
1282
|
TERMINATING_WAIT: "Terminating:Wait",
|
|
1278
1283
|
WARMED_HIBERNATED: "Warmed:Hibernated",
|
|
1279
1284
|
WARMED_PENDING: "Warmed:Pending",
|
|
1280
1285
|
WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed",
|
|
1286
|
+
WARMED_PENDING_RETAINED: "Warmed:Pending:Retained",
|
|
1281
1287
|
WARMED_PENDING_WAIT: "Warmed:Pending:Wait",
|
|
1282
1288
|
WARMED_RUNNING: "Warmed:Running",
|
|
1283
1289
|
WARMED_STOPPED: "Warmed:Stopped",
|
|
1284
1290
|
WARMED_TERMINATED: "Warmed:Terminated",
|
|
1285
1291
|
WARMED_TERMINATING: "Warmed:Terminating",
|
|
1286
1292
|
WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed",
|
|
1293
|
+
WARMED_TERMINATING_RETAINED: "Warmed:Terminating:Retained",
|
|
1287
1294
|
WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait",
|
|
1288
1295
|
};
|
|
1289
1296
|
const WarmPoolState = {
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/AutoScaling.js
CHANGED
|
@@ -17,7 +17,7 @@ import { DeleteLifecycleHookCommand, } from "./commands/DeleteLifecycleHookComma
|
|
|
17
17
|
import { DeleteNotificationConfigurationCommand, } from "./commands/DeleteNotificationConfigurationCommand";
|
|
18
18
|
import { DeletePolicyCommand, } from "./commands/DeletePolicyCommand";
|
|
19
19
|
import { DeleteScheduledActionCommand, } from "./commands/DeleteScheduledActionCommand";
|
|
20
|
-
import { DeleteTagsCommand } from "./commands/DeleteTagsCommand";
|
|
20
|
+
import { DeleteTagsCommand, } from "./commands/DeleteTagsCommand";
|
|
21
21
|
import { DeleteWarmPoolCommand, } from "./commands/DeleteWarmPoolCommand";
|
|
22
22
|
import { DescribeAccountLimitsCommand, } from "./commands/DescribeAccountLimitsCommand";
|
|
23
23
|
import { DescribeAdjustmentTypesCommand, } from "./commands/DescribeAdjustmentTypesCommand";
|
|
@@ -48,14 +48,14 @@ import { DisableMetricsCollectionCommand, } from "./commands/DisableMetricsColle
|
|
|
48
48
|
import { EnableMetricsCollectionCommand, } from "./commands/EnableMetricsCollectionCommand";
|
|
49
49
|
import { EnterStandbyCommand, } from "./commands/EnterStandbyCommand";
|
|
50
50
|
import { ExecutePolicyCommand, } from "./commands/ExecutePolicyCommand";
|
|
51
|
-
import { ExitStandbyCommand } from "./commands/ExitStandbyCommand";
|
|
51
|
+
import { ExitStandbyCommand, } from "./commands/ExitStandbyCommand";
|
|
52
52
|
import { GetPredictiveScalingForecastCommand, } from "./commands/GetPredictiveScalingForecastCommand";
|
|
53
53
|
import { LaunchInstancesCommand, } from "./commands/LaunchInstancesCommand";
|
|
54
54
|
import { PutLifecycleHookCommand, } from "./commands/PutLifecycleHookCommand";
|
|
55
55
|
import { PutNotificationConfigurationCommand, } from "./commands/PutNotificationConfigurationCommand";
|
|
56
56
|
import { PutScalingPolicyCommand, } from "./commands/PutScalingPolicyCommand";
|
|
57
57
|
import { PutScheduledUpdateGroupActionCommand, } from "./commands/PutScheduledUpdateGroupActionCommand";
|
|
58
|
-
import { PutWarmPoolCommand } from "./commands/PutWarmPoolCommand";
|
|
58
|
+
import { PutWarmPoolCommand, } from "./commands/PutWarmPoolCommand";
|
|
59
59
|
import { RecordLifecycleActionHeartbeatCommand, } from "./commands/RecordLifecycleActionHeartbeatCommand";
|
|
60
60
|
import { ResumeProcessesCommand, } from "./commands/ResumeProcessesCommand";
|
|
61
61
|
import { RollbackInstanceRefreshCommand, } from "./commands/RollbackInstanceRefreshCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultAutoScalingHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/models/enums.js
CHANGED
|
@@ -105,20 +105,27 @@ export const LifecycleState = {
|
|
|
105
105
|
PENDING_PROCEED: "Pending:Proceed",
|
|
106
106
|
PENDING_WAIT: "Pending:Wait",
|
|
107
107
|
QUARANTINED: "Quarantined",
|
|
108
|
+
REPLACING_ROOT_VOLUME: "ReplacingRootVolume",
|
|
109
|
+
REPLACING_ROOT_VOLUME_PROCEED: "ReplacingRootVolume:Proceed",
|
|
110
|
+
REPLACING_ROOT_VOLUME_WAIT: "ReplacingRootVolume:Wait",
|
|
111
|
+
ROOT_VOLUME_REPLACED: "RootVolumeReplaced",
|
|
108
112
|
STANDBY: "Standby",
|
|
109
113
|
TERMINATED: "Terminated",
|
|
110
114
|
TERMINATING: "Terminating",
|
|
111
115
|
TERMINATING_PROCEED: "Terminating:Proceed",
|
|
116
|
+
TERMINATING_RETAINED: "Terminating:Retained",
|
|
112
117
|
TERMINATING_WAIT: "Terminating:Wait",
|
|
113
118
|
WARMED_HIBERNATED: "Warmed:Hibernated",
|
|
114
119
|
WARMED_PENDING: "Warmed:Pending",
|
|
115
120
|
WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed",
|
|
121
|
+
WARMED_PENDING_RETAINED: "Warmed:Pending:Retained",
|
|
116
122
|
WARMED_PENDING_WAIT: "Warmed:Pending:Wait",
|
|
117
123
|
WARMED_RUNNING: "Warmed:Running",
|
|
118
124
|
WARMED_STOPPED: "Warmed:Stopped",
|
|
119
125
|
WARMED_TERMINATED: "Warmed:Terminated",
|
|
120
126
|
WARMED_TERMINATING: "Warmed:Terminating",
|
|
121
127
|
WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed",
|
|
128
|
+
WARMED_TERMINATING_RETAINED: "Warmed:Terminating:Retained",
|
|
122
129
|
WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait",
|
|
123
130
|
};
|
|
124
131
|
export const WarmPoolState = {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsQueryProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeAutoScalingGroupsCommand, } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeAutoScalingGroupsCommand, } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeAutoScalingGroupsCommand, } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,72 +1,72 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
2
|
import type { WaiterResult } from "@smithy/util-waiter";
|
|
3
3
|
import { AutoScalingClient } from "./AutoScalingClient";
|
|
4
|
-
import { AttachInstancesCommandInput, AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand";
|
|
5
|
-
import { AttachLoadBalancersCommandInput, AttachLoadBalancersCommandOutput } from "./commands/AttachLoadBalancersCommand";
|
|
6
|
-
import { AttachLoadBalancerTargetGroupsCommandInput, AttachLoadBalancerTargetGroupsCommandOutput } from "./commands/AttachLoadBalancerTargetGroupsCommand";
|
|
7
|
-
import { AttachTrafficSourcesCommandInput, AttachTrafficSourcesCommandOutput } from "./commands/AttachTrafficSourcesCommand";
|
|
8
|
-
import { BatchDeleteScheduledActionCommandInput, BatchDeleteScheduledActionCommandOutput } from "./commands/BatchDeleteScheduledActionCommand";
|
|
9
|
-
import { BatchPutScheduledUpdateGroupActionCommandInput, BatchPutScheduledUpdateGroupActionCommandOutput } from "./commands/BatchPutScheduledUpdateGroupActionCommand";
|
|
10
|
-
import { CancelInstanceRefreshCommandInput, CancelInstanceRefreshCommandOutput } from "./commands/CancelInstanceRefreshCommand";
|
|
11
|
-
import { CompleteLifecycleActionCommandInput, CompleteLifecycleActionCommandOutput } from "./commands/CompleteLifecycleActionCommand";
|
|
12
|
-
import { CreateAutoScalingGroupCommandInput, CreateAutoScalingGroupCommandOutput } from "./commands/CreateAutoScalingGroupCommand";
|
|
13
|
-
import { CreateLaunchConfigurationCommandInput, CreateLaunchConfigurationCommandOutput } from "./commands/CreateLaunchConfigurationCommand";
|
|
14
|
-
import { CreateOrUpdateTagsCommandInput, CreateOrUpdateTagsCommandOutput } from "./commands/CreateOrUpdateTagsCommand";
|
|
15
|
-
import { DeleteAutoScalingGroupCommandInput, DeleteAutoScalingGroupCommandOutput } from "./commands/DeleteAutoScalingGroupCommand";
|
|
16
|
-
import { DeleteLaunchConfigurationCommandInput, DeleteLaunchConfigurationCommandOutput } from "./commands/DeleteLaunchConfigurationCommand";
|
|
17
|
-
import { DeleteLifecycleHookCommandInput, DeleteLifecycleHookCommandOutput } from "./commands/DeleteLifecycleHookCommand";
|
|
18
|
-
import { DeleteNotificationConfigurationCommandInput, DeleteNotificationConfigurationCommandOutput } from "./commands/DeleteNotificationConfigurationCommand";
|
|
19
|
-
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
20
|
-
import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
|
|
21
|
-
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
22
|
-
import { DeleteWarmPoolCommandInput, DeleteWarmPoolCommandOutput } from "./commands/DeleteWarmPoolCommand";
|
|
23
|
-
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
|
|
24
|
-
import { DescribeAdjustmentTypesCommandInput, DescribeAdjustmentTypesCommandOutput } from "./commands/DescribeAdjustmentTypesCommand";
|
|
25
|
-
import { DescribeAutoScalingGroupsCommandInput, DescribeAutoScalingGroupsCommandOutput } from "./commands/DescribeAutoScalingGroupsCommand";
|
|
26
|
-
import { DescribeAutoScalingInstancesCommandInput, DescribeAutoScalingInstancesCommandOutput } from "./commands/DescribeAutoScalingInstancesCommand";
|
|
27
|
-
import { DescribeAutoScalingNotificationTypesCommandInput, DescribeAutoScalingNotificationTypesCommandOutput } from "./commands/DescribeAutoScalingNotificationTypesCommand";
|
|
28
|
-
import { DescribeInstanceRefreshesCommandInput, DescribeInstanceRefreshesCommandOutput } from "./commands/DescribeInstanceRefreshesCommand";
|
|
29
|
-
import { DescribeLaunchConfigurationsCommandInput, DescribeLaunchConfigurationsCommandOutput } from "./commands/DescribeLaunchConfigurationsCommand";
|
|
30
|
-
import { DescribeLifecycleHooksCommandInput, DescribeLifecycleHooksCommandOutput } from "./commands/DescribeLifecycleHooksCommand";
|
|
31
|
-
import { DescribeLifecycleHookTypesCommandInput, DescribeLifecycleHookTypesCommandOutput } from "./commands/DescribeLifecycleHookTypesCommand";
|
|
32
|
-
import { DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput } from "./commands/DescribeLoadBalancersCommand";
|
|
33
|
-
import { DescribeLoadBalancerTargetGroupsCommandInput, DescribeLoadBalancerTargetGroupsCommandOutput } from "./commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
34
|
-
import { DescribeMetricCollectionTypesCommandInput, DescribeMetricCollectionTypesCommandOutput } from "./commands/DescribeMetricCollectionTypesCommand";
|
|
35
|
-
import { DescribeNotificationConfigurationsCommandInput, DescribeNotificationConfigurationsCommandOutput } from "./commands/DescribeNotificationConfigurationsCommand";
|
|
36
|
-
import { DescribePoliciesCommandInput, DescribePoliciesCommandOutput } from "./commands/DescribePoliciesCommand";
|
|
37
|
-
import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
|
|
38
|
-
import { DescribeScalingProcessTypesCommandInput, DescribeScalingProcessTypesCommandOutput } from "./commands/DescribeScalingProcessTypesCommand";
|
|
39
|
-
import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
|
|
40
|
-
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
41
|
-
import { DescribeTerminationPolicyTypesCommandInput, DescribeTerminationPolicyTypesCommandOutput } from "./commands/DescribeTerminationPolicyTypesCommand";
|
|
42
|
-
import { DescribeTrafficSourcesCommandInput, DescribeTrafficSourcesCommandOutput } from "./commands/DescribeTrafficSourcesCommand";
|
|
43
|
-
import { DescribeWarmPoolCommandInput, DescribeWarmPoolCommandOutput } from "./commands/DescribeWarmPoolCommand";
|
|
44
|
-
import { DetachInstancesCommandInput, DetachInstancesCommandOutput } from "./commands/DetachInstancesCommand";
|
|
45
|
-
import { DetachLoadBalancersCommandInput, DetachLoadBalancersCommandOutput } from "./commands/DetachLoadBalancersCommand";
|
|
46
|
-
import { DetachLoadBalancerTargetGroupsCommandInput, DetachLoadBalancerTargetGroupsCommandOutput } from "./commands/DetachLoadBalancerTargetGroupsCommand";
|
|
47
|
-
import { DetachTrafficSourcesCommandInput, DetachTrafficSourcesCommandOutput } from "./commands/DetachTrafficSourcesCommand";
|
|
48
|
-
import { DisableMetricsCollectionCommandInput, DisableMetricsCollectionCommandOutput } from "./commands/DisableMetricsCollectionCommand";
|
|
49
|
-
import { EnableMetricsCollectionCommandInput, EnableMetricsCollectionCommandOutput } from "./commands/EnableMetricsCollectionCommand";
|
|
50
|
-
import { EnterStandbyCommandInput, EnterStandbyCommandOutput } from "./commands/EnterStandbyCommand";
|
|
51
|
-
import { ExecutePolicyCommandInput, ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
52
|
-
import { ExitStandbyCommandInput, ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
53
|
-
import { GetPredictiveScalingForecastCommandInput, GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
54
|
-
import { LaunchInstancesCommandInput, LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
55
|
-
import { PutLifecycleHookCommandInput, PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
56
|
-
import { PutNotificationConfigurationCommandInput, PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
57
|
-
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
58
|
-
import { PutScheduledUpdateGroupActionCommandInput, PutScheduledUpdateGroupActionCommandOutput } from "./commands/PutScheduledUpdateGroupActionCommand";
|
|
59
|
-
import { PutWarmPoolCommandInput, PutWarmPoolCommandOutput } from "./commands/PutWarmPoolCommand";
|
|
60
|
-
import { RecordLifecycleActionHeartbeatCommandInput, RecordLifecycleActionHeartbeatCommandOutput } from "./commands/RecordLifecycleActionHeartbeatCommand";
|
|
61
|
-
import { ResumeProcessesCommandInput, ResumeProcessesCommandOutput } from "./commands/ResumeProcessesCommand";
|
|
62
|
-
import { RollbackInstanceRefreshCommandInput, RollbackInstanceRefreshCommandOutput } from "./commands/RollbackInstanceRefreshCommand";
|
|
63
|
-
import { SetDesiredCapacityCommandInput, SetDesiredCapacityCommandOutput } from "./commands/SetDesiredCapacityCommand";
|
|
64
|
-
import { SetInstanceHealthCommandInput, SetInstanceHealthCommandOutput } from "./commands/SetInstanceHealthCommand";
|
|
65
|
-
import { SetInstanceProtectionCommandInput, SetInstanceProtectionCommandOutput } from "./commands/SetInstanceProtectionCommand";
|
|
66
|
-
import { StartInstanceRefreshCommandInput, StartInstanceRefreshCommandOutput } from "./commands/StartInstanceRefreshCommand";
|
|
67
|
-
import { SuspendProcessesCommandInput, SuspendProcessesCommandOutput } from "./commands/SuspendProcessesCommand";
|
|
68
|
-
import { TerminateInstanceInAutoScalingGroupCommandInput, TerminateInstanceInAutoScalingGroupCommandOutput } from "./commands/TerminateInstanceInAutoScalingGroupCommand";
|
|
69
|
-
import { UpdateAutoScalingGroupCommandInput, UpdateAutoScalingGroupCommandOutput } from "./commands/UpdateAutoScalingGroupCommand";
|
|
4
|
+
import { type AttachInstancesCommandInput, type AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand";
|
|
5
|
+
import { type AttachLoadBalancersCommandInput, type AttachLoadBalancersCommandOutput } from "./commands/AttachLoadBalancersCommand";
|
|
6
|
+
import { type AttachLoadBalancerTargetGroupsCommandInput, type AttachLoadBalancerTargetGroupsCommandOutput } from "./commands/AttachLoadBalancerTargetGroupsCommand";
|
|
7
|
+
import { type AttachTrafficSourcesCommandInput, type AttachTrafficSourcesCommandOutput } from "./commands/AttachTrafficSourcesCommand";
|
|
8
|
+
import { type BatchDeleteScheduledActionCommandInput, type BatchDeleteScheduledActionCommandOutput } from "./commands/BatchDeleteScheduledActionCommand";
|
|
9
|
+
import { type BatchPutScheduledUpdateGroupActionCommandInput, type BatchPutScheduledUpdateGroupActionCommandOutput } from "./commands/BatchPutScheduledUpdateGroupActionCommand";
|
|
10
|
+
import { type CancelInstanceRefreshCommandInput, type CancelInstanceRefreshCommandOutput } from "./commands/CancelInstanceRefreshCommand";
|
|
11
|
+
import { type CompleteLifecycleActionCommandInput, type CompleteLifecycleActionCommandOutput } from "./commands/CompleteLifecycleActionCommand";
|
|
12
|
+
import { type CreateAutoScalingGroupCommandInput, type CreateAutoScalingGroupCommandOutput } from "./commands/CreateAutoScalingGroupCommand";
|
|
13
|
+
import { type CreateLaunchConfigurationCommandInput, type CreateLaunchConfigurationCommandOutput } from "./commands/CreateLaunchConfigurationCommand";
|
|
14
|
+
import { type CreateOrUpdateTagsCommandInput, type CreateOrUpdateTagsCommandOutput } from "./commands/CreateOrUpdateTagsCommand";
|
|
15
|
+
import { type DeleteAutoScalingGroupCommandInput, type DeleteAutoScalingGroupCommandOutput } from "./commands/DeleteAutoScalingGroupCommand";
|
|
16
|
+
import { type DeleteLaunchConfigurationCommandInput, type DeleteLaunchConfigurationCommandOutput } from "./commands/DeleteLaunchConfigurationCommand";
|
|
17
|
+
import { type DeleteLifecycleHookCommandInput, type DeleteLifecycleHookCommandOutput } from "./commands/DeleteLifecycleHookCommand";
|
|
18
|
+
import { type DeleteNotificationConfigurationCommandInput, type DeleteNotificationConfigurationCommandOutput } from "./commands/DeleteNotificationConfigurationCommand";
|
|
19
|
+
import { type DeletePolicyCommandInput, type DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
20
|
+
import { type DeleteScheduledActionCommandInput, type DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
|
|
21
|
+
import { type DeleteTagsCommandInput, type DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
22
|
+
import { type DeleteWarmPoolCommandInput, type DeleteWarmPoolCommandOutput } from "./commands/DeleteWarmPoolCommand";
|
|
23
|
+
import { type DescribeAccountLimitsCommandInput, type DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
|
|
24
|
+
import { type DescribeAdjustmentTypesCommandInput, type DescribeAdjustmentTypesCommandOutput } from "./commands/DescribeAdjustmentTypesCommand";
|
|
25
|
+
import { type DescribeAutoScalingGroupsCommandInput, type DescribeAutoScalingGroupsCommandOutput } from "./commands/DescribeAutoScalingGroupsCommand";
|
|
26
|
+
import { type DescribeAutoScalingInstancesCommandInput, type DescribeAutoScalingInstancesCommandOutput } from "./commands/DescribeAutoScalingInstancesCommand";
|
|
27
|
+
import { type DescribeAutoScalingNotificationTypesCommandInput, type DescribeAutoScalingNotificationTypesCommandOutput } from "./commands/DescribeAutoScalingNotificationTypesCommand";
|
|
28
|
+
import { type DescribeInstanceRefreshesCommandInput, type DescribeInstanceRefreshesCommandOutput } from "./commands/DescribeInstanceRefreshesCommand";
|
|
29
|
+
import { type DescribeLaunchConfigurationsCommandInput, type DescribeLaunchConfigurationsCommandOutput } from "./commands/DescribeLaunchConfigurationsCommand";
|
|
30
|
+
import { type DescribeLifecycleHooksCommandInput, type DescribeLifecycleHooksCommandOutput } from "./commands/DescribeLifecycleHooksCommand";
|
|
31
|
+
import { type DescribeLifecycleHookTypesCommandInput, type DescribeLifecycleHookTypesCommandOutput } from "./commands/DescribeLifecycleHookTypesCommand";
|
|
32
|
+
import { type DescribeLoadBalancersCommandInput, type DescribeLoadBalancersCommandOutput } from "./commands/DescribeLoadBalancersCommand";
|
|
33
|
+
import { type DescribeLoadBalancerTargetGroupsCommandInput, type DescribeLoadBalancerTargetGroupsCommandOutput } from "./commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
34
|
+
import { type DescribeMetricCollectionTypesCommandInput, type DescribeMetricCollectionTypesCommandOutput } from "./commands/DescribeMetricCollectionTypesCommand";
|
|
35
|
+
import { type DescribeNotificationConfigurationsCommandInput, type DescribeNotificationConfigurationsCommandOutput } from "./commands/DescribeNotificationConfigurationsCommand";
|
|
36
|
+
import { type DescribePoliciesCommandInput, type DescribePoliciesCommandOutput } from "./commands/DescribePoliciesCommand";
|
|
37
|
+
import { type DescribeScalingActivitiesCommandInput, type DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
|
|
38
|
+
import { type DescribeScalingProcessTypesCommandInput, type DescribeScalingProcessTypesCommandOutput } from "./commands/DescribeScalingProcessTypesCommand";
|
|
39
|
+
import { type DescribeScheduledActionsCommandInput, type DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
|
|
40
|
+
import { type DescribeTagsCommandInput, type DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
41
|
+
import { type DescribeTerminationPolicyTypesCommandInput, type DescribeTerminationPolicyTypesCommandOutput } from "./commands/DescribeTerminationPolicyTypesCommand";
|
|
42
|
+
import { type DescribeTrafficSourcesCommandInput, type DescribeTrafficSourcesCommandOutput } from "./commands/DescribeTrafficSourcesCommand";
|
|
43
|
+
import { type DescribeWarmPoolCommandInput, type DescribeWarmPoolCommandOutput } from "./commands/DescribeWarmPoolCommand";
|
|
44
|
+
import { type DetachInstancesCommandInput, type DetachInstancesCommandOutput } from "./commands/DetachInstancesCommand";
|
|
45
|
+
import { type DetachLoadBalancersCommandInput, type DetachLoadBalancersCommandOutput } from "./commands/DetachLoadBalancersCommand";
|
|
46
|
+
import { type DetachLoadBalancerTargetGroupsCommandInput, type DetachLoadBalancerTargetGroupsCommandOutput } from "./commands/DetachLoadBalancerTargetGroupsCommand";
|
|
47
|
+
import { type DetachTrafficSourcesCommandInput, type DetachTrafficSourcesCommandOutput } from "./commands/DetachTrafficSourcesCommand";
|
|
48
|
+
import { type DisableMetricsCollectionCommandInput, type DisableMetricsCollectionCommandOutput } from "./commands/DisableMetricsCollectionCommand";
|
|
49
|
+
import { type EnableMetricsCollectionCommandInput, type EnableMetricsCollectionCommandOutput } from "./commands/EnableMetricsCollectionCommand";
|
|
50
|
+
import { type EnterStandbyCommandInput, type EnterStandbyCommandOutput } from "./commands/EnterStandbyCommand";
|
|
51
|
+
import { type ExecutePolicyCommandInput, type ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
52
|
+
import { type ExitStandbyCommandInput, type ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
53
|
+
import { type GetPredictiveScalingForecastCommandInput, type GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
54
|
+
import { type LaunchInstancesCommandInput, type LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
55
|
+
import { type PutLifecycleHookCommandInput, type PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
56
|
+
import { type PutNotificationConfigurationCommandInput, type PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
57
|
+
import { type PutScalingPolicyCommandInput, type PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
58
|
+
import { type PutScheduledUpdateGroupActionCommandInput, type PutScheduledUpdateGroupActionCommandOutput } from "./commands/PutScheduledUpdateGroupActionCommand";
|
|
59
|
+
import { type PutWarmPoolCommandInput, type PutWarmPoolCommandOutput } from "./commands/PutWarmPoolCommand";
|
|
60
|
+
import { type RecordLifecycleActionHeartbeatCommandInput, type RecordLifecycleActionHeartbeatCommandOutput } from "./commands/RecordLifecycleActionHeartbeatCommand";
|
|
61
|
+
import { type ResumeProcessesCommandInput, type ResumeProcessesCommandOutput } from "./commands/ResumeProcessesCommand";
|
|
62
|
+
import { type RollbackInstanceRefreshCommandInput, type RollbackInstanceRefreshCommandOutput } from "./commands/RollbackInstanceRefreshCommand";
|
|
63
|
+
import { type SetDesiredCapacityCommandInput, type SetDesiredCapacityCommandOutput } from "./commands/SetDesiredCapacityCommand";
|
|
64
|
+
import { type SetInstanceHealthCommandInput, type SetInstanceHealthCommandOutput } from "./commands/SetInstanceHealthCommand";
|
|
65
|
+
import { type SetInstanceProtectionCommandInput, type SetInstanceProtectionCommandOutput } from "./commands/SetInstanceProtectionCommand";
|
|
66
|
+
import { type StartInstanceRefreshCommandInput, type StartInstanceRefreshCommandOutput } from "./commands/StartInstanceRefreshCommand";
|
|
67
|
+
import { type SuspendProcessesCommandInput, type SuspendProcessesCommandOutput } from "./commands/SuspendProcessesCommand";
|
|
68
|
+
import { type TerminateInstanceInAutoScalingGroupCommandInput, type TerminateInstanceInAutoScalingGroupCommandOutput } from "./commands/TerminateInstanceInAutoScalingGroupCommand";
|
|
69
|
+
import { type UpdateAutoScalingGroupCommandInput, type UpdateAutoScalingGroupCommandOutput } from "./commands/UpdateAutoScalingGroupCommand";
|
|
70
70
|
export interface AutoScaling {
|
|
71
71
|
/**
|
|
72
72
|
* @see {@link AttachInstancesCommand}
|
|
@@ -5,75 +5,75 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AttachInstancesCommandInput, AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand";
|
|
11
|
-
import { AttachLoadBalancersCommandInput, AttachLoadBalancersCommandOutput } from "./commands/AttachLoadBalancersCommand";
|
|
12
|
-
import { AttachLoadBalancerTargetGroupsCommandInput, AttachLoadBalancerTargetGroupsCommandOutput } from "./commands/AttachLoadBalancerTargetGroupsCommand";
|
|
13
|
-
import { AttachTrafficSourcesCommandInput, AttachTrafficSourcesCommandOutput } from "./commands/AttachTrafficSourcesCommand";
|
|
14
|
-
import { BatchDeleteScheduledActionCommandInput, BatchDeleteScheduledActionCommandOutput } from "./commands/BatchDeleteScheduledActionCommand";
|
|
15
|
-
import { BatchPutScheduledUpdateGroupActionCommandInput, BatchPutScheduledUpdateGroupActionCommandOutput } from "./commands/BatchPutScheduledUpdateGroupActionCommand";
|
|
16
|
-
import { CancelInstanceRefreshCommandInput, CancelInstanceRefreshCommandOutput } from "./commands/CancelInstanceRefreshCommand";
|
|
17
|
-
import { CompleteLifecycleActionCommandInput, CompleteLifecycleActionCommandOutput } from "./commands/CompleteLifecycleActionCommand";
|
|
18
|
-
import { CreateAutoScalingGroupCommandInput, CreateAutoScalingGroupCommandOutput } from "./commands/CreateAutoScalingGroupCommand";
|
|
19
|
-
import { CreateLaunchConfigurationCommandInput, CreateLaunchConfigurationCommandOutput } from "./commands/CreateLaunchConfigurationCommand";
|
|
20
|
-
import { CreateOrUpdateTagsCommandInput, CreateOrUpdateTagsCommandOutput } from "./commands/CreateOrUpdateTagsCommand";
|
|
21
|
-
import { DeleteAutoScalingGroupCommandInput, DeleteAutoScalingGroupCommandOutput } from "./commands/DeleteAutoScalingGroupCommand";
|
|
22
|
-
import { DeleteLaunchConfigurationCommandInput, DeleteLaunchConfigurationCommandOutput } from "./commands/DeleteLaunchConfigurationCommand";
|
|
23
|
-
import { DeleteLifecycleHookCommandInput, DeleteLifecycleHookCommandOutput } from "./commands/DeleteLifecycleHookCommand";
|
|
24
|
-
import { DeleteNotificationConfigurationCommandInput, DeleteNotificationConfigurationCommandOutput } from "./commands/DeleteNotificationConfigurationCommand";
|
|
25
|
-
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
26
|
-
import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
|
|
27
|
-
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
28
|
-
import { DeleteWarmPoolCommandInput, DeleteWarmPoolCommandOutput } from "./commands/DeleteWarmPoolCommand";
|
|
29
|
-
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
|
|
30
|
-
import { DescribeAdjustmentTypesCommandInput, DescribeAdjustmentTypesCommandOutput } from "./commands/DescribeAdjustmentTypesCommand";
|
|
31
|
-
import { DescribeAutoScalingGroupsCommandInput, DescribeAutoScalingGroupsCommandOutput } from "./commands/DescribeAutoScalingGroupsCommand";
|
|
32
|
-
import { DescribeAutoScalingInstancesCommandInput, DescribeAutoScalingInstancesCommandOutput } from "./commands/DescribeAutoScalingInstancesCommand";
|
|
33
|
-
import { DescribeAutoScalingNotificationTypesCommandInput, DescribeAutoScalingNotificationTypesCommandOutput } from "./commands/DescribeAutoScalingNotificationTypesCommand";
|
|
34
|
-
import { DescribeInstanceRefreshesCommandInput, DescribeInstanceRefreshesCommandOutput } from "./commands/DescribeInstanceRefreshesCommand";
|
|
35
|
-
import { DescribeLaunchConfigurationsCommandInput, DescribeLaunchConfigurationsCommandOutput } from "./commands/DescribeLaunchConfigurationsCommand";
|
|
36
|
-
import { DescribeLifecycleHooksCommandInput, DescribeLifecycleHooksCommandOutput } from "./commands/DescribeLifecycleHooksCommand";
|
|
37
|
-
import { DescribeLifecycleHookTypesCommandInput, DescribeLifecycleHookTypesCommandOutput } from "./commands/DescribeLifecycleHookTypesCommand";
|
|
38
|
-
import { DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput } from "./commands/DescribeLoadBalancersCommand";
|
|
39
|
-
import { DescribeLoadBalancerTargetGroupsCommandInput, DescribeLoadBalancerTargetGroupsCommandOutput } from "./commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
40
|
-
import { DescribeMetricCollectionTypesCommandInput, DescribeMetricCollectionTypesCommandOutput } from "./commands/DescribeMetricCollectionTypesCommand";
|
|
41
|
-
import { DescribeNotificationConfigurationsCommandInput, DescribeNotificationConfigurationsCommandOutput } from "./commands/DescribeNotificationConfigurationsCommand";
|
|
42
|
-
import { DescribePoliciesCommandInput, DescribePoliciesCommandOutput } from "./commands/DescribePoliciesCommand";
|
|
43
|
-
import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
|
|
44
|
-
import { DescribeScalingProcessTypesCommandInput, DescribeScalingProcessTypesCommandOutput } from "./commands/DescribeScalingProcessTypesCommand";
|
|
45
|
-
import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
|
|
46
|
-
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
47
|
-
import { DescribeTerminationPolicyTypesCommandInput, DescribeTerminationPolicyTypesCommandOutput } from "./commands/DescribeTerminationPolicyTypesCommand";
|
|
48
|
-
import { DescribeTrafficSourcesCommandInput, DescribeTrafficSourcesCommandOutput } from "./commands/DescribeTrafficSourcesCommand";
|
|
49
|
-
import { DescribeWarmPoolCommandInput, DescribeWarmPoolCommandOutput } from "./commands/DescribeWarmPoolCommand";
|
|
50
|
-
import { DetachInstancesCommandInput, DetachInstancesCommandOutput } from "./commands/DetachInstancesCommand";
|
|
51
|
-
import { DetachLoadBalancersCommandInput, DetachLoadBalancersCommandOutput } from "./commands/DetachLoadBalancersCommand";
|
|
52
|
-
import { DetachLoadBalancerTargetGroupsCommandInput, DetachLoadBalancerTargetGroupsCommandOutput } from "./commands/DetachLoadBalancerTargetGroupsCommand";
|
|
53
|
-
import { DetachTrafficSourcesCommandInput, DetachTrafficSourcesCommandOutput } from "./commands/DetachTrafficSourcesCommand";
|
|
54
|
-
import { DisableMetricsCollectionCommandInput, DisableMetricsCollectionCommandOutput } from "./commands/DisableMetricsCollectionCommand";
|
|
55
|
-
import { EnableMetricsCollectionCommandInput, EnableMetricsCollectionCommandOutput } from "./commands/EnableMetricsCollectionCommand";
|
|
56
|
-
import { EnterStandbyCommandInput, EnterStandbyCommandOutput } from "./commands/EnterStandbyCommand";
|
|
57
|
-
import { ExecutePolicyCommandInput, ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
58
|
-
import { ExitStandbyCommandInput, ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
59
|
-
import { GetPredictiveScalingForecastCommandInput, GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
60
|
-
import { LaunchInstancesCommandInput, LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
61
|
-
import { PutLifecycleHookCommandInput, PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
62
|
-
import { PutNotificationConfigurationCommandInput, PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
63
|
-
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
64
|
-
import { PutScheduledUpdateGroupActionCommandInput, PutScheduledUpdateGroupActionCommandOutput } from "./commands/PutScheduledUpdateGroupActionCommand";
|
|
65
|
-
import { PutWarmPoolCommandInput, PutWarmPoolCommandOutput } from "./commands/PutWarmPoolCommand";
|
|
66
|
-
import { RecordLifecycleActionHeartbeatCommandInput, RecordLifecycleActionHeartbeatCommandOutput } from "./commands/RecordLifecycleActionHeartbeatCommand";
|
|
67
|
-
import { ResumeProcessesCommandInput, ResumeProcessesCommandOutput } from "./commands/ResumeProcessesCommand";
|
|
68
|
-
import { RollbackInstanceRefreshCommandInput, RollbackInstanceRefreshCommandOutput } from "./commands/RollbackInstanceRefreshCommand";
|
|
69
|
-
import { SetDesiredCapacityCommandInput, SetDesiredCapacityCommandOutput } from "./commands/SetDesiredCapacityCommand";
|
|
70
|
-
import { SetInstanceHealthCommandInput, SetInstanceHealthCommandOutput } from "./commands/SetInstanceHealthCommand";
|
|
71
|
-
import { SetInstanceProtectionCommandInput, SetInstanceProtectionCommandOutput } from "./commands/SetInstanceProtectionCommand";
|
|
72
|
-
import { StartInstanceRefreshCommandInput, StartInstanceRefreshCommandOutput } from "./commands/StartInstanceRefreshCommand";
|
|
73
|
-
import { SuspendProcessesCommandInput, SuspendProcessesCommandOutput } from "./commands/SuspendProcessesCommand";
|
|
74
|
-
import { TerminateInstanceInAutoScalingGroupCommandInput, TerminateInstanceInAutoScalingGroupCommandOutput } from "./commands/TerminateInstanceInAutoScalingGroupCommand";
|
|
75
|
-
import { UpdateAutoScalingGroupCommandInput, UpdateAutoScalingGroupCommandOutput } from "./commands/UpdateAutoScalingGroupCommand";
|
|
76
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AttachInstancesCommandInput, AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand";
|
|
11
|
+
import type { AttachLoadBalancersCommandInput, AttachLoadBalancersCommandOutput } from "./commands/AttachLoadBalancersCommand";
|
|
12
|
+
import type { AttachLoadBalancerTargetGroupsCommandInput, AttachLoadBalancerTargetGroupsCommandOutput } from "./commands/AttachLoadBalancerTargetGroupsCommand";
|
|
13
|
+
import type { AttachTrafficSourcesCommandInput, AttachTrafficSourcesCommandOutput } from "./commands/AttachTrafficSourcesCommand";
|
|
14
|
+
import type { BatchDeleteScheduledActionCommandInput, BatchDeleteScheduledActionCommandOutput } from "./commands/BatchDeleteScheduledActionCommand";
|
|
15
|
+
import type { BatchPutScheduledUpdateGroupActionCommandInput, BatchPutScheduledUpdateGroupActionCommandOutput } from "./commands/BatchPutScheduledUpdateGroupActionCommand";
|
|
16
|
+
import type { CancelInstanceRefreshCommandInput, CancelInstanceRefreshCommandOutput } from "./commands/CancelInstanceRefreshCommand";
|
|
17
|
+
import type { CompleteLifecycleActionCommandInput, CompleteLifecycleActionCommandOutput } from "./commands/CompleteLifecycleActionCommand";
|
|
18
|
+
import type { CreateAutoScalingGroupCommandInput, CreateAutoScalingGroupCommandOutput } from "./commands/CreateAutoScalingGroupCommand";
|
|
19
|
+
import type { CreateLaunchConfigurationCommandInput, CreateLaunchConfigurationCommandOutput } from "./commands/CreateLaunchConfigurationCommand";
|
|
20
|
+
import type { CreateOrUpdateTagsCommandInput, CreateOrUpdateTagsCommandOutput } from "./commands/CreateOrUpdateTagsCommand";
|
|
21
|
+
import type { DeleteAutoScalingGroupCommandInput, DeleteAutoScalingGroupCommandOutput } from "./commands/DeleteAutoScalingGroupCommand";
|
|
22
|
+
import type { DeleteLaunchConfigurationCommandInput, DeleteLaunchConfigurationCommandOutput } from "./commands/DeleteLaunchConfigurationCommand";
|
|
23
|
+
import type { DeleteLifecycleHookCommandInput, DeleteLifecycleHookCommandOutput } from "./commands/DeleteLifecycleHookCommand";
|
|
24
|
+
import type { DeleteNotificationConfigurationCommandInput, DeleteNotificationConfigurationCommandOutput } from "./commands/DeleteNotificationConfigurationCommand";
|
|
25
|
+
import type { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
26
|
+
import type { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
|
|
27
|
+
import type { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
28
|
+
import type { DeleteWarmPoolCommandInput, DeleteWarmPoolCommandOutput } from "./commands/DeleteWarmPoolCommand";
|
|
29
|
+
import type { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
|
|
30
|
+
import type { DescribeAdjustmentTypesCommandInput, DescribeAdjustmentTypesCommandOutput } from "./commands/DescribeAdjustmentTypesCommand";
|
|
31
|
+
import type { DescribeAutoScalingGroupsCommandInput, DescribeAutoScalingGroupsCommandOutput } from "./commands/DescribeAutoScalingGroupsCommand";
|
|
32
|
+
import type { DescribeAutoScalingInstancesCommandInput, DescribeAutoScalingInstancesCommandOutput } from "./commands/DescribeAutoScalingInstancesCommand";
|
|
33
|
+
import type { DescribeAutoScalingNotificationTypesCommandInput, DescribeAutoScalingNotificationTypesCommandOutput } from "./commands/DescribeAutoScalingNotificationTypesCommand";
|
|
34
|
+
import type { DescribeInstanceRefreshesCommandInput, DescribeInstanceRefreshesCommandOutput } from "./commands/DescribeInstanceRefreshesCommand";
|
|
35
|
+
import type { DescribeLaunchConfigurationsCommandInput, DescribeLaunchConfigurationsCommandOutput } from "./commands/DescribeLaunchConfigurationsCommand";
|
|
36
|
+
import type { DescribeLifecycleHooksCommandInput, DescribeLifecycleHooksCommandOutput } from "./commands/DescribeLifecycleHooksCommand";
|
|
37
|
+
import type { DescribeLifecycleHookTypesCommandInput, DescribeLifecycleHookTypesCommandOutput } from "./commands/DescribeLifecycleHookTypesCommand";
|
|
38
|
+
import type { DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput } from "./commands/DescribeLoadBalancersCommand";
|
|
39
|
+
import type { DescribeLoadBalancerTargetGroupsCommandInput, DescribeLoadBalancerTargetGroupsCommandOutput } from "./commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
40
|
+
import type { DescribeMetricCollectionTypesCommandInput, DescribeMetricCollectionTypesCommandOutput } from "./commands/DescribeMetricCollectionTypesCommand";
|
|
41
|
+
import type { DescribeNotificationConfigurationsCommandInput, DescribeNotificationConfigurationsCommandOutput } from "./commands/DescribeNotificationConfigurationsCommand";
|
|
42
|
+
import type { DescribePoliciesCommandInput, DescribePoliciesCommandOutput } from "./commands/DescribePoliciesCommand";
|
|
43
|
+
import type { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
|
|
44
|
+
import type { DescribeScalingProcessTypesCommandInput, DescribeScalingProcessTypesCommandOutput } from "./commands/DescribeScalingProcessTypesCommand";
|
|
45
|
+
import type { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
|
|
46
|
+
import type { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
47
|
+
import type { DescribeTerminationPolicyTypesCommandInput, DescribeTerminationPolicyTypesCommandOutput } from "./commands/DescribeTerminationPolicyTypesCommand";
|
|
48
|
+
import type { DescribeTrafficSourcesCommandInput, DescribeTrafficSourcesCommandOutput } from "./commands/DescribeTrafficSourcesCommand";
|
|
49
|
+
import type { DescribeWarmPoolCommandInput, DescribeWarmPoolCommandOutput } from "./commands/DescribeWarmPoolCommand";
|
|
50
|
+
import type { DetachInstancesCommandInput, DetachInstancesCommandOutput } from "./commands/DetachInstancesCommand";
|
|
51
|
+
import type { DetachLoadBalancersCommandInput, DetachLoadBalancersCommandOutput } from "./commands/DetachLoadBalancersCommand";
|
|
52
|
+
import type { DetachLoadBalancerTargetGroupsCommandInput, DetachLoadBalancerTargetGroupsCommandOutput } from "./commands/DetachLoadBalancerTargetGroupsCommand";
|
|
53
|
+
import type { DetachTrafficSourcesCommandInput, DetachTrafficSourcesCommandOutput } from "./commands/DetachTrafficSourcesCommand";
|
|
54
|
+
import type { DisableMetricsCollectionCommandInput, DisableMetricsCollectionCommandOutput } from "./commands/DisableMetricsCollectionCommand";
|
|
55
|
+
import type { EnableMetricsCollectionCommandInput, EnableMetricsCollectionCommandOutput } from "./commands/EnableMetricsCollectionCommand";
|
|
56
|
+
import type { EnterStandbyCommandInput, EnterStandbyCommandOutput } from "./commands/EnterStandbyCommand";
|
|
57
|
+
import type { ExecutePolicyCommandInput, ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
58
|
+
import type { ExitStandbyCommandInput, ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
59
|
+
import type { GetPredictiveScalingForecastCommandInput, GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
60
|
+
import type { LaunchInstancesCommandInput, LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
61
|
+
import type { PutLifecycleHookCommandInput, PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
62
|
+
import type { PutNotificationConfigurationCommandInput, PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
63
|
+
import type { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
64
|
+
import type { PutScheduledUpdateGroupActionCommandInput, PutScheduledUpdateGroupActionCommandOutput } from "./commands/PutScheduledUpdateGroupActionCommand";
|
|
65
|
+
import type { PutWarmPoolCommandInput, PutWarmPoolCommandOutput } from "./commands/PutWarmPoolCommand";
|
|
66
|
+
import type { RecordLifecycleActionHeartbeatCommandInput, RecordLifecycleActionHeartbeatCommandOutput } from "./commands/RecordLifecycleActionHeartbeatCommand";
|
|
67
|
+
import type { ResumeProcessesCommandInput, ResumeProcessesCommandOutput } from "./commands/ResumeProcessesCommand";
|
|
68
|
+
import type { RollbackInstanceRefreshCommandInput, RollbackInstanceRefreshCommandOutput } from "./commands/RollbackInstanceRefreshCommand";
|
|
69
|
+
import type { SetDesiredCapacityCommandInput, SetDesiredCapacityCommandOutput } from "./commands/SetDesiredCapacityCommand";
|
|
70
|
+
import type { SetInstanceHealthCommandInput, SetInstanceHealthCommandOutput } from "./commands/SetInstanceHealthCommand";
|
|
71
|
+
import type { SetInstanceProtectionCommandInput, SetInstanceProtectionCommandOutput } from "./commands/SetInstanceProtectionCommand";
|
|
72
|
+
import type { StartInstanceRefreshCommandInput, StartInstanceRefreshCommandOutput } from "./commands/StartInstanceRefreshCommand";
|
|
73
|
+
import type { SuspendProcessesCommandInput, SuspendProcessesCommandOutput } from "./commands/SuspendProcessesCommand";
|
|
74
|
+
import type { TerminateInstanceInAutoScalingGroupCommandInput, TerminateInstanceInAutoScalingGroupCommandOutput } from "./commands/TerminateInstanceInAutoScalingGroupCommand";
|
|
75
|
+
import type { UpdateAutoScalingGroupCommandInput, UpdateAutoScalingGroupCommandOutput } from "./commands/UpdateAutoScalingGroupCommand";
|
|
76
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
77
77
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
78
78
|
export { __Client };
|
|
79
79
|
/**
|
|
@@ -182,7 +182,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
182
182
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
183
183
|
* @internal
|
|
184
184
|
*/
|
|
185
|
-
defaultUserAgentProvider?:
|
|
185
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
186
186
|
/**
|
|
187
187
|
* Default credentials provider; Not available in browser runtime.
|
|
188
188
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { AutoScalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type AutoScalingClientResolvedConfig } from "../AutoScalingClient";
|
|
4
4
|
/**
|
|
@@ -196,7 +196,7 @@ declare const DescribeAutoScalingGroupsCommand_base: {
|
|
|
196
196
|
* // InstanceId: "STRING_VALUE", // required
|
|
197
197
|
* // InstanceType: "STRING_VALUE",
|
|
198
198
|
* // AvailabilityZone: "STRING_VALUE", // required
|
|
199
|
-
* // LifecycleState: "Pending" || "Pending:Wait" || "Pending:Proceed" || "Quarantined" || "InService" || "Terminating" || "Terminating:Wait" || "Terminating:Proceed" || "Terminated" || "Detaching" || "Detached" || "EnteringStandby" || "Standby" || "Warmed:Pending" || "Warmed:Pending:Wait" || "Warmed:Pending:Proceed" || "Warmed:Terminating" || "Warmed:Terminating:Wait" || "Warmed:Terminating:Proceed" || "Warmed:Terminated" || "Warmed:Stopped" || "Warmed:Running" || "Warmed:Hibernated", // required
|
|
199
|
+
* // LifecycleState: "Pending" || "Pending:Wait" || "Pending:Proceed" || "Quarantined" || "InService" || "Terminating" || "Terminating:Wait" || "Terminating:Proceed" || "Terminating:Retained" || "Terminated" || "Detaching" || "Detached" || "EnteringStandby" || "Standby" || "ReplacingRootVolume" || "ReplacingRootVolume:Wait" || "ReplacingRootVolume:Proceed" || "RootVolumeReplaced" || "Warmed:Pending" || "Warmed:Pending:Wait" || "Warmed:Pending:Proceed" || "Warmed:Pending:Retained" || "Warmed:Terminating" || "Warmed:Terminating:Wait" || "Warmed:Terminating:Proceed" || "Warmed:Terminating:Retained" || "Warmed:Terminated" || "Warmed:Stopped" || "Warmed:Running" || "Warmed:Hibernated", // required
|
|
200
200
|
* // HealthStatus: "STRING_VALUE", // required
|
|
201
201
|
* // LaunchConfigurationName: "STRING_VALUE",
|
|
202
202
|
* // LaunchTemplate: "<LaunchTemplateSpecification>",
|
|
@@ -60,7 +60,7 @@ declare const DescribeWarmPoolCommand_base: {
|
|
|
60
60
|
* // InstanceId: "STRING_VALUE", // required
|
|
61
61
|
* // InstanceType: "STRING_VALUE",
|
|
62
62
|
* // AvailabilityZone: "STRING_VALUE", // required
|
|
63
|
-
* // LifecycleState: "Pending" || "Pending:Wait" || "Pending:Proceed" || "Quarantined" || "InService" || "Terminating" || "Terminating:Wait" || "Terminating:Proceed" || "Terminated" || "Detaching" || "Detached" || "EnteringStandby" || "Standby" || "Warmed:Pending" || "Warmed:Pending:Wait" || "Warmed:Pending:Proceed" || "Warmed:Terminating" || "Warmed:Terminating:Wait" || "Warmed:Terminating:Proceed" || "Warmed:Terminated" || "Warmed:Stopped" || "Warmed:Running" || "Warmed:Hibernated", // required
|
|
63
|
+
* // LifecycleState: "Pending" || "Pending:Wait" || "Pending:Proceed" || "Quarantined" || "InService" || "Terminating" || "Terminating:Wait" || "Terminating:Proceed" || "Terminating:Retained" || "Terminated" || "Detaching" || "Detached" || "EnteringStandby" || "Standby" || "ReplacingRootVolume" || "ReplacingRootVolume:Wait" || "ReplacingRootVolume:Proceed" || "RootVolumeReplaced" || "Warmed:Pending" || "Warmed:Pending:Wait" || "Warmed:Pending:Proceed" || "Warmed:Pending:Retained" || "Warmed:Terminating" || "Warmed:Terminating:Wait" || "Warmed:Terminating:Proceed" || "Warmed:Terminating:Retained" || "Warmed:Terminated" || "Warmed:Stopped" || "Warmed:Running" || "Warmed:Hibernated", // required
|
|
64
64
|
* // HealthStatus: "STRING_VALUE", // required
|
|
65
65
|
* // LaunchConfigurationName: "STRING_VALUE",
|
|
66
66
|
* // LaunchTemplate: { // LaunchTemplateSpecification
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export * from "./AutoScalingClient";
|
|
12
12
|
export * from "./AutoScaling";
|
|
13
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
13
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
14
14
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
15
15
|
export type { AutoScalingExtensionConfiguration } from "./extensionConfiguration";
|
|
16
16
|
export * from "./commands";
|
|
@@ -245,20 +245,27 @@ export declare const LifecycleState: {
|
|
|
245
245
|
readonly PENDING_PROCEED: "Pending:Proceed";
|
|
246
246
|
readonly PENDING_WAIT: "Pending:Wait";
|
|
247
247
|
readonly QUARANTINED: "Quarantined";
|
|
248
|
+
readonly REPLACING_ROOT_VOLUME: "ReplacingRootVolume";
|
|
249
|
+
readonly REPLACING_ROOT_VOLUME_PROCEED: "ReplacingRootVolume:Proceed";
|
|
250
|
+
readonly REPLACING_ROOT_VOLUME_WAIT: "ReplacingRootVolume:Wait";
|
|
251
|
+
readonly ROOT_VOLUME_REPLACED: "RootVolumeReplaced";
|
|
248
252
|
readonly STANDBY: "Standby";
|
|
249
253
|
readonly TERMINATED: "Terminated";
|
|
250
254
|
readonly TERMINATING: "Terminating";
|
|
251
255
|
readonly TERMINATING_PROCEED: "Terminating:Proceed";
|
|
256
|
+
readonly TERMINATING_RETAINED: "Terminating:Retained";
|
|
252
257
|
readonly TERMINATING_WAIT: "Terminating:Wait";
|
|
253
258
|
readonly WARMED_HIBERNATED: "Warmed:Hibernated";
|
|
254
259
|
readonly WARMED_PENDING: "Warmed:Pending";
|
|
255
260
|
readonly WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed";
|
|
261
|
+
readonly WARMED_PENDING_RETAINED: "Warmed:Pending:Retained";
|
|
256
262
|
readonly WARMED_PENDING_WAIT: "Warmed:Pending:Wait";
|
|
257
263
|
readonly WARMED_RUNNING: "Warmed:Running";
|
|
258
264
|
readonly WARMED_STOPPED: "Warmed:Stopped";
|
|
259
265
|
readonly WARMED_TERMINATED: "Warmed:Terminated";
|
|
260
266
|
readonly WARMED_TERMINATING: "Warmed:Terminating";
|
|
261
267
|
readonly WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed";
|
|
268
|
+
readonly WARMED_TERMINATING_RETAINED: "Warmed:Terminating:Retained";
|
|
262
269
|
readonly WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait";
|
|
263
270
|
};
|
|
264
271
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AcceleratorManufacturer, AcceleratorName, AcceleratorType, BareMetal, BurstablePerformance, CapacityDistributionStrategy, CapacityReservationPreference, CpuManufacturer, DeletionProtection, ImpairedZoneHealthCheckBehavior, InstanceGeneration, InstanceMetadataEndpointState, InstanceMetadataHttpTokensState, InstanceRefreshStatus, LifecycleState, LocalStorage, LocalStorageType, MetricStatistic, MetricType, PredefinedLoadMetricType, PredefinedMetricPairType, PredefinedScalingMetricType, PredictiveScalingMaxCapacityBreachBehavior, PredictiveScalingMode, RefreshStrategy, RetentionAction, RetryStrategy, ScaleInProtectedInstances, ScalingActivityStatusCode, StandbyInstances, WarmPoolState, WarmPoolStatus } from "./enums";
|
|
1
|
+
import type { AcceleratorManufacturer, AcceleratorName, AcceleratorType, BareMetal, BurstablePerformance, CapacityDistributionStrategy, CapacityReservationPreference, CpuManufacturer, DeletionProtection, ImpairedZoneHealthCheckBehavior, InstanceGeneration, InstanceMetadataEndpointState, InstanceMetadataHttpTokensState, InstanceRefreshStatus, LifecycleState, LocalStorage, LocalStorageType, MetricStatistic, MetricType, PredefinedLoadMetricType, PredefinedMetricPairType, PredefinedScalingMetricType, PredictiveScalingMaxCapacityBreachBehavior, PredictiveScalingMode, RefreshStrategy, RetentionAction, RetryStrategy, ScaleInProtectedInstances, ScalingActivityStatusCode, StandbyInstances, WarmPoolState, WarmPoolStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Specifies the minimum and maximum for the <code>AcceleratorCount</code> object when
|
|
4
4
|
* you specify <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html">InstanceRequirements</a> for an Auto Scaling group.</p>
|
|
@@ -1921,6 +1921,12 @@ export interface CreateAutoScalingGroupType {
|
|
|
1921
1921
|
* <p>
|
|
1922
1922
|
* Default: <code>none</code>
|
|
1923
1923
|
* </p>
|
|
1924
|
+
* <p>
|
|
1925
|
+
* For more information, see
|
|
1926
|
+
* <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/resource-deletion-protection.html">
|
|
1927
|
+
* Configure deletion protection for your Amazon EC2 Auto Scaling resources</a>
|
|
1928
|
+
* in the <i>Amazon EC2 Auto Scaling User Guide</i>.
|
|
1929
|
+
* </p>
|
|
1924
1930
|
* @public
|
|
1925
1931
|
*/
|
|
1926
1932
|
DeletionProtection?: DeletionProtection | undefined;
|
|
@@ -2703,6 +2709,22 @@ export interface Filter {
|
|
|
2703
2709
|
* </p>
|
|
2704
2710
|
* </li>
|
|
2705
2711
|
* </ul>
|
|
2712
|
+
* <p>
|
|
2713
|
+
* <code>StartTimeLowerBound</code> and <code>StartTimeUpperBound</code> accept ISO 8601 formatted timestamps.
|
|
2714
|
+
* Timestamps without a timezone offset are assumed to be UTC.
|
|
2715
|
+
* </p>
|
|
2716
|
+
* <ul>
|
|
2717
|
+
* <li>
|
|
2718
|
+
* <p>
|
|
2719
|
+
* <code>2000-01-18T08:15:00Z</code>
|
|
2720
|
+
* </p>
|
|
2721
|
+
* </li>
|
|
2722
|
+
* <li>
|
|
2723
|
+
* <p>
|
|
2724
|
+
* <code>2000-01-18T16:15:00+08:00</code>
|
|
2725
|
+
* </p>
|
|
2726
|
+
* </li>
|
|
2727
|
+
* </ul>
|
|
2706
2728
|
* @public
|
|
2707
2729
|
*/
|
|
2708
2730
|
Name?: string | undefined;
|
|
@@ -3331,13 +3353,14 @@ export interface AutoScalingInstanceDetails {
|
|
|
3331
3353
|
* <p>Valid values: <code>Pending</code> | <code>Pending:Wait</code> |
|
|
3332
3354
|
* <code>Pending:Proceed</code> | <code>Quarantined</code> | <code>InService</code> |
|
|
3333
3355
|
* <code>Terminating</code> | <code>Terminating:Wait</code> |
|
|
3334
|
-
* <code>Terminating:Proceed</code> | <code>Terminating:Retained</code> | <code>Terminated</code> | <code>Detaching</code>
|
|
3335
|
-
*
|
|
3356
|
+
* <code>Terminating:Proceed</code> | <code>Terminating:Retained</code> | <code>Terminated</code> | <code>Detaching</code> |
|
|
3357
|
+
* <code>Detached</code> | <code>EnteringStandby</code> | <code>Standby</code> |
|
|
3358
|
+
* <code>ReplacingRootVolume</code> | <code>ReplacingRootVolume:Wait</code> | <code>ReplacingRootVolume:Proceed</code> | <code>RootVolumeReplaced</code> |
|
|
3336
3359
|
* <code>Warmed:Pending</code> | <code>Warmed:Pending:Wait</code> |
|
|
3337
3360
|
* <code>Warmed:Pending:Proceed</code> | <code>Warmed:Pending:Retained</code> | <code>Warmed:Terminating</code> |
|
|
3338
3361
|
* <code>Warmed:Terminating:Wait</code> | <code>Warmed:Terminating:Proceed</code> | <code>Warmed:Terminating:Retained</code> |
|
|
3339
3362
|
* <code>Warmed:Terminated</code> | <code>Warmed:Stopped</code> |
|
|
3340
|
-
* <code>Warmed:Running</code>
|
|
3363
|
+
* <code>Warmed:Running</code> | <code>Warmed:Hibernated</code>
|
|
3341
3364
|
* </p>
|
|
3342
3365
|
* @public
|
|
3343
3366
|
*/
|
|
@@ -5644,6 +5667,22 @@ export interface DescribeScalingActivitiesType {
|
|
|
5644
5667
|
* </p>
|
|
5645
5668
|
* </li>
|
|
5646
5669
|
* </ul>
|
|
5670
|
+
* <p>
|
|
5671
|
+
* <code>StartTimeLowerBound</code> and <code>StartTimeUpperBound</code> accept ISO 8601 formatted timestamps.
|
|
5672
|
+
* Timestamps without a timezone offset are assumed to be UTC.
|
|
5673
|
+
* </p>
|
|
5674
|
+
* <ul>
|
|
5675
|
+
* <li>
|
|
5676
|
+
* <p>
|
|
5677
|
+
* <code>2000-01-18T08:15:00Z</code>
|
|
5678
|
+
* </p>
|
|
5679
|
+
* </li>
|
|
5680
|
+
* <li>
|
|
5681
|
+
* <p>
|
|
5682
|
+
* <code>2000-01-18T16:15:00+08:00</code>
|
|
5683
|
+
* </p>
|
|
5684
|
+
* </li>
|
|
5685
|
+
* </ul>
|
|
5647
5686
|
* @public
|
|
5648
5687
|
*/
|
|
5649
5688
|
Filters?: Filter[] | undefined;
|
|
@@ -7783,6 +7822,12 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7783
7822
|
* <p>
|
|
7784
7823
|
* Default: <code>none</code>
|
|
7785
7824
|
* </p>
|
|
7825
|
+
* <p>
|
|
7826
|
+
* For more information, see
|
|
7827
|
+
* <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/resource-deletion-protection.html">
|
|
7828
|
+
* Configure deletion protection for your Amazon EC2 Auto Scaling resources</a>
|
|
7829
|
+
* in the <i>Amazon EC2 Auto Scaling User Guide</i>.
|
|
7830
|
+
* </p>
|
|
7786
7831
|
* @public
|
|
7787
7832
|
*/
|
|
7788
7833
|
DeletionProtection?: DeletionProtection | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeAutoScalingGroupsCommandInput, DescribeAutoScalingGroupsCommandOutput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeAutoScalingInstancesCommandInput, DescribeAutoScalingInstancesCommandOutput } from "../commands/DescribeAutoScalingInstancesCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeInstanceRefreshesCommandInput, DescribeInstanceRefreshesCommandOutput } from "../commands/DescribeInstanceRefreshesCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeLaunchConfigurationsCommandInput, DescribeLaunchConfigurationsCommandOutput } from "../commands/DescribeLaunchConfigurationsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeLoadBalancerTargetGroupsCommandInput, DescribeLoadBalancerTargetGroupsCommandOutput } from "../commands/DescribeLoadBalancerTargetGroupsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput } from "../commands/DescribeLoadBalancersCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeNotificationConfigurationsCommandInput, DescribeNotificationConfigurationsCommandOutput } from "../commands/DescribeNotificationConfigurationsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribePoliciesCommandInput, DescribePoliciesCommandOutput } from "../commands/DescribePoliciesCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "../commands/DescribeScalingActivitiesCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "../commands/DescribeScheduledActionsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "../commands/DescribeTagsCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeTrafficSourcesCommandInput, DescribeTrafficSourcesCommandOutput } from "../commands/DescribeTrafficSourcesCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeWarmPoolCommandInput, DescribeWarmPoolCommandOutput } from "../commands/DescribeWarmPoolCommand";
|
|
3
|
-
import { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { AutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -468,7 +467,7 @@ export interface ClientDefaults
|
|
|
468
467
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
469
468
|
region?: string | __Provider<string>;
|
|
470
469
|
profile?: string;
|
|
471
|
-
defaultUserAgentProvider?:
|
|
470
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
472
471
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
473
472
|
maxAttempts?: number | __Provider<number>;
|
|
474
473
|
retryMode?: string | __Provider<string>;
|
|
@@ -137,20 +137,27 @@ export declare const LifecycleState: {
|
|
|
137
137
|
readonly PENDING_PROCEED: "Pending:Proceed";
|
|
138
138
|
readonly PENDING_WAIT: "Pending:Wait";
|
|
139
139
|
readonly QUARANTINED: "Quarantined";
|
|
140
|
+
readonly REPLACING_ROOT_VOLUME: "ReplacingRootVolume";
|
|
141
|
+
readonly REPLACING_ROOT_VOLUME_PROCEED: "ReplacingRootVolume:Proceed";
|
|
142
|
+
readonly REPLACING_ROOT_VOLUME_WAIT: "ReplacingRootVolume:Wait";
|
|
143
|
+
readonly ROOT_VOLUME_REPLACED: "RootVolumeReplaced";
|
|
140
144
|
readonly STANDBY: "Standby";
|
|
141
145
|
readonly TERMINATED: "Terminated";
|
|
142
146
|
readonly TERMINATING: "Terminating";
|
|
143
147
|
readonly TERMINATING_PROCEED: "Terminating:Proceed";
|
|
148
|
+
readonly TERMINATING_RETAINED: "Terminating:Retained";
|
|
144
149
|
readonly TERMINATING_WAIT: "Terminating:Wait";
|
|
145
150
|
readonly WARMED_HIBERNATED: "Warmed:Hibernated";
|
|
146
151
|
readonly WARMED_PENDING: "Warmed:Pending";
|
|
147
152
|
readonly WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed";
|
|
153
|
+
readonly WARMED_PENDING_RETAINED: "Warmed:Pending:Retained";
|
|
148
154
|
readonly WARMED_PENDING_WAIT: "Warmed:Pending:Wait";
|
|
149
155
|
readonly WARMED_RUNNING: "Warmed:Running";
|
|
150
156
|
readonly WARMED_STOPPED: "Warmed:Stopped";
|
|
151
157
|
readonly WARMED_TERMINATED: "Warmed:Terminated";
|
|
152
158
|
readonly WARMED_TERMINATING: "Warmed:Terminating";
|
|
153
159
|
readonly WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed";
|
|
160
|
+
readonly WARMED_TERMINATING_RETAINED: "Warmed:Terminating:Retained";
|
|
154
161
|
readonly WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait";
|
|
155
162
|
};
|
|
156
163
|
export type LifecycleState =
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsQueryProtocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilGroupExists instead. waitForGroupExists does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilGroupInService instead. waitForGroupInService does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilGroupNotExists instead. waitForGroupNotExists does not throw error in non-success cases.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1020.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-auto-scaling",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.14",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|