@aws-sdk/client-elastic-beanstalk 3.1037.0 → 3.1039.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/ElasticBeanstalk.d.ts +3 -3
- package/dist-types/ts3.4/ElasticBeanstalk.d.ts +3 -3
- package/dist-types/ts3.4/waiters/waitForEnvironmentExists.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForEnvironmentTerminated.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForEnvironmentUpdated.d.ts +12 -3
- package/dist-types/waiters/waitForEnvironmentExists.d.ts +4 -3
- package/dist-types/waiters/waitForEnvironmentTerminated.d.ts +4 -3
- package/dist-types/waiters/waitForEnvironmentUpdated.d.ts +4 -3
- package/package.json +8 -8
|
@@ -388,19 +388,19 @@ export interface ElasticBeanstalk {
|
|
|
388
388
|
* @param args - command input.
|
|
389
389
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
390
390
|
*/
|
|
391
|
-
waitUntilEnvironmentExists(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult
|
|
391
|
+
waitUntilEnvironmentExists(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
392
392
|
/**
|
|
393
393
|
* @see {@link DescribeEnvironmentsCommand}
|
|
394
394
|
* @param args - command input.
|
|
395
395
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
396
396
|
*/
|
|
397
|
-
waitUntilEnvironmentTerminated(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult
|
|
397
|
+
waitUntilEnvironmentTerminated(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
398
398
|
/**
|
|
399
399
|
* @see {@link DescribeEnvironmentsCommand}
|
|
400
400
|
* @param args - command input.
|
|
401
401
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
402
402
|
*/
|
|
403
|
-
waitUntilEnvironmentUpdated(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult
|
|
403
|
+
waitUntilEnvironmentUpdated(args: DescribeEnvironmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ElasticBeanstalk>, "client">): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* <fullname>AWS Elastic Beanstalk</fullname>
|
|
@@ -896,7 +896,7 @@ export interface ElasticBeanstalk {
|
|
|
896
896
|
WaiterConfiguration<ElasticBeanstalk>,
|
|
897
897
|
Exclude<keyof WaiterConfiguration<ElasticBeanstalk>, "client">
|
|
898
898
|
>
|
|
899
|
-
): Promise<WaiterResult
|
|
899
|
+
): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
900
900
|
waitUntilEnvironmentTerminated(
|
|
901
901
|
args: DescribeEnvironmentsCommandInput,
|
|
902
902
|
waiterConfig:
|
|
@@ -905,7 +905,7 @@ export interface ElasticBeanstalk {
|
|
|
905
905
|
WaiterConfiguration<ElasticBeanstalk>,
|
|
906
906
|
Exclude<keyof WaiterConfiguration<ElasticBeanstalk>, "client">
|
|
907
907
|
>
|
|
908
|
-
): Promise<WaiterResult
|
|
908
|
+
): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
909
909
|
waitUntilEnvironmentUpdated(
|
|
910
910
|
args: DescribeEnvironmentsCommandInput,
|
|
911
911
|
waiterConfig:
|
|
@@ -914,7 +914,7 @@ export interface ElasticBeanstalk {
|
|
|
914
914
|
WaiterConfiguration<ElasticBeanstalk>,
|
|
915
915
|
Exclude<keyof WaiterConfiguration<ElasticBeanstalk>, "client">
|
|
916
916
|
>
|
|
917
|
-
): Promise<WaiterResult
|
|
917
|
+
): Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
918
918
|
}
|
|
919
919
|
export declare class ElasticBeanstalk
|
|
920
920
|
extends ElasticBeanstalkClient
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeEnvironmentsCommandInput,
|
|
4
|
+
DescribeEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeEnvironmentsCommand";
|
|
3
6
|
import { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
7
|
+
import { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
8
|
export declare const waitForEnvironmentExists: (
|
|
5
9
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
6
10
|
input: DescribeEnvironmentsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
| DescribeEnvironmentsCommandOutput
|
|
14
|
+
| ElasticBeanstalkSyntheticServiceException
|
|
15
|
+
>
|
|
16
|
+
>;
|
|
8
17
|
export declare const waitUntilEnvironmentExists: (
|
|
9
18
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
10
19
|
input: DescribeEnvironmentsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
20
|
+
) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeEnvironmentsCommandInput,
|
|
4
|
+
DescribeEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeEnvironmentsCommand";
|
|
3
6
|
import { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
7
|
+
import { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
8
|
export declare const waitForEnvironmentTerminated: (
|
|
5
9
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
6
10
|
input: DescribeEnvironmentsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
| DescribeEnvironmentsCommandOutput
|
|
14
|
+
| ElasticBeanstalkSyntheticServiceException
|
|
15
|
+
>
|
|
16
|
+
>;
|
|
8
17
|
export declare const waitUntilEnvironmentTerminated: (
|
|
9
18
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
10
19
|
input: DescribeEnvironmentsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
20
|
+
) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeEnvironmentsCommandInput,
|
|
4
|
+
DescribeEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeEnvironmentsCommand";
|
|
3
6
|
import { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
7
|
+
import { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
8
|
export declare const waitForEnvironmentUpdated: (
|
|
5
9
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
6
10
|
input: DescribeEnvironmentsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
| DescribeEnvironmentsCommandOutput
|
|
14
|
+
| ElasticBeanstalkSyntheticServiceException
|
|
15
|
+
>
|
|
16
|
+
>;
|
|
8
17
|
export declare const waitUntilEnvironmentUpdated: (
|
|
9
18
|
params: WaiterConfiguration<ElasticBeanstalkClient>,
|
|
10
19
|
input: DescribeEnvironmentsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
20
|
+
) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeEnvironmentsCommandInput } from "../commands/DescribeEnvironmentsCommand";
|
|
2
|
+
import { type DescribeEnvironmentsCommandInput, type DescribeEnvironmentsCommandOutput } from "../commands/DescribeEnvironmentsCommand";
|
|
3
3
|
import type { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
4
|
+
import type { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilEnvironmentExists instead. waitForEnvironmentExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForEnvironmentExists: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForEnvironmentExists: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput | ElasticBeanstalkSyntheticServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeEnvironmentsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilEnvironmentExists: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilEnvironmentExists: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeEnvironmentsCommandInput } from "../commands/DescribeEnvironmentsCommand";
|
|
2
|
+
import { type DescribeEnvironmentsCommandInput, type DescribeEnvironmentsCommandOutput } from "../commands/DescribeEnvironmentsCommand";
|
|
3
3
|
import type { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
4
|
+
import type { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilEnvironmentTerminated instead. waitForEnvironmentTerminated does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForEnvironmentTerminated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForEnvironmentTerminated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput | ElasticBeanstalkSyntheticServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeEnvironmentsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilEnvironmentTerminated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilEnvironmentTerminated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeEnvironmentsCommandInput } from "../commands/DescribeEnvironmentsCommand";
|
|
2
|
+
import { type DescribeEnvironmentsCommandInput, type DescribeEnvironmentsCommandOutput } from "../commands/DescribeEnvironmentsCommand";
|
|
3
3
|
import type { ElasticBeanstalkClient } from "../ElasticBeanstalkClient";
|
|
4
|
+
import type { ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilEnvironmentUpdated instead. waitForEnvironmentUpdated does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForEnvironmentUpdated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForEnvironmentUpdated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput | ElasticBeanstalkSyntheticServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeEnvironmentsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilEnvironmentUpdated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilEnvironmentUpdated: (params: WaiterConfiguration<ElasticBeanstalkClient>, input: DescribeEnvironmentsCommandInput) => Promise<WaiterResult<DescribeEnvironmentsCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-beanstalk",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1039.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-elastic-beanstalk",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.974.7",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.38",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.37",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
33
33
|
"@aws-sdk/types": "^3.973.8",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.23",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.17",
|
|
38
38
|
"@smithy/core": "^3.23.17",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
43
43
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
44
|
-
"@smithy/middleware-retry": "^4.5.
|
|
44
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.20",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.14",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
58
58
|
"@smithy/util-endpoints": "^3.4.2",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.14",
|
|
60
|
-
"@smithy/util-retry": "^4.3.
|
|
60
|
+
"@smithy/util-retry": "^4.3.6",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
|
-
"@smithy/util-waiter": "^4.
|
|
62
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|