@aws-sdk/client-elastic-load-balancing-v2 3.958.0 → 3.964.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/index.js +10 -10
- package/dist-es/waiters/waitForLoadBalancerAvailable.js +3 -3
- package/dist-es/waiters/waitForLoadBalancerExists.js +1 -1
- package/dist-es/waiters/waitForLoadBalancersDeleted.js +2 -2
- package/dist-es/waiters/waitForTargetDeregistered.js +2 -2
- package/dist-es/waiters/waitForTargetInService.js +2 -2
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -3437,10 +3437,10 @@ const paginateDescribeTrustStores = core.createPaginator(ElasticLoadBalancingV2C
|
|
|
3437
3437
|
const checkState$4 = async (client, input) => {
|
|
3438
3438
|
let reason;
|
|
3439
3439
|
try {
|
|
3440
|
-
|
|
3440
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
3441
3441
|
reason = result;
|
|
3442
3442
|
try {
|
|
3443
|
-
|
|
3443
|
+
const returnComparator = () => {
|
|
3444
3444
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
3445
3445
|
let projection_3 = flat_1.map((element_2) => {
|
|
3446
3446
|
return element_2.State.Code;
|
|
@@ -3457,7 +3457,7 @@ const checkState$4 = async (client, input) => {
|
|
|
3457
3457
|
}
|
|
3458
3458
|
catch (e) { }
|
|
3459
3459
|
try {
|
|
3460
|
-
|
|
3460
|
+
const returnComparator = () => {
|
|
3461
3461
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
3462
3462
|
let projection_3 = flat_1.map((element_2) => {
|
|
3463
3463
|
return element_2.State.Code;
|
|
@@ -3493,7 +3493,7 @@ const waitUntilLoadBalancerAvailable = async (params, input) => {
|
|
|
3493
3493
|
const checkState$3 = async (client, input) => {
|
|
3494
3494
|
let reason;
|
|
3495
3495
|
try {
|
|
3496
|
-
|
|
3496
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
3497
3497
|
reason = result;
|
|
3498
3498
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
3499
3499
|
}
|
|
@@ -3518,10 +3518,10 @@ const waitUntilLoadBalancerExists = async (params, input) => {
|
|
|
3518
3518
|
const checkState$2 = async (client, input) => {
|
|
3519
3519
|
let reason;
|
|
3520
3520
|
try {
|
|
3521
|
-
|
|
3521
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
3522
3522
|
reason = result;
|
|
3523
3523
|
try {
|
|
3524
|
-
|
|
3524
|
+
const returnComparator = () => {
|
|
3525
3525
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
3526
3526
|
let projection_3 = flat_1.map((element_2) => {
|
|
3527
3527
|
return element_2.State.Code;
|
|
@@ -3559,10 +3559,10 @@ const waitUntilLoadBalancersDeleted = async (params, input) => {
|
|
|
3559
3559
|
const checkState$1 = async (client, input) => {
|
|
3560
3560
|
let reason;
|
|
3561
3561
|
try {
|
|
3562
|
-
|
|
3562
|
+
let result = await client.send(new DescribeTargetHealthCommand(input));
|
|
3563
3563
|
reason = result;
|
|
3564
3564
|
try {
|
|
3565
|
-
|
|
3565
|
+
const returnComparator = () => {
|
|
3566
3566
|
let flat_1 = [].concat(...result.TargetHealthDescriptions);
|
|
3567
3567
|
let projection_3 = flat_1.map((element_2) => {
|
|
3568
3568
|
return element_2.TargetHealth.State;
|
|
@@ -3600,10 +3600,10 @@ const waitUntilTargetDeregistered = async (params, input) => {
|
|
|
3600
3600
|
const checkState = async (client, input) => {
|
|
3601
3601
|
let reason;
|
|
3602
3602
|
try {
|
|
3603
|
-
|
|
3603
|
+
let result = await client.send(new DescribeTargetHealthCommand(input));
|
|
3604
3604
|
reason = result;
|
|
3605
3605
|
try {
|
|
3606
|
-
|
|
3606
|
+
const returnComparator = () => {
|
|
3607
3607
|
let flat_1 = [].concat(...result.TargetHealthDescriptions);
|
|
3608
3608
|
let projection_3 = flat_1.map((element_2) => {
|
|
3609
3609
|
return element_2.TargetHealth.State;
|
|
@@ -3,10 +3,10 @@ import { DescribeLoadBalancersCommand, } from "../commands/DescribeLoadBalancers
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
11
11
|
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State.Code;
|
|
@@ -23,7 +23,7 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
26
|
+
const returnComparator = () => {
|
|
27
27
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
28
28
|
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.State.Code;
|
|
@@ -3,7 +3,7 @@ import { DescribeLoadBalancersCommand, } from "../commands/DescribeLoadBalancers
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,10 +3,10 @@ import { DescribeLoadBalancersCommand, } from "../commands/DescribeLoadBalancers
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeLoadBalancersCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
let flat_1 = [].concat(...result.LoadBalancers);
|
|
11
11
|
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State.Code;
|
|
@@ -3,10 +3,10 @@ import { DescribeTargetHealthCommand } from "../commands/DescribeTargetHealthCom
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeTargetHealthCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
let flat_1 = [].concat(...result.TargetHealthDescriptions);
|
|
11
11
|
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.TargetHealth.State;
|
|
@@ -3,10 +3,10 @@ import { DescribeTargetHealthCommand } from "../commands/DescribeTargetHealthCom
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeTargetHealthCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
const returnComparator = () => {
|
|
10
10
|
let flat_1 = [].concat(...result.TargetHealthDescriptions);
|
|
11
11
|
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.TargetHealth.State;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.964.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-load-balancing-v2",
|
|
@@ -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.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/core": "3.964.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.964.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.964.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.957.0",
|
|
33
33
|
"@aws-sdk/types": "3.957.0",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.957.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.957.0",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.964.0",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.5",
|
|
38
38
|
"@smithy/core": "^3.20.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.8",
|