@aws-sdk/client-auto-scaling 3.1036.0 → 3.1038.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-types/AutoScaling.d.ts +3 -3
- package/dist-types/ts3.4/AutoScaling.d.ts +3 -3
- package/dist-types/ts3.4/waiters/waitForGroupExists.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForGroupInService.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForGroupNotExists.d.ts +11 -3
- package/dist-types/waiters/waitForGroupExists.d.ts +4 -3
- package/dist-types/waiters/waitForGroupInService.d.ts +4 -3
- package/dist-types/waiters/waitForGroupNotExists.d.ts +4 -3
- package/package.json +8 -8
|
@@ -575,19 +575,19 @@ export interface AutoScaling {
|
|
|
575
575
|
* @param args - command input.
|
|
576
576
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
577
577
|
*/
|
|
578
|
-
waitUntilGroupExists(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult
|
|
578
|
+
waitUntilGroupExists(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
579
579
|
/**
|
|
580
580
|
* @see {@link DescribeAutoScalingGroupsCommand}
|
|
581
581
|
* @param args - command input.
|
|
582
582
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
583
583
|
*/
|
|
584
|
-
waitUntilGroupInService(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult
|
|
584
|
+
waitUntilGroupInService(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
585
585
|
/**
|
|
586
586
|
* @see {@link DescribeAutoScalingGroupsCommand}
|
|
587
587
|
* @param args - command input.
|
|
588
588
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
589
589
|
*/
|
|
590
|
-
waitUntilGroupNotExists(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult
|
|
590
|
+
waitUntilGroupNotExists(args: DescribeAutoScalingGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AutoScaling>, "client">): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
593
|
* <fullname>Amazon EC2 Auto Scaling</fullname>
|
|
@@ -1267,7 +1267,7 @@ export interface AutoScaling {
|
|
|
1267
1267
|
WaiterConfiguration<AutoScaling>,
|
|
1268
1268
|
Exclude<keyof WaiterConfiguration<AutoScaling>, "client">
|
|
1269
1269
|
>
|
|
1270
|
-
): Promise<WaiterResult
|
|
1270
|
+
): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
1271
1271
|
waitUntilGroupInService(
|
|
1272
1272
|
args: DescribeAutoScalingGroupsCommandInput,
|
|
1273
1273
|
waiterConfig:
|
|
@@ -1276,7 +1276,7 @@ export interface AutoScaling {
|
|
|
1276
1276
|
WaiterConfiguration<AutoScaling>,
|
|
1277
1277
|
Exclude<keyof WaiterConfiguration<AutoScaling>, "client">
|
|
1278
1278
|
>
|
|
1279
|
-
): Promise<WaiterResult
|
|
1279
|
+
): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
1280
1280
|
waitUntilGroupNotExists(
|
|
1281
1281
|
args: DescribeAutoScalingGroupsCommandInput,
|
|
1282
1282
|
waiterConfig:
|
|
@@ -1285,7 +1285,7 @@ export interface AutoScaling {
|
|
|
1285
1285
|
WaiterConfiguration<AutoScaling>,
|
|
1286
1286
|
Exclude<keyof WaiterConfiguration<AutoScaling>, "client">
|
|
1287
1287
|
>
|
|
1288
|
-
): Promise<WaiterResult
|
|
1288
|
+
): Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
1289
1289
|
}
|
|
1290
1290
|
export declare class AutoScaling
|
|
1291
1291
|
extends AutoScalingClient
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
DescribeAutoScalingGroupsCommandInput,
|
|
5
|
+
DescribeAutoScalingGroupsCommandOutput,
|
|
6
|
+
} from "../commands/DescribeAutoScalingGroupsCommand";
|
|
7
|
+
import { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
8
|
export declare const waitForGroupExists: (
|
|
5
9
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
6
10
|
input: DescribeAutoScalingGroupsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilGroupExists: (
|
|
9
17
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
10
18
|
input: DescribeAutoScalingGroupsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
DescribeAutoScalingGroupsCommandInput,
|
|
5
|
+
DescribeAutoScalingGroupsCommandOutput,
|
|
6
|
+
} from "../commands/DescribeAutoScalingGroupsCommand";
|
|
7
|
+
import { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
8
|
export declare const waitForGroupInService: (
|
|
5
9
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
6
10
|
input: DescribeAutoScalingGroupsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilGroupInService: (
|
|
9
17
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
10
18
|
input: DescribeAutoScalingGroupsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
DescribeAutoScalingGroupsCommandInput,
|
|
5
|
+
DescribeAutoScalingGroupsCommandOutput,
|
|
6
|
+
} from "../commands/DescribeAutoScalingGroupsCommand";
|
|
7
|
+
import { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
8
|
export declare const waitForGroupNotExists: (
|
|
5
9
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
6
10
|
input: DescribeAutoScalingGroupsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilGroupNotExists: (
|
|
9
17
|
params: WaiterConfiguration<AutoScalingClient>,
|
|
10
18
|
input: DescribeAutoScalingGroupsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput, type DescribeAutoScalingGroupsCommandOutput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
|
+
import type { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilGroupExists instead. waitForGroupExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForGroupExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForGroupExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeAutoScalingGroupsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilGroupExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilGroupExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput, type DescribeAutoScalingGroupsCommandOutput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
|
+
import type { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilGroupInService instead. waitForGroupInService does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForGroupInService: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForGroupInService: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeAutoScalingGroupsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilGroupInService: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilGroupInService: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { AutoScalingClient } from "../AutoScalingClient";
|
|
3
|
-
import { type DescribeAutoScalingGroupsCommandInput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
3
|
+
import { type DescribeAutoScalingGroupsCommandInput, type DescribeAutoScalingGroupsCommandOutput } from "../commands/DescribeAutoScalingGroupsCommand";
|
|
4
|
+
import type { AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilGroupNotExists instead. waitForGroupNotExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForGroupNotExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForGroupNotExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput | AutoScalingServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeAutoScalingGroupsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilGroupNotExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilGroupNotExists: (params: WaiterConfiguration<AutoScalingClient>, input: DescribeAutoScalingGroupsCommandInput) => Promise<WaiterResult<DescribeAutoScalingGroupsCommandOutput>>;
|
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.1038.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,17 +21,17 @@
|
|
|
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.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.6",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.36",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.22",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
36
|
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.6",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.5",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.
|
|
60
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|