@aws-sdk/client-elastic-load-balancing 3.405.0 → 3.409.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/endpoint/ruleset.js +2 -2
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForInstanceDeregistered.js +47 -0
- package/dist-cjs/waiters/waitForInstanceInService.js +47 -0
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForInstanceDeregistered.js +42 -0
- package/dist-es/waiters/waitForInstanceInService.js +42 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForInstanceDeregistered.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForInstanceInService.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForInstanceDeregistered.d.ts +14 -0
- package/dist-types/waiters/waitForInstanceInService.d.ts +14 -0
- package/package.json +12 -12
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
4
|
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
|
-
const a = "
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
5
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = "getAttr", g = { [s]: false, "type": "String" }, h = { [s]: true, "default": false, "type": "Boolean" }, i = { [v]: "Endpoint" }, j = { [t]: "booleanEquals", [u]: [{ [v]: "UseFIPS" }, true] }, k = { [t]: "booleanEquals", [u]: [{ [v]: "UseDualStack" }, true] }, l = {}, m = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [{ [v]: e }, "supportsFIPS"] }] }, n = { [v]: e }, o = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [n, "supportsDualStack"] }] }, p = [j], q = [k], r = [{ [v]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: g, UseDualStack: h, UseFIPS: h, Endpoint: g }, rules: [{ conditions: [{ [t]: a, [u]: [i] }], type: b, rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: i, properties: l, headers: l }, type: d }] }, { conditions: [{ [t]: a, [u]: r }], type: b, rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: e }], type: b, rules: [{ conditions: [j, k], type: b, rules: [{ conditions: [m, o], type: b, rules: [{ endpoint: { url: "https://elasticloadbalancing-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: p, type: b, rules: [{ conditions: [m], type: b, rules: [{ conditions: [{ [t]: "stringEquals", [u]: ["aws-us-gov", { [t]: f, [u]: [n, "name"] }] }], endpoint: { url: "https://elasticloadbalancing.{Region}.amazonaws.com", properties: l, headers: l }, type: d }, { endpoint: { url: "https://elasticloadbalancing-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: q, type: b, rules: [{ conditions: [o], type: b, rules: [{ endpoint: { url: "https://elasticloadbalancing.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://elasticloadbalancing.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
7
7
|
exports.ruleSet = _data;
|
|
@@ -2,3 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./waitForAnyInstanceInService"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./waitForInstanceDeregistered"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./waitForInstanceInService"), exports);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.waitUntilInstanceDeregistered = exports.waitForInstanceDeregistered = void 0;
|
|
4
|
+
const util_waiter_1 = require("@smithy/util-waiter");
|
|
5
|
+
const DescribeInstanceHealthCommand_1 = require("../commands/DescribeInstanceHealthCommand");
|
|
6
|
+
const checkState = async (client, input) => {
|
|
7
|
+
let reason;
|
|
8
|
+
try {
|
|
9
|
+
const result = await client.send(new DescribeInstanceHealthCommand_1.DescribeInstanceHealthCommand(input));
|
|
10
|
+
reason = result;
|
|
11
|
+
try {
|
|
12
|
+
const returnComparator = () => {
|
|
13
|
+
const flat_1 = [].concat(...result.InstanceStates);
|
|
14
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
15
|
+
return element_2.State;
|
|
16
|
+
});
|
|
17
|
+
return projection_3;
|
|
18
|
+
};
|
|
19
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
20
|
+
for (const element_4 of returnComparator()) {
|
|
21
|
+
allStringEq_5 = allStringEq_5 && element_4 == "OutOfService";
|
|
22
|
+
}
|
|
23
|
+
if (allStringEq_5) {
|
|
24
|
+
return { state: util_waiter_1.WaiterState.SUCCESS, reason };
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
catch (e) { }
|
|
28
|
+
}
|
|
29
|
+
catch (exception) {
|
|
30
|
+
reason = exception;
|
|
31
|
+
if (exception.name && exception.name == "InvalidInstance") {
|
|
32
|
+
return { state: util_waiter_1.WaiterState.SUCCESS, reason };
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return { state: util_waiter_1.WaiterState.RETRY, reason };
|
|
36
|
+
};
|
|
37
|
+
const waitForInstanceDeregistered = async (params, input) => {
|
|
38
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
39
|
+
return (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
|
|
40
|
+
};
|
|
41
|
+
exports.waitForInstanceDeregistered = waitForInstanceDeregistered;
|
|
42
|
+
const waitUntilInstanceDeregistered = async (params, input) => {
|
|
43
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
44
|
+
const result = await (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
|
|
45
|
+
return (0, util_waiter_1.checkExceptions)(result);
|
|
46
|
+
};
|
|
47
|
+
exports.waitUntilInstanceDeregistered = waitUntilInstanceDeregistered;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.waitUntilInstanceInService = exports.waitForInstanceInService = void 0;
|
|
4
|
+
const util_waiter_1 = require("@smithy/util-waiter");
|
|
5
|
+
const DescribeInstanceHealthCommand_1 = require("../commands/DescribeInstanceHealthCommand");
|
|
6
|
+
const checkState = async (client, input) => {
|
|
7
|
+
let reason;
|
|
8
|
+
try {
|
|
9
|
+
const result = await client.send(new DescribeInstanceHealthCommand_1.DescribeInstanceHealthCommand(input));
|
|
10
|
+
reason = result;
|
|
11
|
+
try {
|
|
12
|
+
const returnComparator = () => {
|
|
13
|
+
const flat_1 = [].concat(...result.InstanceStates);
|
|
14
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
15
|
+
return element_2.State;
|
|
16
|
+
});
|
|
17
|
+
return projection_3;
|
|
18
|
+
};
|
|
19
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
20
|
+
for (const element_4 of returnComparator()) {
|
|
21
|
+
allStringEq_5 = allStringEq_5 && element_4 == "InService";
|
|
22
|
+
}
|
|
23
|
+
if (allStringEq_5) {
|
|
24
|
+
return { state: util_waiter_1.WaiterState.SUCCESS, reason };
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
catch (e) { }
|
|
28
|
+
}
|
|
29
|
+
catch (exception) {
|
|
30
|
+
reason = exception;
|
|
31
|
+
if (exception.name && exception.name == "InvalidInstance") {
|
|
32
|
+
return { state: util_waiter_1.WaiterState.RETRY, reason };
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return { state: util_waiter_1.WaiterState.RETRY, reason };
|
|
36
|
+
};
|
|
37
|
+
const waitForInstanceInService = async (params, input) => {
|
|
38
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
39
|
+
return (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
|
|
40
|
+
};
|
|
41
|
+
exports.waitForInstanceInService = waitForInstanceInService;
|
|
42
|
+
const waitUntilInstanceInService = async (params, input) => {
|
|
43
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
44
|
+
const result = await (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
|
|
45
|
+
return (0, util_waiter_1.checkExceptions)(result);
|
|
46
|
+
};
|
|
47
|
+
exports.waitUntilInstanceInService = waitUntilInstanceInService;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
2
|
-
const a = "
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
2
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = "getAttr", g = { [s]: false, "type": "String" }, h = { [s]: true, "default": false, "type": "Boolean" }, i = { [v]: "Endpoint" }, j = { [t]: "booleanEquals", [u]: [{ [v]: "UseFIPS" }, true] }, k = { [t]: "booleanEquals", [u]: [{ [v]: "UseDualStack" }, true] }, l = {}, m = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [{ [v]: e }, "supportsFIPS"] }] }, n = { [v]: e }, o = { [t]: "booleanEquals", [u]: [true, { [t]: f, [u]: [n, "supportsDualStack"] }] }, p = [j], q = [k], r = [{ [v]: "Region" }];
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: g, UseDualStack: h, UseFIPS: h, Endpoint: g }, rules: [{ conditions: [{ [t]: a, [u]: [i] }], type: b, rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: i, properties: l, headers: l }, type: d }] }, { conditions: [{ [t]: a, [u]: r }], type: b, rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: e }], type: b, rules: [{ conditions: [j, k], type: b, rules: [{ conditions: [m, o], type: b, rules: [{ endpoint: { url: "https://elasticloadbalancing-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: p, type: b, rules: [{ conditions: [m], type: b, rules: [{ conditions: [{ [t]: "stringEquals", [u]: ["aws-us-gov", { [t]: f, [u]: [n, "name"] }] }], endpoint: { url: "https://elasticloadbalancing.{Region}.amazonaws.com", properties: l, headers: l }, type: d }, { endpoint: { url: "https://elasticloadbalancing-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: q, type: b, rules: [{ conditions: [o], type: b, rules: [{ endpoint: { url: "https://elasticloadbalancing.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://elasticloadbalancing.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
4
4
|
export const ruleSet = _data;
|
package/dist-es/waiters/index.js
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommand, } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeInstanceHealthCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.InstanceStates);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.State;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
+
for (const element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && element_4 == "OutOfService";
|
|
19
|
+
}
|
|
20
|
+
if (allStringEq_5) {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
catch (e) { }
|
|
25
|
+
}
|
|
26
|
+
catch (exception) {
|
|
27
|
+
reason = exception;
|
|
28
|
+
if (exception.name && exception.name == "InvalidInstance") {
|
|
29
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
return { state: WaiterState.RETRY, reason };
|
|
33
|
+
};
|
|
34
|
+
export const waitForInstanceDeregistered = async (params, input) => {
|
|
35
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
36
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
37
|
+
};
|
|
38
|
+
export const waitUntilInstanceDeregistered = async (params, input) => {
|
|
39
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
40
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
41
|
+
return checkExceptions(result);
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommand, } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeInstanceHealthCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.InstanceStates);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.State;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
+
for (const element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && element_4 == "InService";
|
|
19
|
+
}
|
|
20
|
+
if (allStringEq_5) {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
catch (e) { }
|
|
25
|
+
}
|
|
26
|
+
catch (exception) {
|
|
27
|
+
reason = exception;
|
|
28
|
+
if (exception.name && exception.name == "InvalidInstance") {
|
|
29
|
+
return { state: WaiterState.RETRY, reason };
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
return { state: WaiterState.RETRY, reason };
|
|
33
|
+
};
|
|
34
|
+
export const waitForInstanceInService = async (params, input) => {
|
|
35
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
36
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
37
|
+
};
|
|
38
|
+
export const waitUntilInstanceInService = async (params, input) => {
|
|
39
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
40
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
41
|
+
return checkExceptions(result);
|
|
42
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommandInput } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
+
export declare const waitForInstanceDeregistered: (
|
|
5
|
+
params: WaiterConfiguration<ElasticLoadBalancingClient>,
|
|
6
|
+
input: DescribeInstanceHealthCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilInstanceDeregistered: (
|
|
9
|
+
params: WaiterConfiguration<ElasticLoadBalancingClient>,
|
|
10
|
+
input: DescribeInstanceHealthCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommandInput } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
+
export declare const waitForInstanceInService: (
|
|
5
|
+
params: WaiterConfiguration<ElasticLoadBalancingClient>,
|
|
6
|
+
input: DescribeInstanceHealthCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilInstanceInService: (
|
|
9
|
+
params: WaiterConfiguration<ElasticLoadBalancingClient>,
|
|
10
|
+
input: DescribeInstanceHealthCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommandInput } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilInstanceDeregistered instead. waitForInstanceDeregistered does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForInstanceDeregistered: (params: WaiterConfiguration<ElasticLoadBalancingClient>, input: DescribeInstanceHealthCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeInstanceHealthCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilInstanceDeregistered: (params: WaiterConfiguration<ElasticLoadBalancingClient>, input: DescribeInstanceHealthCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeInstanceHealthCommandInput } from "../commands/DescribeInstanceHealthCommand";
|
|
3
|
+
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilInstanceInService instead. waitForInstanceInService does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForInstanceInService: (params: WaiterConfiguration<ElasticLoadBalancingClient>, input: DescribeInstanceHealthCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeInstanceHealthCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilInstanceInService: (params: WaiterConfiguration<ElasticLoadBalancingClient>, input: DescribeInstanceHealthCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.409.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.409.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.409.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.408.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.408.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.408.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.408.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.408.0",
|
|
31
|
+
"@aws-sdk/types": "3.408.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.408.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.408.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.408.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
37
|
"@smithy/hash-node": "^2.0.5",
|