@aws-sdk/client-eks 3.54.1 → 3.58.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist-cjs/EKSClient.js +13 -13
  3. package/dist-cjs/commands/AssociateEncryptionConfigCommand.js +3 -3
  4. package/dist-cjs/commands/AssociateIdentityProviderConfigCommand.js +3 -3
  5. package/dist-cjs/commands/CreateAddonCommand.js +3 -3
  6. package/dist-cjs/commands/CreateClusterCommand.js +3 -3
  7. package/dist-cjs/commands/CreateFargateProfileCommand.js +3 -3
  8. package/dist-cjs/commands/CreateNodegroupCommand.js +3 -3
  9. package/dist-cjs/commands/DeleteAddonCommand.js +3 -3
  10. package/dist-cjs/commands/DeleteClusterCommand.js +3 -3
  11. package/dist-cjs/commands/DeleteFargateProfileCommand.js +3 -3
  12. package/dist-cjs/commands/DeleteNodegroupCommand.js +3 -3
  13. package/dist-cjs/commands/DeregisterClusterCommand.js +3 -3
  14. package/dist-cjs/commands/DescribeAddonCommand.js +3 -3
  15. package/dist-cjs/commands/DescribeAddonVersionsCommand.js +3 -3
  16. package/dist-cjs/commands/DescribeClusterCommand.js +3 -3
  17. package/dist-cjs/commands/DescribeFargateProfileCommand.js +3 -3
  18. package/dist-cjs/commands/DescribeIdentityProviderConfigCommand.js +3 -3
  19. package/dist-cjs/commands/DescribeNodegroupCommand.js +3 -3
  20. package/dist-cjs/commands/DescribeUpdateCommand.js +3 -3
  21. package/dist-cjs/commands/DisassociateIdentityProviderConfigCommand.js +3 -3
  22. package/dist-cjs/commands/ListAddonsCommand.js +3 -3
  23. package/dist-cjs/commands/ListClustersCommand.js +3 -3
  24. package/dist-cjs/commands/ListFargateProfilesCommand.js +3 -3
  25. package/dist-cjs/commands/ListIdentityProviderConfigsCommand.js +3 -3
  26. package/dist-cjs/commands/ListNodegroupsCommand.js +3 -3
  27. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  28. package/dist-cjs/commands/ListUpdatesCommand.js +3 -3
  29. package/dist-cjs/commands/RegisterClusterCommand.js +3 -3
  30. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  31. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  32. package/dist-cjs/commands/UpdateAddonCommand.js +3 -3
  33. package/dist-cjs/commands/UpdateClusterConfigCommand.js +3 -3
  34. package/dist-cjs/commands/UpdateClusterVersionCommand.js +3 -3
  35. package/dist-cjs/commands/UpdateNodegroupConfigCommand.js +3 -3
  36. package/dist-cjs/commands/UpdateNodegroupVersionCommand.js +3 -3
  37. package/dist-cjs/endpoints.js +1 -1
  38. package/dist-cjs/protocols/Aws_restJson1.js +277 -277
  39. package/dist-cjs/runtimeConfig.browser.js +4 -4
  40. package/dist-cjs/runtimeConfig.js +9 -9
  41. package/dist-cjs/runtimeConfig.native.js +1 -1
  42. package/dist-cjs/waiters/waitForAddonActive.js +3 -3
  43. package/dist-cjs/waiters/waitForAddonDeleted.js +3 -3
  44. package/dist-cjs/waiters/waitForClusterActive.js +3 -3
  45. package/dist-cjs/waiters/waitForClusterDeleted.js +3 -3
  46. package/dist-cjs/waiters/waitForFargateProfileActive.js +3 -3
  47. package/dist-cjs/waiters/waitForFargateProfileDeleted.js +3 -3
  48. package/dist-cjs/waiters/waitForNodegroupActive.js +3 -3
  49. package/dist-cjs/waiters/waitForNodegroupDeleted.js +3 -3
  50. package/dist-es/EKS.js +34 -34
  51. package/dist-es/pagination/DescribeAddonVersionsPaginator.js +4 -4
  52. package/dist-es/pagination/ListAddonsPaginator.js +4 -4
  53. package/dist-es/pagination/ListClustersPaginator.js +4 -4
  54. package/dist-es/pagination/ListFargateProfilesPaginator.js +4 -4
  55. package/dist-es/pagination/ListIdentityProviderConfigsPaginator.js +4 -4
  56. package/dist-es/pagination/ListNodegroupsPaginator.js +4 -4
  57. package/dist-es/pagination/ListUpdatesPaginator.js +4 -4
  58. package/dist-es/protocols/Aws_restJson1.js +34 -34
  59. package/dist-types/runtimeConfig.native.d.ts +2 -2
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  61. 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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/addons";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/fargate-profiles";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/node-groups";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/cluster-registrations/{name}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/addons/supported-versions";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates/{updateId}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/addons";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/fargate-profiles";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{clusterName}/node-groups";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/cluster-registrations";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/update-config";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/clusters/{name}/updates";
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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 = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
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<string> | import("@aws-sdk/types").Provider<any>;
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> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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<string> | import("@aws-sdk/types").Provider<any>;
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> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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.54.1",
4
+ "version": "3.58.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.54.1",
22
- "@aws-sdk/config-resolver": "3.54.1",
23
- "@aws-sdk/credential-provider-node": "3.54.1",
24
- "@aws-sdk/fetch-http-handler": "3.54.1",
25
- "@aws-sdk/hash-node": "3.54.1",
26
- "@aws-sdk/invalid-dependency": "3.54.1",
27
- "@aws-sdk/middleware-content-length": "3.54.1",
28
- "@aws-sdk/middleware-host-header": "3.54.1",
29
- "@aws-sdk/middleware-logger": "3.54.1",
30
- "@aws-sdk/middleware-retry": "3.54.1",
31
- "@aws-sdk/middleware-serde": "3.54.1",
32
- "@aws-sdk/middleware-signing": "3.54.1",
33
- "@aws-sdk/middleware-stack": "3.54.1",
34
- "@aws-sdk/middleware-user-agent": "3.54.1",
35
- "@aws-sdk/node-config-provider": "3.54.1",
36
- "@aws-sdk/node-http-handler": "3.54.1",
37
- "@aws-sdk/protocol-http": "3.54.1",
38
- "@aws-sdk/smithy-client": "3.54.1",
39
- "@aws-sdk/types": "3.54.1",
40
- "@aws-sdk/url-parser": "3.54.1",
41
- "@aws-sdk/util-base64-browser": "3.52.0",
42
- "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.54.0",
44
- "@aws-sdk/util-body-length-node": "3.54.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.54.1",
46
- "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
- "@aws-sdk/util-user-agent-browser": "3.54.1",
48
- "@aws-sdk/util-user-agent-node": "3.54.1",
49
- "@aws-sdk/util-utf8-browser": "3.52.0",
50
- "@aws-sdk/util-utf8-node": "3.52.0",
51
- "@aws-sdk/util-waiter": "3.54.1",
52
- "tslib": "^2.3.0",
21
+ "@aws-sdk/client-sts": "3.58.0",
22
+ "@aws-sdk/config-resolver": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.58.0",
24
+ "@aws-sdk/fetch-http-handler": "3.58.0",
25
+ "@aws-sdk/hash-node": "3.55.0",
26
+ "@aws-sdk/invalid-dependency": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.58.0",
28
+ "@aws-sdk/middleware-host-header": "3.58.0",
29
+ "@aws-sdk/middleware-logger": "3.55.0",
30
+ "@aws-sdk/middleware-retry": "3.58.0",
31
+ "@aws-sdk/middleware-serde": "3.55.0",
32
+ "@aws-sdk/middleware-signing": "3.58.0",
33
+ "@aws-sdk/middleware-stack": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.58.0",
35
+ "@aws-sdk/node-config-provider": "3.58.0",
36
+ "@aws-sdk/node-http-handler": "3.58.0",
37
+ "@aws-sdk/protocol-http": "3.58.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.58.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.58.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.58.0",
48
+ "@aws-sdk/util-user-agent-node": "3.58.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.52.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.58.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.3.5"
64
+ "typescript": "~4.6.2"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=12.0.0"