@aws-sdk/client-auto-scaling 3.42.0 → 3.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +46 -64
- package/dist-cjs/protocols/Aws_query.js +247 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +28 -40
- package/dist-es/protocols/Aws_query.js +355 -87
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/AutoScaling.d.ts +25 -20
- package/dist-types/AutoScalingClient.d.ts +5 -1
- package/dist-types/commands/AttachLoadBalancerTargetGroupsCommand.d.ts +2 -0
- package/dist-types/commands/AttachLoadBalancersCommand.d.ts +2 -0
- package/dist-types/commands/CompleteLifecycleActionCommand.d.ts +6 -5
- package/dist-types/commands/PutLifecycleHookCommand.d.ts +8 -8
- package/dist-types/commands/RecordLifecycleActionHeartbeatCommand.d.ts +5 -6
- package/dist-types/commands/SetInstanceProtectionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +273 -154
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/AutoScalingClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +87 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { AutoScalingClientConfig } from "./AutoScalingClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { AutoScalingClientConfig } from "./AutoScalingClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AttachInstancesCommandInput, AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand";
|
|
10
10
|
import { AttachLoadBalancersCommandInput, AttachLoadBalancersCommandOutput } from "./commands/AttachLoadBalancersCommand";
|
|
@@ -112,6 +112,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
112
112
|
regionInfoProvider?: RegionInfoProvider;
|
|
113
113
|
|
|
114
114
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
115
|
+
|
|
116
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
115
117
|
}
|
|
116
118
|
declare type AutoScalingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
117
119
|
|
|
@@ -47,10 +47,6 @@ export interface ActiveInstanceRefreshNotFoundFault extends __SmithyException, $
|
|
|
47
47
|
$fault: "client";
|
|
48
48
|
message?: string;
|
|
49
49
|
}
|
|
50
|
-
export declare namespace ActiveInstanceRefreshNotFoundFault {
|
|
51
|
-
|
|
52
|
-
const filterSensitiveLog: (obj: ActiveInstanceRefreshNotFoundFault) => any;
|
|
53
|
-
}
|
|
54
50
|
export declare enum ScalingActivityStatusCode {
|
|
55
51
|
Cancelled = "Cancelled",
|
|
56
52
|
Failed = "Failed",
|
|
@@ -141,10 +137,6 @@ export interface AlreadyExistsFault extends __SmithyException, $MetadataBearer {
|
|
|
141
137
|
|
|
142
138
|
message?: string;
|
|
143
139
|
}
|
|
144
|
-
export declare namespace AlreadyExistsFault {
|
|
145
|
-
|
|
146
|
-
const filterSensitiveLog: (obj: AlreadyExistsFault) => any;
|
|
147
|
-
}
|
|
148
140
|
export interface AttachInstancesQuery {
|
|
149
141
|
|
|
150
142
|
InstanceIds?: string[];
|
|
@@ -162,20 +154,12 @@ export interface ResourceContentionFault extends __SmithyException, $MetadataBea
|
|
|
162
154
|
|
|
163
155
|
message?: string;
|
|
164
156
|
}
|
|
165
|
-
export declare namespace ResourceContentionFault {
|
|
166
|
-
|
|
167
|
-
const filterSensitiveLog: (obj: ResourceContentionFault) => any;
|
|
168
|
-
}
|
|
169
157
|
|
|
170
158
|
export interface ServiceLinkedRoleFailure extends __SmithyException, $MetadataBearer {
|
|
171
159
|
name: "ServiceLinkedRoleFailure";
|
|
172
160
|
$fault: "server";
|
|
173
161
|
message?: string;
|
|
174
162
|
}
|
|
175
|
-
export declare namespace ServiceLinkedRoleFailure {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: ServiceLinkedRoleFailure) => any;
|
|
178
|
-
}
|
|
179
163
|
export interface AttachLoadBalancersResultType {
|
|
180
164
|
}
|
|
181
165
|
export declare namespace AttachLoadBalancersResultType {
|
|
@@ -287,10 +271,6 @@ export interface LimitExceededFault extends __SmithyException, $MetadataBearer {
|
|
|
287
271
|
|
|
288
272
|
message?: string;
|
|
289
273
|
}
|
|
290
|
-
export declare namespace LimitExceededFault {
|
|
291
|
-
|
|
292
|
-
const filterSensitiveLog: (obj: LimitExceededFault) => any;
|
|
293
|
-
}
|
|
294
274
|
export interface CancelInstanceRefreshAnswer {
|
|
295
275
|
|
|
296
276
|
InstanceRefreshId?: string;
|
|
@@ -760,10 +740,6 @@ export interface ResourceInUseFault extends __SmithyException, $MetadataBearer {
|
|
|
760
740
|
|
|
761
741
|
message?: string;
|
|
762
742
|
}
|
|
763
|
-
export declare namespace ResourceInUseFault {
|
|
764
|
-
|
|
765
|
-
const filterSensitiveLog: (obj: ResourceInUseFault) => any;
|
|
766
|
-
}
|
|
767
743
|
export interface DeleteAutoScalingGroupType {
|
|
768
744
|
|
|
769
745
|
AutoScalingGroupName: string | undefined;
|
|
@@ -781,10 +757,6 @@ export interface ScalingActivityInProgressFault extends __SmithyException, $Meta
|
|
|
781
757
|
|
|
782
758
|
message?: string;
|
|
783
759
|
}
|
|
784
|
-
export declare namespace ScalingActivityInProgressFault {
|
|
785
|
-
|
|
786
|
-
const filterSensitiveLog: (obj: ScalingActivityInProgressFault) => any;
|
|
787
|
-
}
|
|
788
760
|
export interface LaunchConfigurationNameType {
|
|
789
761
|
|
|
790
762
|
LaunchConfigurationName: string | undefined;
|
|
@@ -1108,10 +1080,6 @@ export interface InvalidNextToken extends __SmithyException, $MetadataBearer {
|
|
|
1108
1080
|
|
|
1109
1081
|
message?: string;
|
|
1110
1082
|
}
|
|
1111
|
-
export declare namespace InvalidNextToken {
|
|
1112
|
-
|
|
1113
|
-
const filterSensitiveLog: (obj: InvalidNextToken) => any;
|
|
1114
|
-
}
|
|
1115
1083
|
|
|
1116
1084
|
export interface AutoScalingInstanceDetails {
|
|
1117
1085
|
|
|
@@ -1560,6 +1528,87 @@ export declare enum PredictiveScalingMaxCapacityBreachBehavior {
|
|
|
1560
1528
|
HonorMaxCapacity = "HonorMaxCapacity",
|
|
1561
1529
|
IncreaseMaxCapacity = "IncreaseMaxCapacity"
|
|
1562
1530
|
}
|
|
1531
|
+
|
|
1532
|
+
export interface MetricDimension {
|
|
1533
|
+
|
|
1534
|
+
Name: string | undefined;
|
|
1535
|
+
|
|
1536
|
+
Value: string | undefined;
|
|
1537
|
+
}
|
|
1538
|
+
export declare namespace MetricDimension {
|
|
1539
|
+
|
|
1540
|
+
const filterSensitiveLog: (obj: MetricDimension) => any;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
export interface Metric {
|
|
1544
|
+
|
|
1545
|
+
Namespace: string | undefined;
|
|
1546
|
+
|
|
1547
|
+
MetricName: string | undefined;
|
|
1548
|
+
|
|
1549
|
+
Dimensions?: MetricDimension[];
|
|
1550
|
+
}
|
|
1551
|
+
export declare namespace Metric {
|
|
1552
|
+
|
|
1553
|
+
const filterSensitiveLog: (obj: Metric) => any;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
export interface MetricStat {
|
|
1557
|
+
|
|
1558
|
+
Metric: Metric | undefined;
|
|
1559
|
+
|
|
1560
|
+
Stat: string | undefined;
|
|
1561
|
+
|
|
1562
|
+
Unit?: string;
|
|
1563
|
+
}
|
|
1564
|
+
export declare namespace MetricStat {
|
|
1565
|
+
|
|
1566
|
+
const filterSensitiveLog: (obj: MetricStat) => any;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
export interface MetricDataQuery {
|
|
1570
|
+
|
|
1571
|
+
Id: string | undefined;
|
|
1572
|
+
|
|
1573
|
+
Expression?: string;
|
|
1574
|
+
|
|
1575
|
+
MetricStat?: MetricStat;
|
|
1576
|
+
|
|
1577
|
+
Label?: string;
|
|
1578
|
+
|
|
1579
|
+
ReturnData?: boolean;
|
|
1580
|
+
}
|
|
1581
|
+
export declare namespace MetricDataQuery {
|
|
1582
|
+
|
|
1583
|
+
const filterSensitiveLog: (obj: MetricDataQuery) => any;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
export interface PredictiveScalingCustomizedCapacityMetric {
|
|
1587
|
+
|
|
1588
|
+
MetricDataQueries: MetricDataQuery[] | undefined;
|
|
1589
|
+
}
|
|
1590
|
+
export declare namespace PredictiveScalingCustomizedCapacityMetric {
|
|
1591
|
+
|
|
1592
|
+
const filterSensitiveLog: (obj: PredictiveScalingCustomizedCapacityMetric) => any;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
export interface PredictiveScalingCustomizedLoadMetric {
|
|
1596
|
+
|
|
1597
|
+
MetricDataQueries: MetricDataQuery[] | undefined;
|
|
1598
|
+
}
|
|
1599
|
+
export declare namespace PredictiveScalingCustomizedLoadMetric {
|
|
1600
|
+
|
|
1601
|
+
const filterSensitiveLog: (obj: PredictiveScalingCustomizedLoadMetric) => any;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
export interface PredictiveScalingCustomizedScalingMetric {
|
|
1605
|
+
|
|
1606
|
+
MetricDataQueries: MetricDataQuery[] | undefined;
|
|
1607
|
+
}
|
|
1608
|
+
export declare namespace PredictiveScalingCustomizedScalingMetric {
|
|
1609
|
+
|
|
1610
|
+
const filterSensitiveLog: (obj: PredictiveScalingCustomizedScalingMetric) => any;
|
|
1611
|
+
}
|
|
1563
1612
|
export declare enum PredefinedLoadMetricType {
|
|
1564
1613
|
ALBTargetGroupRequestCount = "ALBTargetGroupRequestCount",
|
|
1565
1614
|
ASGTotalCPUUtilization = "ASGTotalCPUUtilization",
|
|
@@ -1621,6 +1670,12 @@ export interface PredictiveScalingMetricSpecification {
|
|
|
1621
1670
|
PredefinedScalingMetricSpecification?: PredictiveScalingPredefinedScalingMetric;
|
|
1622
1671
|
|
|
1623
1672
|
PredefinedLoadMetricSpecification?: PredictiveScalingPredefinedLoadMetric;
|
|
1673
|
+
|
|
1674
|
+
CustomizedScalingMetricSpecification?: PredictiveScalingCustomizedScalingMetric;
|
|
1675
|
+
|
|
1676
|
+
CustomizedLoadMetricSpecification?: PredictiveScalingCustomizedLoadMetric;
|
|
1677
|
+
|
|
1678
|
+
CustomizedCapacityMetricSpecification?: PredictiveScalingCustomizedCapacityMetric;
|
|
1624
1679
|
}
|
|
1625
1680
|
export declare namespace PredictiveScalingMetricSpecification {
|
|
1626
1681
|
|
|
@@ -1660,17 +1715,6 @@ export declare namespace StepAdjustment {
|
|
|
1660
1715
|
|
|
1661
1716
|
const filterSensitiveLog: (obj: StepAdjustment) => any;
|
|
1662
1717
|
}
|
|
1663
|
-
|
|
1664
|
-
export interface MetricDimension {
|
|
1665
|
-
|
|
1666
|
-
Name: string | undefined;
|
|
1667
|
-
|
|
1668
|
-
Value: string | undefined;
|
|
1669
|
-
}
|
|
1670
|
-
export declare namespace MetricDimension {
|
|
1671
|
-
|
|
1672
|
-
const filterSensitiveLog: (obj: MetricDimension) => any;
|
|
1673
|
-
}
|
|
1674
1718
|
export declare enum MetricStatistic {
|
|
1675
1719
|
Average = "Average",
|
|
1676
1720
|
Maximum = "Maximum",
|
|
@@ -2307,10 +2351,6 @@ export interface InstanceRefreshInProgressFault extends __SmithyException, $Meta
|
|
|
2307
2351
|
$fault: "client";
|
|
2308
2352
|
message?: string;
|
|
2309
2353
|
}
|
|
2310
|
-
export declare namespace InstanceRefreshInProgressFault {
|
|
2311
|
-
|
|
2312
|
-
const filterSensitiveLog: (obj: InstanceRefreshInProgressFault) => any;
|
|
2313
|
-
}
|
|
2314
2354
|
export interface StartInstanceRefreshAnswer {
|
|
2315
2355
|
|
|
2316
2356
|
InstanceRefreshId?: string;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { AutoScalingClientConfig } from "./AutoScalingClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { AutoScalingClientConfig } from "./AutoScalingClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: AutoScalingClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
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.47.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,51 +18,47 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
52
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.0",
|
|
39
|
+
"@aws-sdk/types": "3.47.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.0",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.47.0",
|
|
53
52
|
"entities": "2.2.0",
|
|
54
53
|
"fast-xml-parser": "3.19.0",
|
|
55
54
|
"tslib": "^2.3.0"
|
|
56
55
|
},
|
|
57
56
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
-
"@types/node": "^12.7.5"
|
|
60
|
-
"downlevel-dts": "0.7.0",
|
|
61
|
-
"jest": "^26.1.0",
|
|
62
|
-
"rimraf": "^3.0.0",
|
|
63
|
-
"ts-jest": "^26.4.1",
|
|
64
|
-
"typedoc": "^0.19.2",
|
|
65
|
-
"typescript": "~4.3.5"
|
|
57
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.0",
|
|
58
|
+
"@types/node": "^12.7.5"
|
|
66
59
|
},
|
|
67
60
|
"engines": {
|
|
68
|
-
"node": ">=
|
|
61
|
+
"node": ">=12.0.0"
|
|
69
62
|
},
|
|
70
63
|
"typesVersions": {
|
|
71
64
|
"<4.0": {
|