@aws-sdk/client-eks 3.186.0 → 3.190.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 +16 -0
- package/dist-es/EKS.js +138 -145
- package/dist-es/EKSClient.js +22 -28
- package/dist-es/commands/AssociateEncryptionConfigCommand.js +21 -28
- package/dist-es/commands/AssociateIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/CreateAddonCommand.js +21 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateFargateProfileCommand.js +21 -28
- package/dist-es/commands/CreateNodegroupCommand.js +21 -28
- package/dist-es/commands/DeleteAddonCommand.js +21 -28
- package/dist-es/commands/DeleteClusterCommand.js +21 -28
- package/dist-es/commands/DeleteFargateProfileCommand.js +21 -28
- package/dist-es/commands/DeleteNodegroupCommand.js +21 -28
- package/dist-es/commands/DeregisterClusterCommand.js +21 -28
- package/dist-es/commands/DescribeAddonCommand.js +21 -28
- package/dist-es/commands/DescribeAddonVersionsCommand.js +21 -28
- package/dist-es/commands/DescribeClusterCommand.js +21 -28
- package/dist-es/commands/DescribeFargateProfileCommand.js +21 -28
- package/dist-es/commands/DescribeIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/DescribeNodegroupCommand.js +21 -28
- package/dist-es/commands/DescribeUpdateCommand.js +21 -28
- package/dist-es/commands/DisassociateIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/ListAddonsCommand.js +21 -28
- package/dist-es/commands/ListClustersCommand.js +21 -28
- package/dist-es/commands/ListFargateProfilesCommand.js +21 -28
- package/dist-es/commands/ListIdentityProviderConfigsCommand.js +21 -28
- package/dist-es/commands/ListNodegroupsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListUpdatesCommand.js +21 -28
- package/dist-es/commands/RegisterClusterCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateAddonCommand.js +21 -28
- package/dist-es/commands/UpdateClusterConfigCommand.js +21 -28
- package/dist-es/commands/UpdateClusterVersionCommand.js +21 -28
- package/dist-es/commands/UpdateNodegroupConfigCommand.js +21 -28
- package/dist-es/commands/UpdateNodegroupVersionCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/EKSServiceException.js +5 -10
- package/dist-es/models/models_0.js +507 -282
- package/dist-es/pagination/DescribeAddonVersionsPaginator.js +25 -68
- package/dist-es/pagination/ListAddonsPaginator.js +25 -68
- package/dist-es/pagination/ListClustersPaginator.js +25 -68
- package/dist-es/pagination/ListFargateProfilesPaginator.js +25 -68
- package/dist-es/pagination/ListIdentityProviderConfigsPaginator.js +25 -68
- package/dist-es/pagination/ListNodegroupsPaginator.js +25 -68
- package/dist-es/pagination/ListUpdatesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2836 -3829
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForAddonActive.js +45 -65
- package/dist-es/waiters/waitForAddonDeleted.js +30 -50
- package/dist-es/waiters/waitForClusterActive.js +45 -65
- package/dist-es/waiters/waitForClusterDeleted.js +48 -68
- package/dist-es/waiters/waitForFargateProfileActive.js +36 -56
- package/dist-es/waiters/waitForFargateProfileDeleted.js +30 -50
- package/dist-es/waiters/waitForNodegroupActive.js +36 -56
- package/dist-es/waiters/waitForNodegroupDeleted.js +30 -50
- package/package.json +34 -34
|
@@ -1,60 +1,40 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeFargateProfileCommand, } from "../commands/DescribeFargateProfileCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return result_1.fargateProfile.status;
|
|
17
|
-
};
|
|
18
|
-
if (returnComparator() === "CREATE_FAILED") {
|
|
19
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
catch (e) { }
|
|
23
|
-
try {
|
|
24
|
-
returnComparator = function () {
|
|
25
|
-
return result_1.fargateProfile.status;
|
|
26
|
-
};
|
|
27
|
-
if (returnComparator() === "ACTIVE") {
|
|
28
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
catch (e) { }
|
|
32
|
-
return [3, 3];
|
|
33
|
-
case 2:
|
|
34
|
-
exception_1 = _a.sent();
|
|
35
|
-
reason = exception_1;
|
|
36
|
-
return [3, 3];
|
|
37
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeFargateProfileCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.fargateProfile.status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
13
|
+
return { state: WaiterState.FAILURE, reason };
|
|
14
|
+
}
|
|
38
15
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}); };
|
|
48
|
-
export var waitUntilFargateProfileActive = function (params, input) { return __awaiter(void 0, void 0, void 0, function () {
|
|
49
|
-
var serviceDefaults, result;
|
|
50
|
-
return __generator(this, function (_a) {
|
|
51
|
-
switch (_a.label) {
|
|
52
|
-
case 0:
|
|
53
|
-
serviceDefaults = { minDelay: 10, maxDelay: 120 };
|
|
54
|
-
return [4, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
55
|
-
case 1:
|
|
56
|
-
result = _a.sent();
|
|
57
|
-
return [2, checkExceptions(result)];
|
|
16
|
+
catch (e) { }
|
|
17
|
+
try {
|
|
18
|
+
const returnComparator = () => {
|
|
19
|
+
return result.fargateProfile.status;
|
|
20
|
+
};
|
|
21
|
+
if (returnComparator() === "ACTIVE") {
|
|
22
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
23
|
+
}
|
|
58
24
|
}
|
|
59
|
-
|
|
60
|
-
}
|
|
25
|
+
catch (e) { }
|
|
26
|
+
}
|
|
27
|
+
catch (exception) {
|
|
28
|
+
reason = exception;
|
|
29
|
+
}
|
|
30
|
+
return { state: WaiterState.RETRY, reason };
|
|
31
|
+
};
|
|
32
|
+
export const waitForFargateProfileActive = async (params, input) => {
|
|
33
|
+
const serviceDefaults = { minDelay: 10, maxDelay: 120 };
|
|
34
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
35
|
+
};
|
|
36
|
+
export const waitUntilFargateProfileActive = async (params, input) => {
|
|
37
|
+
const serviceDefaults = { minDelay: 10, maxDelay: 120 };
|
|
38
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
39
|
+
return checkExceptions(result);
|
|
40
|
+
};
|
|
@@ -1,54 +1,34 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeFargateProfileCommand, } from "../commands/DescribeFargateProfileCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return result_1.fargateProfile.status;
|
|
17
|
-
};
|
|
18
|
-
if (returnComparator() === "DELETE_FAILED") {
|
|
19
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
catch (e) { }
|
|
23
|
-
return [3, 3];
|
|
24
|
-
case 2:
|
|
25
|
-
exception_1 = _a.sent();
|
|
26
|
-
reason = exception_1;
|
|
27
|
-
if (exception_1.name && exception_1.name == "ResourceNotFoundException") {
|
|
28
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
29
|
-
}
|
|
30
|
-
return [3, 3];
|
|
31
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeFargateProfileCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.fargateProfile.status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
13
|
+
return { state: WaiterState.FAILURE, reason };
|
|
14
|
+
}
|
|
32
15
|
}
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
return [2, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
40
|
-
});
|
|
41
|
-
}); };
|
|
42
|
-
export var waitUntilFargateProfileDeleted = function (params, input) { return __awaiter(void 0, void 0, void 0, function () {
|
|
43
|
-
var serviceDefaults, result;
|
|
44
|
-
return __generator(this, function (_a) {
|
|
45
|
-
switch (_a.label) {
|
|
46
|
-
case 0:
|
|
47
|
-
serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
48
|
-
return [4, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
49
|
-
case 1:
|
|
50
|
-
result = _a.sent();
|
|
51
|
-
return [2, checkExceptions(result)];
|
|
16
|
+
catch (e) { }
|
|
17
|
+
}
|
|
18
|
+
catch (exception) {
|
|
19
|
+
reason = exception;
|
|
20
|
+
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
52
22
|
}
|
|
53
|
-
}
|
|
54
|
-
|
|
23
|
+
}
|
|
24
|
+
return { state: WaiterState.RETRY, reason };
|
|
25
|
+
};
|
|
26
|
+
export const waitForFargateProfileDeleted = async (params, input) => {
|
|
27
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
28
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
29
|
+
};
|
|
30
|
+
export const waitUntilFargateProfileDeleted = async (params, input) => {
|
|
31
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
32
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
33
|
+
return checkExceptions(result);
|
|
34
|
+
};
|
|
@@ -1,60 +1,40 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeNodegroupCommand } from "../commands/DescribeNodegroupCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return result_1.nodegroup.status;
|
|
17
|
-
};
|
|
18
|
-
if (returnComparator() === "CREATE_FAILED") {
|
|
19
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
catch (e) { }
|
|
23
|
-
try {
|
|
24
|
-
returnComparator = function () {
|
|
25
|
-
return result_1.nodegroup.status;
|
|
26
|
-
};
|
|
27
|
-
if (returnComparator() === "ACTIVE") {
|
|
28
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
catch (e) { }
|
|
32
|
-
return [3, 3];
|
|
33
|
-
case 2:
|
|
34
|
-
exception_1 = _a.sent();
|
|
35
|
-
reason = exception_1;
|
|
36
|
-
return [3, 3];
|
|
37
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeNodegroupCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.nodegroup.status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
13
|
+
return { state: WaiterState.FAILURE, reason };
|
|
14
|
+
}
|
|
38
15
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}); };
|
|
48
|
-
export var waitUntilNodegroupActive = function (params, input) { return __awaiter(void 0, void 0, void 0, function () {
|
|
49
|
-
var serviceDefaults, result;
|
|
50
|
-
return __generator(this, function (_a) {
|
|
51
|
-
switch (_a.label) {
|
|
52
|
-
case 0:
|
|
53
|
-
serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
54
|
-
return [4, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
55
|
-
case 1:
|
|
56
|
-
result = _a.sent();
|
|
57
|
-
return [2, checkExceptions(result)];
|
|
16
|
+
catch (e) { }
|
|
17
|
+
try {
|
|
18
|
+
const returnComparator = () => {
|
|
19
|
+
return result.nodegroup.status;
|
|
20
|
+
};
|
|
21
|
+
if (returnComparator() === "ACTIVE") {
|
|
22
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
23
|
+
}
|
|
58
24
|
}
|
|
59
|
-
|
|
60
|
-
}
|
|
25
|
+
catch (e) { }
|
|
26
|
+
}
|
|
27
|
+
catch (exception) {
|
|
28
|
+
reason = exception;
|
|
29
|
+
}
|
|
30
|
+
return { state: WaiterState.RETRY, reason };
|
|
31
|
+
};
|
|
32
|
+
export const waitForNodegroupActive = async (params, input) => {
|
|
33
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
34
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
35
|
+
};
|
|
36
|
+
export const waitUntilNodegroupActive = async (params, input) => {
|
|
37
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
38
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
39
|
+
return checkExceptions(result);
|
|
40
|
+
};
|
|
@@ -1,54 +1,34 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeNodegroupCommand } from "../commands/DescribeNodegroupCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return result_1.nodegroup.status;
|
|
17
|
-
};
|
|
18
|
-
if (returnComparator() === "DELETE_FAILED") {
|
|
19
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
catch (e) { }
|
|
23
|
-
return [3, 3];
|
|
24
|
-
case 2:
|
|
25
|
-
exception_1 = _a.sent();
|
|
26
|
-
reason = exception_1;
|
|
27
|
-
if (exception_1.name && exception_1.name == "ResourceNotFoundException") {
|
|
28
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
29
|
-
}
|
|
30
|
-
return [3, 3];
|
|
31
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeNodegroupCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
return result.nodegroup.status;
|
|
11
|
+
};
|
|
12
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
13
|
+
return { state: WaiterState.FAILURE, reason };
|
|
14
|
+
}
|
|
32
15
|
}
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
return [2, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
40
|
-
});
|
|
41
|
-
}); };
|
|
42
|
-
export var waitUntilNodegroupDeleted = function (params, input) { return __awaiter(void 0, void 0, void 0, function () {
|
|
43
|
-
var serviceDefaults, result;
|
|
44
|
-
return __generator(this, function (_a) {
|
|
45
|
-
switch (_a.label) {
|
|
46
|
-
case 0:
|
|
47
|
-
serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
48
|
-
return [4, createWaiter(__assign(__assign({}, serviceDefaults), params), input, checkState)];
|
|
49
|
-
case 1:
|
|
50
|
-
result = _a.sent();
|
|
51
|
-
return [2, checkExceptions(result)];
|
|
16
|
+
catch (e) { }
|
|
17
|
+
}
|
|
18
|
+
catch (exception) {
|
|
19
|
+
reason = exception;
|
|
20
|
+
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
52
22
|
}
|
|
53
|
-
}
|
|
54
|
-
|
|
23
|
+
}
|
|
24
|
+
return { state: WaiterState.RETRY, reason };
|
|
25
|
+
};
|
|
26
|
+
export const waitForNodegroupDeleted = async (params, input) => {
|
|
27
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
28
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
29
|
+
};
|
|
30
|
+
export const waitUntilNodegroupDeleted = async (params, input) => {
|
|
31
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
32
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
33
|
+
return checkExceptions(result);
|
|
34
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.190.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",
|
|
@@ -19,43 +19,43 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
53
|
-
"@aws-sdk/util-waiter": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.190.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.190.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.190.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.190.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.190.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.190.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.190.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.190.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.190.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.190.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.190.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.190.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.190.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.190.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.190.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.190.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.190.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.190.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.190.0",
|
|
41
|
+
"@aws-sdk/types": "3.190.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.190.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.188.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.190.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.190.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.190.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.190.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.188.0",
|
|
53
|
+
"@aws-sdk/util-waiter": "3.190.0",
|
|
54
54
|
"tslib": "^2.3.1",
|
|
55
55
|
"uuid": "^8.3.2"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.188.0",
|
|
59
59
|
"@tsconfig/recommended": "1.0.1",
|
|
60
60
|
"@types/node": "^12.7.5",
|
|
61
61
|
"@types/uuid": "^8.3.0",
|