@aws-sdk/client-eks 3.54.0 → 3.56.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 +24 -0
- package/dist-cjs/EKSClient.js +13 -13
- package/dist-cjs/commands/AssociateEncryptionConfigCommand.js +3 -3
- package/dist-cjs/commands/AssociateIdentityProviderConfigCommand.js +3 -3
- package/dist-cjs/commands/CreateAddonCommand.js +3 -3
- package/dist-cjs/commands/CreateClusterCommand.js +3 -3
- package/dist-cjs/commands/CreateFargateProfileCommand.js +3 -3
- package/dist-cjs/commands/CreateNodegroupCommand.js +3 -3
- package/dist-cjs/commands/DeleteAddonCommand.js +3 -3
- package/dist-cjs/commands/DeleteClusterCommand.js +3 -3
- package/dist-cjs/commands/DeleteFargateProfileCommand.js +3 -3
- package/dist-cjs/commands/DeleteNodegroupCommand.js +3 -3
- package/dist-cjs/commands/DeregisterClusterCommand.js +3 -3
- package/dist-cjs/commands/DescribeAddonCommand.js +3 -3
- package/dist-cjs/commands/DescribeAddonVersionsCommand.js +3 -3
- package/dist-cjs/commands/DescribeClusterCommand.js +3 -3
- package/dist-cjs/commands/DescribeFargateProfileCommand.js +3 -3
- package/dist-cjs/commands/DescribeIdentityProviderConfigCommand.js +3 -3
- package/dist-cjs/commands/DescribeNodegroupCommand.js +3 -3
- package/dist-cjs/commands/DescribeUpdateCommand.js +3 -3
- package/dist-cjs/commands/DisassociateIdentityProviderConfigCommand.js +3 -3
- package/dist-cjs/commands/ListAddonsCommand.js +3 -3
- package/dist-cjs/commands/ListClustersCommand.js +3 -3
- package/dist-cjs/commands/ListFargateProfilesCommand.js +3 -3
- package/dist-cjs/commands/ListIdentityProviderConfigsCommand.js +3 -3
- package/dist-cjs/commands/ListNodegroupsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListUpdatesCommand.js +3 -3
- package/dist-cjs/commands/RegisterClusterCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateAddonCommand.js +3 -3
- package/dist-cjs/commands/UpdateClusterConfigCommand.js +3 -3
- package/dist-cjs/commands/UpdateClusterVersionCommand.js +3 -3
- package/dist-cjs/commands/UpdateNodegroupConfigCommand.js +3 -3
- package/dist-cjs/commands/UpdateNodegroupVersionCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_restJson1.js +277 -277
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/waiters/waitForAddonActive.js +3 -3
- package/dist-cjs/waiters/waitForAddonDeleted.js +3 -3
- package/dist-cjs/waiters/waitForClusterActive.js +3 -3
- package/dist-cjs/waiters/waitForClusterDeleted.js +3 -3
- package/dist-cjs/waiters/waitForFargateProfileActive.js +3 -3
- package/dist-cjs/waiters/waitForFargateProfileDeleted.js +3 -3
- package/dist-cjs/waiters/waitForNodegroupActive.js +3 -3
- package/dist-cjs/waiters/waitForNodegroupDeleted.js +3 -3
- package/dist-es/EKS.js +34 -34
- package/dist-es/pagination/DescribeAddonVersionsPaginator.js +4 -4
- package/dist-es/pagination/ListAddonsPaginator.js +4 -4
- package/dist-es/pagination/ListClustersPaginator.js +4 -4
- package/dist-es/pagination/ListFargateProfilesPaginator.js +4 -4
- package/dist-es/pagination/ListIdentityProviderConfigsPaginator.js +4 -4
- package/dist-es/pagination/ListNodegroupsPaginator.js +4 -4
- package/dist-es/pagination/ListUpdatesPaginator.js +4 -4
- package/dist-es/protocols/Aws_restJson1.js +34 -34
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +35 -35
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListFargateProfilesCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListFargateProfilesCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listFargateProfiles.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listFargateProfiles.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListFargateProfiles(config, input) {
|
|
|
48
48
|
input.nextToken = token;
|
|
49
49
|
input["maxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof EKS)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof EKSClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListIdentityProviderConfigsCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListIdentityProviderConfigsCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listIdentityProviderConfigs.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listIdentityProviderConfigs.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListIdentityProviderConfigs(config, input) {
|
|
|
48
48
|
input.nextToken = token;
|
|
49
49
|
input["maxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof EKS)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof EKSClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListNodegroupsCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListNodegroupsCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listNodegroups.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listNodegroups.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListNodegroups(config, input) {
|
|
|
48
48
|
input.nextToken = token;
|
|
49
49
|
input["maxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof EKS)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof EKSClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListUpdatesCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListUpdatesCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listUpdates.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listUpdates.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListUpdates(config, input) {
|
|
|
48
48
|
input.nextToken = token;
|
|
49
49
|
input["maxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof EKS)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof EKSClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -15,7 +15,7 @@ export var serializeAws_restJson1AssociateEncryptionConfigCommand = function (in
|
|
|
15
15
|
headers = {
|
|
16
16
|
"content-type": "application/json",
|
|
17
17
|
};
|
|
18
|
-
resolvedPath = ""
|
|
18
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
19
19
|
"/clusters/{clusterName}/encryption-config/associate";
|
|
20
20
|
if (input.clusterName !== undefined) {
|
|
21
21
|
labelValue = input.clusterName;
|
|
@@ -54,7 +54,7 @@ export var serializeAws_restJson1AssociateIdentityProviderConfigCommand = functi
|
|
|
54
54
|
headers = {
|
|
55
55
|
"content-type": "application/json",
|
|
56
56
|
};
|
|
57
|
-
resolvedPath = ""
|
|
57
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
58
58
|
"/clusters/{clusterName}/identity-provider-configs/associate";
|
|
59
59
|
if (input.clusterName !== undefined) {
|
|
60
60
|
labelValue = input.clusterName;
|
|
@@ -91,7 +91,7 @@ export var serializeAws_restJson1CreateAddonCommand = function (input, context)
|
|
|
91
91
|
headers = {
|
|
92
92
|
"content-type": "application/json",
|
|
93
93
|
};
|
|
94
|
-
resolvedPath = ""
|
|
94
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/addons";
|
|
95
95
|
if (input.clusterName !== undefined) {
|
|
96
96
|
labelValue = input.clusterName;
|
|
97
97
|
if (labelValue.length <= 0) {
|
|
@@ -128,7 +128,7 @@ export var serializeAws_restJson1CreateClusterCommand = function (input, context
|
|
|
128
128
|
headers = {
|
|
129
129
|
"content-type": "application/json",
|
|
130
130
|
};
|
|
131
|
-
resolvedPath = ""
|
|
131
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters";
|
|
132
132
|
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({ clientRequestToken: (_c = input.clientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.encryptionConfig !== undefined &&
|
|
133
133
|
input.encryptionConfig !== null && {
|
|
134
134
|
encryptionConfig: serializeAws_restJson1EncryptionConfigList(input.encryptionConfig, context),
|
|
@@ -163,7 +163,7 @@ export var serializeAws_restJson1CreateFargateProfileCommand = function (input,
|
|
|
163
163
|
headers = {
|
|
164
164
|
"content-type": "application/json",
|
|
165
165
|
};
|
|
166
|
-
resolvedPath = ""
|
|
166
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/fargate-profiles";
|
|
167
167
|
if (input.clusterName !== undefined) {
|
|
168
168
|
labelValue = input.clusterName;
|
|
169
169
|
if (labelValue.length <= 0) {
|
|
@@ -204,7 +204,7 @@ export var serializeAws_restJson1CreateNodegroupCommand = function (input, conte
|
|
|
204
204
|
headers = {
|
|
205
205
|
"content-type": "application/json",
|
|
206
206
|
};
|
|
207
|
-
resolvedPath = ""
|
|
207
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/node-groups";
|
|
208
208
|
if (input.clusterName !== undefined) {
|
|
209
209
|
labelValue = input.clusterName;
|
|
210
210
|
if (labelValue.length <= 0) {
|
|
@@ -255,7 +255,7 @@ export var serializeAws_restJson1DeleteAddonCommand = function (input, context)
|
|
|
255
255
|
case 1:
|
|
256
256
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
257
257
|
headers = {};
|
|
258
|
-
resolvedPath = ""
|
|
258
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
259
259
|
"/clusters/{clusterName}/addons/{addonName}";
|
|
260
260
|
if (input.clusterName !== undefined) {
|
|
261
261
|
labelValue = input.clusterName;
|
|
@@ -299,7 +299,7 @@ export var serializeAws_restJson1DeleteClusterCommand = function (input, context
|
|
|
299
299
|
case 1:
|
|
300
300
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
301
301
|
headers = {};
|
|
302
|
-
resolvedPath = ""
|
|
302
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}";
|
|
303
303
|
if (input.name !== undefined) {
|
|
304
304
|
labelValue = input.name;
|
|
305
305
|
if (labelValue.length <= 0) {
|
|
@@ -330,7 +330,7 @@ export var serializeAws_restJson1DeleteFargateProfileCommand = function (input,
|
|
|
330
330
|
case 1:
|
|
331
331
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
332
332
|
headers = {};
|
|
333
|
-
resolvedPath = ""
|
|
333
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
334
334
|
"/clusters/{clusterName}/fargate-profiles/{fargateProfileName}";
|
|
335
335
|
if (input.clusterName !== undefined) {
|
|
336
336
|
labelValue = input.clusterName;
|
|
@@ -372,7 +372,7 @@ export var serializeAws_restJson1DeleteNodegroupCommand = function (input, conte
|
|
|
372
372
|
case 1:
|
|
373
373
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
374
374
|
headers = {};
|
|
375
|
-
resolvedPath = ""
|
|
375
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
376
376
|
"/clusters/{clusterName}/node-groups/{nodegroupName}";
|
|
377
377
|
if (input.clusterName !== undefined) {
|
|
378
378
|
labelValue = input.clusterName;
|
|
@@ -414,7 +414,7 @@ export var serializeAws_restJson1DeregisterClusterCommand = function (input, con
|
|
|
414
414
|
case 1:
|
|
415
415
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
416
416
|
headers = {};
|
|
417
|
-
resolvedPath = ""
|
|
417
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/cluster-registrations/{name}";
|
|
418
418
|
if (input.name !== undefined) {
|
|
419
419
|
labelValue = input.name;
|
|
420
420
|
if (labelValue.length <= 0) {
|
|
@@ -445,7 +445,7 @@ export var serializeAws_restJson1DescribeAddonCommand = function (input, context
|
|
|
445
445
|
case 1:
|
|
446
446
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
447
447
|
headers = {};
|
|
448
|
-
resolvedPath = ""
|
|
448
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
449
449
|
"/clusters/{clusterName}/addons/{addonName}";
|
|
450
450
|
if (input.clusterName !== undefined) {
|
|
451
451
|
labelValue = input.clusterName;
|
|
@@ -487,7 +487,7 @@ export var serializeAws_restJson1DescribeAddonVersionsCommand = function (input,
|
|
|
487
487
|
case 1:
|
|
488
488
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
489
489
|
headers = {};
|
|
490
|
-
resolvedPath = ""
|
|
490
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/addons/supported-versions";
|
|
491
491
|
query = __assign(__assign(__assign(__assign({}, (input.kubernetesVersion !== undefined && { kubernetesVersion: input.kubernetesVersion })), (input.maxResults !== undefined && { maxResults: input.maxResults.toString() })), (input.nextToken !== undefined && { nextToken: input.nextToken })), (input.addonName !== undefined && { addonName: input.addonName }));
|
|
492
492
|
return [2, new __HttpRequest({
|
|
493
493
|
protocol: protocol,
|
|
@@ -510,7 +510,7 @@ export var serializeAws_restJson1DescribeClusterCommand = function (input, conte
|
|
|
510
510
|
case 1:
|
|
511
511
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
512
512
|
headers = {};
|
|
513
|
-
resolvedPath = ""
|
|
513
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}";
|
|
514
514
|
if (input.name !== undefined) {
|
|
515
515
|
labelValue = input.name;
|
|
516
516
|
if (labelValue.length <= 0) {
|
|
@@ -541,7 +541,7 @@ export var serializeAws_restJson1DescribeFargateProfileCommand = function (input
|
|
|
541
541
|
case 1:
|
|
542
542
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
543
543
|
headers = {};
|
|
544
|
-
resolvedPath = ""
|
|
544
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
545
545
|
"/clusters/{clusterName}/fargate-profiles/{fargateProfileName}";
|
|
546
546
|
if (input.clusterName !== undefined) {
|
|
547
547
|
labelValue = input.clusterName;
|
|
@@ -585,7 +585,7 @@ export var serializeAws_restJson1DescribeIdentityProviderConfigCommand = functio
|
|
|
585
585
|
headers = {
|
|
586
586
|
"content-type": "application/json",
|
|
587
587
|
};
|
|
588
|
-
resolvedPath = ""
|
|
588
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
589
589
|
"/clusters/{clusterName}/identity-provider-configs/describe";
|
|
590
590
|
if (input.clusterName !== undefined) {
|
|
591
591
|
labelValue = input.clusterName;
|
|
@@ -621,7 +621,7 @@ export var serializeAws_restJson1DescribeNodegroupCommand = function (input, con
|
|
|
621
621
|
case 1:
|
|
622
622
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
623
623
|
headers = {};
|
|
624
|
-
resolvedPath = ""
|
|
624
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
625
625
|
"/clusters/{clusterName}/node-groups/{nodegroupName}";
|
|
626
626
|
if (input.clusterName !== undefined) {
|
|
627
627
|
labelValue = input.clusterName;
|
|
@@ -663,7 +663,7 @@ export var serializeAws_restJson1DescribeUpdateCommand = function (input, contex
|
|
|
663
663
|
case 1:
|
|
664
664
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
665
665
|
headers = {};
|
|
666
|
-
resolvedPath = ""
|
|
666
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates/{updateId}";
|
|
667
667
|
if (input.name !== undefined) {
|
|
668
668
|
labelValue = input.name;
|
|
669
669
|
if (labelValue.length <= 0) {
|
|
@@ -709,7 +709,7 @@ export var serializeAws_restJson1DisassociateIdentityProviderConfigCommand = fun
|
|
|
709
709
|
headers = {
|
|
710
710
|
"content-type": "application/json",
|
|
711
711
|
};
|
|
712
|
-
resolvedPath = ""
|
|
712
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
713
713
|
"/clusters/{clusterName}/identity-provider-configs/disassociate";
|
|
714
714
|
if (input.clusterName !== undefined) {
|
|
715
715
|
labelValue = input.clusterName;
|
|
@@ -745,7 +745,7 @@ export var serializeAws_restJson1ListAddonsCommand = function (input, context) {
|
|
|
745
745
|
case 1:
|
|
746
746
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
747
747
|
headers = {};
|
|
748
|
-
resolvedPath = ""
|
|
748
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/addons";
|
|
749
749
|
if (input.clusterName !== undefined) {
|
|
750
750
|
labelValue = input.clusterName;
|
|
751
751
|
if (labelValue.length <= 0) {
|
|
@@ -778,7 +778,7 @@ export var serializeAws_restJson1ListClustersCommand = function (input, context)
|
|
|
778
778
|
case 1:
|
|
779
779
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
780
780
|
headers = {};
|
|
781
|
-
resolvedPath = ""
|
|
781
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters";
|
|
782
782
|
query = __assign(__assign(__assign({}, (input.maxResults !== undefined && { maxResults: input.maxResults.toString() })), (input.nextToken !== undefined && { nextToken: input.nextToken })), (input.include !== undefined && { include: (input.include || []).map(function (_entry) { return _entry; }) }));
|
|
783
783
|
return [2, new __HttpRequest({
|
|
784
784
|
protocol: protocol,
|
|
@@ -801,7 +801,7 @@ export var serializeAws_restJson1ListFargateProfilesCommand = function (input, c
|
|
|
801
801
|
case 1:
|
|
802
802
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
803
803
|
headers = {};
|
|
804
|
-
resolvedPath = ""
|
|
804
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/fargate-profiles";
|
|
805
805
|
if (input.clusterName !== undefined) {
|
|
806
806
|
labelValue = input.clusterName;
|
|
807
807
|
if (labelValue.length <= 0) {
|
|
@@ -834,7 +834,7 @@ export var serializeAws_restJson1ListIdentityProviderConfigsCommand = function (
|
|
|
834
834
|
case 1:
|
|
835
835
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
836
836
|
headers = {};
|
|
837
|
-
resolvedPath = ""
|
|
837
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
838
838
|
"/clusters/{clusterName}/identity-provider-configs";
|
|
839
839
|
if (input.clusterName !== undefined) {
|
|
840
840
|
labelValue = input.clusterName;
|
|
@@ -868,7 +868,7 @@ export var serializeAws_restJson1ListNodegroupsCommand = function (input, contex
|
|
|
868
868
|
case 1:
|
|
869
869
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
870
870
|
headers = {};
|
|
871
|
-
resolvedPath = ""
|
|
871
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/node-groups";
|
|
872
872
|
if (input.clusterName !== undefined) {
|
|
873
873
|
labelValue = input.clusterName;
|
|
874
874
|
if (labelValue.length <= 0) {
|
|
@@ -901,7 +901,7 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
|
|
|
901
901
|
case 1:
|
|
902
902
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
903
903
|
headers = {};
|
|
904
|
-
resolvedPath = ""
|
|
904
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
|
|
905
905
|
if (input.resourceArn !== undefined) {
|
|
906
906
|
labelValue = input.resourceArn;
|
|
907
907
|
if (labelValue.length <= 0) {
|
|
@@ -932,7 +932,7 @@ export var serializeAws_restJson1ListUpdatesCommand = function (input, context)
|
|
|
932
932
|
case 1:
|
|
933
933
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
934
934
|
headers = {};
|
|
935
|
-
resolvedPath = ""
|
|
935
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates";
|
|
936
936
|
if (input.name !== undefined) {
|
|
937
937
|
labelValue = input.name;
|
|
938
938
|
if (labelValue.length <= 0) {
|
|
@@ -968,7 +968,7 @@ export var serializeAws_restJson1RegisterClusterCommand = function (input, conte
|
|
|
968
968
|
headers = {
|
|
969
969
|
"content-type": "application/json",
|
|
970
970
|
};
|
|
971
|
-
resolvedPath = ""
|
|
971
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/cluster-registrations";
|
|
972
972
|
body = JSON.stringify(__assign(__assign(__assign({ clientRequestToken: (_c = input.clientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.connectorConfig !== undefined &&
|
|
973
973
|
input.connectorConfig !== null && {
|
|
974
974
|
connectorConfig: serializeAws_restJson1ConnectorConfigRequest(input.connectorConfig, context),
|
|
@@ -995,7 +995,7 @@ export var serializeAws_restJson1TagResourceCommand = function (input, context)
|
|
|
995
995
|
headers = {
|
|
996
996
|
"content-type": "application/json",
|
|
997
997
|
};
|
|
998
|
-
resolvedPath = ""
|
|
998
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
|
|
999
999
|
if (input.resourceArn !== undefined) {
|
|
1000
1000
|
labelValue = input.resourceArn;
|
|
1001
1001
|
if (labelValue.length <= 0) {
|
|
@@ -1027,7 +1027,7 @@ export var serializeAws_restJson1UntagResourceCommand = function (input, context
|
|
|
1027
1027
|
case 1:
|
|
1028
1028
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1029
1029
|
headers = {};
|
|
1030
|
-
resolvedPath = ""
|
|
1030
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
|
|
1031
1031
|
if (input.resourceArn !== undefined) {
|
|
1032
1032
|
labelValue = input.resourceArn;
|
|
1033
1033
|
if (labelValue.length <= 0) {
|
|
@@ -1063,7 +1063,7 @@ export var serializeAws_restJson1UpdateAddonCommand = function (input, context)
|
|
|
1063
1063
|
headers = {
|
|
1064
1064
|
"content-type": "application/json",
|
|
1065
1065
|
};
|
|
1066
|
-
resolvedPath = ""
|
|
1066
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1067
1067
|
"/clusters/{clusterName}/addons/{addonName}/update";
|
|
1068
1068
|
if (input.clusterName !== undefined) {
|
|
1069
1069
|
labelValue = input.clusterName;
|
|
@@ -1111,7 +1111,7 @@ export var serializeAws_restJson1UpdateClusterConfigCommand = function (input, c
|
|
|
1111
1111
|
headers = {
|
|
1112
1112
|
"content-type": "application/json",
|
|
1113
1113
|
};
|
|
1114
|
-
resolvedPath = ""
|
|
1114
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/update-config";
|
|
1115
1115
|
if (input.name !== undefined) {
|
|
1116
1116
|
labelValue = input.name;
|
|
1117
1117
|
if (labelValue.length <= 0) {
|
|
@@ -1150,7 +1150,7 @@ export var serializeAws_restJson1UpdateClusterVersionCommand = function (input,
|
|
|
1150
1150
|
headers = {
|
|
1151
1151
|
"content-type": "application/json",
|
|
1152
1152
|
};
|
|
1153
|
-
resolvedPath = ""
|
|
1153
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates";
|
|
1154
1154
|
if (input.name !== undefined) {
|
|
1155
1155
|
labelValue = input.name;
|
|
1156
1156
|
if (labelValue.length <= 0) {
|
|
@@ -1185,7 +1185,7 @@ export var serializeAws_restJson1UpdateNodegroupConfigCommand = function (input,
|
|
|
1185
1185
|
headers = {
|
|
1186
1186
|
"content-type": "application/json",
|
|
1187
1187
|
};
|
|
1188
|
-
resolvedPath = ""
|
|
1188
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1189
1189
|
"/clusters/{clusterName}/node-groups/{nodegroupName}/update-config";
|
|
1190
1190
|
if (input.clusterName !== undefined) {
|
|
1191
1191
|
labelValue = input.clusterName;
|
|
@@ -1239,7 +1239,7 @@ export var serializeAws_restJson1UpdateNodegroupVersionCommand = function (input
|
|
|
1239
1239
|
headers = {
|
|
1240
1240
|
"content-type": "application/json",
|
|
1241
1241
|
};
|
|
1242
|
-
resolvedPath = ""
|
|
1242
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1243
1243
|
"/clusters/{clusterName}/node-groups/{nodegroupName}/update-version";
|
|
1244
1244
|
if (input.clusterName !== undefined) {
|
|
1245
1245
|
labelValue = input.clusterName;
|
|
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
23
|
serviceId: string;
|
|
24
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
27
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
28
|
tls?: boolean | undefined;
|
|
29
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
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.56.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",
|
|
@@ -18,42 +18,42 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
-
"tslib": "^2.3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.56.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.56.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.56.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.55.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.55.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.55.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.55.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.56.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.56.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.55.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.56.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.55.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.55.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.55.0",
|
|
39
|
+
"@aws-sdk/types": "3.55.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.55.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.55.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.56.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.55.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.56.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.55.0",
|
|
52
|
+
"tslib": "^2.3.1",
|
|
53
53
|
"uuid": "^8.3.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.55.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"@types/uuid": "^8.3.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"downlevel-dts": "0.7.0",
|
|
62
62
|
"rimraf": "3.0.2",
|
|
63
63
|
"typedoc": "0.19.2",
|
|
64
|
-
"typescript": "~4.
|
|
64
|
+
"typescript": "~4.6.2"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=12.0.0"
|