@aws-sdk/client-eks 3.95.0 → 3.105.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 +27 -0
- package/dist-cjs/EKSClient.js +2 -0
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/EKSClient.js +2 -0
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/models/models_0.d.ts +20 -60
- package/dist-types/ts3.4/models/models_0.d.ts +20 -60
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-eks
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-eks
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-eks
|
package/dist-cjs/EKSClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class EKSClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -17,8 +17,10 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
19
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
20
|
+
const smithy_client_2 = require("@aws-sdk/smithy-client");
|
|
20
21
|
const getRuntimeConfig = (config) => {
|
|
21
22
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
23
|
+
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
22
24
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
23
25
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
26
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
package/dist-es/EKSClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var EKSClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -14,8 +14,10 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
|
14
14
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
15
|
import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
|
|
16
16
|
import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
|
|
17
|
+
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
17
18
|
export var getRuntimeConfig = function (config) {
|
|
18
19
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
20
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
19
21
|
var defaultsMode = resolveDefaultsModeConfig(config);
|
|
20
22
|
var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
|
|
21
23
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
@@ -111,9 +111,7 @@ export interface Addon {
|
|
|
111
111
|
* Add-on tags do not propagate to any other resources associated with the cluster.
|
|
112
112
|
* </p>
|
|
113
113
|
*/
|
|
114
|
-
tags?:
|
|
115
|
-
[key: string]: string;
|
|
116
|
-
};
|
|
114
|
+
tags?: Record<string, string>;
|
|
117
115
|
}
|
|
118
116
|
export declare namespace Addon {
|
|
119
117
|
/**
|
|
@@ -632,9 +630,7 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
632
630
|
* number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
|
|
633
631
|
* quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
634
632
|
*/
|
|
635
|
-
requiredClaims?:
|
|
636
|
-
[key: string]: string;
|
|
637
|
-
};
|
|
633
|
+
requiredClaims?: Record<string, string>;
|
|
638
634
|
}
|
|
639
635
|
export declare namespace OidcIdentityProviderConfigRequest {
|
|
640
636
|
/**
|
|
@@ -656,9 +652,7 @@ export interface AssociateIdentityProviderConfigRequest {
|
|
|
656
652
|
* <p>The metadata to apply to the configuration to assist with categorization and
|
|
657
653
|
* organization. Each tag consists of a key and an optional value. You define both.</p>
|
|
658
654
|
*/
|
|
659
|
-
tags?:
|
|
660
|
-
[key: string]: string;
|
|
661
|
-
};
|
|
655
|
+
tags?: Record<string, string>;
|
|
662
656
|
/**
|
|
663
657
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
664
658
|
* request.</p>
|
|
@@ -679,9 +673,7 @@ export interface AssociateIdentityProviderConfigResponse {
|
|
|
679
673
|
/**
|
|
680
674
|
* <p>The tags for the resource.</p>
|
|
681
675
|
*/
|
|
682
|
-
tags?:
|
|
683
|
-
[key: string]: string;
|
|
684
|
-
};
|
|
676
|
+
tags?: Record<string, string>;
|
|
685
677
|
}
|
|
686
678
|
export declare namespace AssociateIdentityProviderConfigResponse {
|
|
687
679
|
/**
|
|
@@ -749,9 +741,7 @@ export interface CreateAddonRequest {
|
|
|
749
741
|
* <p>The metadata to apply to the cluster to assist with categorization and organization.
|
|
750
742
|
* Each tag consists of a key and an optional value. You define both.</p>
|
|
751
743
|
*/
|
|
752
|
-
tags?:
|
|
753
|
-
[key: string]: string;
|
|
754
|
-
};
|
|
744
|
+
tags?: Record<string, string>;
|
|
755
745
|
}
|
|
756
746
|
export declare namespace CreateAddonRequest {
|
|
757
747
|
/**
|
|
@@ -1000,9 +990,7 @@ export interface CreateClusterRequest {
|
|
|
1000
990
|
* <p>The metadata to apply to the cluster to assist with categorization and organization.
|
|
1001
991
|
* Each tag consists of a key and an optional value. You define both.</p>
|
|
1002
992
|
*/
|
|
1003
|
-
tags?:
|
|
1004
|
-
[key: string]: string;
|
|
1005
|
-
};
|
|
993
|
+
tags?: Record<string, string>;
|
|
1006
994
|
/**
|
|
1007
995
|
* <p>The encryption configuration for the cluster.</p>
|
|
1008
996
|
*/
|
|
@@ -1273,9 +1261,7 @@ export interface Cluster {
|
|
|
1273
1261
|
* Cluster tags do not propagate to any other resources associated with the
|
|
1274
1262
|
* cluster.</p>
|
|
1275
1263
|
*/
|
|
1276
|
-
tags?:
|
|
1277
|
-
[key: string]: string;
|
|
1278
|
-
};
|
|
1264
|
+
tags?: Record<string, string>;
|
|
1279
1265
|
/**
|
|
1280
1266
|
* <p>The encryption configuration for the cluster.</p>
|
|
1281
1267
|
*/
|
|
@@ -1372,9 +1358,7 @@ export interface FargateProfileSelector {
|
|
|
1372
1358
|
* <p>The Kubernetes labels that the selector should match. A pod must contain all of the
|
|
1373
1359
|
* labels that are specified in the selector for it to be considered a match.</p>
|
|
1374
1360
|
*/
|
|
1375
|
-
labels?:
|
|
1376
|
-
[key: string]: string;
|
|
1377
|
-
};
|
|
1361
|
+
labels?: Record<string, string>;
|
|
1378
1362
|
}
|
|
1379
1363
|
export declare namespace FargateProfileSelector {
|
|
1380
1364
|
/**
|
|
@@ -1423,9 +1407,7 @@ export interface CreateFargateProfileRequest {
|
|
|
1423
1407
|
* Fargate profile tags do not propagate to any other resources associated with the
|
|
1424
1408
|
* Fargate profile, such as the pods that are scheduled with it.</p>
|
|
1425
1409
|
*/
|
|
1426
|
-
tags?:
|
|
1427
|
-
[key: string]: string;
|
|
1428
|
-
};
|
|
1410
|
+
tags?: Record<string, string>;
|
|
1429
1411
|
}
|
|
1430
1412
|
export declare namespace CreateFargateProfileRequest {
|
|
1431
1413
|
/**
|
|
@@ -1480,9 +1462,7 @@ export interface FargateProfile {
|
|
|
1480
1462
|
* Fargate profile tags do not propagate to any other resources associated with the
|
|
1481
1463
|
* Fargate profile, such as the pods that are scheduled with it.</p>
|
|
1482
1464
|
*/
|
|
1483
|
-
tags?:
|
|
1484
|
-
[key: string]: string;
|
|
1485
|
-
};
|
|
1465
|
+
tags?: Record<string, string>;
|
|
1486
1466
|
}
|
|
1487
1467
|
export declare namespace FargateProfile {
|
|
1488
1468
|
/**
|
|
@@ -1742,9 +1722,7 @@ export interface CreateNodegroupRequest {
|
|
|
1742
1722
|
* <p>The Kubernetes labels to be applied to the nodes in the node group when they are
|
|
1743
1723
|
* created.</p>
|
|
1744
1724
|
*/
|
|
1745
|
-
labels?:
|
|
1746
|
-
[key: string]: string;
|
|
1747
|
-
};
|
|
1725
|
+
labels?: Record<string, string>;
|
|
1748
1726
|
/**
|
|
1749
1727
|
* <p>The Kubernetes taints to be applied to the nodes in the node group. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
1750
1728
|
*/
|
|
@@ -1755,9 +1733,7 @@ export interface CreateNodegroupRequest {
|
|
|
1755
1733
|
* define both. Node group tags do not propagate to any other resources associated with the node
|
|
1756
1734
|
* group, such as the Amazon EC2 instances or subnets.</p>
|
|
1757
1735
|
*/
|
|
1758
|
-
tags?:
|
|
1759
|
-
[key: string]: string;
|
|
1760
|
-
};
|
|
1736
|
+
tags?: Record<string, string>;
|
|
1761
1737
|
/**
|
|
1762
1738
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1763
1739
|
* request.</p>
|
|
@@ -2066,9 +2042,7 @@ export interface Nodegroup {
|
|
|
2066
2042
|
* may be other Kubernetes labels applied to the nodes in this group.</p>
|
|
2067
2043
|
* </note>
|
|
2068
2044
|
*/
|
|
2069
|
-
labels?:
|
|
2070
|
-
[key: string]: string;
|
|
2071
|
-
};
|
|
2045
|
+
labels?: Record<string, string>;
|
|
2072
2046
|
/**
|
|
2073
2047
|
* <p>The Kubernetes taints to be applied to the nodes in the node group when they are
|
|
2074
2048
|
* created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
|
|
@@ -2107,9 +2081,7 @@ export interface Nodegroup {
|
|
|
2107
2081
|
* tags do not propagate to any other resources associated with the node group, such as the
|
|
2108
2082
|
* Amazon EC2 instances or subnets. </p>
|
|
2109
2083
|
*/
|
|
2110
|
-
tags?:
|
|
2111
|
-
[key: string]: string;
|
|
2112
|
-
};
|
|
2084
|
+
tags?: Record<string, string>;
|
|
2113
2085
|
}
|
|
2114
2086
|
export declare namespace Nodegroup {
|
|
2115
2087
|
/**
|
|
@@ -2505,16 +2477,12 @@ export interface OidcIdentityProviderConfig {
|
|
|
2505
2477
|
* <p>The key-value pairs that describe required claims in the identity token. If set, each
|
|
2506
2478
|
* claim is verified to be present in the token with a matching value.</p>
|
|
2507
2479
|
*/
|
|
2508
|
-
requiredClaims?:
|
|
2509
|
-
[key: string]: string;
|
|
2510
|
-
};
|
|
2480
|
+
requiredClaims?: Record<string, string>;
|
|
2511
2481
|
/**
|
|
2512
2482
|
* <p>The metadata to apply to the provider configuration to assist with categorization and
|
|
2513
2483
|
* organization. Each tag consists of a key and an optional value. You define both.</p>
|
|
2514
2484
|
*/
|
|
2515
|
-
tags?:
|
|
2516
|
-
[key: string]: string;
|
|
2517
|
-
};
|
|
2485
|
+
tags?: Record<string, string>;
|
|
2518
2486
|
/**
|
|
2519
2487
|
* <p>The status of the OIDC identity provider.</p>
|
|
2520
2488
|
*/
|
|
@@ -2950,9 +2918,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2950
2918
|
/**
|
|
2951
2919
|
* <p>The tags for the resource.</p>
|
|
2952
2920
|
*/
|
|
2953
|
-
tags?:
|
|
2954
|
-
[key: string]: string;
|
|
2955
|
-
};
|
|
2921
|
+
tags?: Record<string, string>;
|
|
2956
2922
|
}
|
|
2957
2923
|
export declare namespace ListTagsForResourceResponse {
|
|
2958
2924
|
/**
|
|
@@ -3081,9 +3047,7 @@ export interface RegisterClusterRequest {
|
|
|
3081
3047
|
* define. Cluster tags do not propagate to any other resources associated with the
|
|
3082
3048
|
* cluster.</p>
|
|
3083
3049
|
*/
|
|
3084
|
-
tags?:
|
|
3085
|
-
[key: string]: string;
|
|
3086
|
-
};
|
|
3050
|
+
tags?: Record<string, string>;
|
|
3087
3051
|
}
|
|
3088
3052
|
export declare namespace RegisterClusterRequest {
|
|
3089
3053
|
/**
|
|
@@ -3123,9 +3087,7 @@ export interface TagResourceRequest {
|
|
|
3123
3087
|
/**
|
|
3124
3088
|
* <p>The tags to add to the resource. A tag is an array of key-value pairs.</p>
|
|
3125
3089
|
*/
|
|
3126
|
-
tags:
|
|
3127
|
-
[key: string]: string;
|
|
3128
|
-
} | undefined;
|
|
3090
|
+
tags: Record<string, string> | undefined;
|
|
3129
3091
|
}
|
|
3130
3092
|
export declare namespace TagResourceRequest {
|
|
3131
3093
|
/**
|
|
@@ -3311,9 +3273,7 @@ export interface UpdateLabelsPayload {
|
|
|
3311
3273
|
/**
|
|
3312
3274
|
* <p>Kubernetes labels to be added or updated.</p>
|
|
3313
3275
|
*/
|
|
3314
|
-
addOrUpdateLabels?:
|
|
3315
|
-
[key: string]: string;
|
|
3316
|
-
};
|
|
3276
|
+
addOrUpdateLabels?: Record<string, string>;
|
|
3317
3277
|
/**
|
|
3318
3278
|
* <p>Kubernetes labels to be removed.</p>
|
|
3319
3279
|
*/
|
|
@@ -61,9 +61,7 @@ export interface Addon {
|
|
|
61
61
|
|
|
62
62
|
serviceAccountRoleArn?: string;
|
|
63
63
|
|
|
64
|
-
tags?:
|
|
65
|
-
[key: string]: string;
|
|
66
|
-
};
|
|
64
|
+
tags?: Record<string, string>;
|
|
67
65
|
}
|
|
68
66
|
export declare namespace Addon {
|
|
69
67
|
|
|
@@ -345,9 +343,7 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
345
343
|
|
|
346
344
|
groupsPrefix?: string;
|
|
347
345
|
|
|
348
|
-
requiredClaims?:
|
|
349
|
-
[key: string]: string;
|
|
350
|
-
};
|
|
346
|
+
requiredClaims?: Record<string, string>;
|
|
351
347
|
}
|
|
352
348
|
export declare namespace OidcIdentityProviderConfigRequest {
|
|
353
349
|
|
|
@@ -359,9 +355,7 @@ export interface AssociateIdentityProviderConfigRequest {
|
|
|
359
355
|
|
|
360
356
|
oidc: OidcIdentityProviderConfigRequest | undefined;
|
|
361
357
|
|
|
362
|
-
tags?:
|
|
363
|
-
[key: string]: string;
|
|
364
|
-
};
|
|
358
|
+
tags?: Record<string, string>;
|
|
365
359
|
|
|
366
360
|
clientRequestToken?: string;
|
|
367
361
|
}
|
|
@@ -373,9 +367,7 @@ export interface AssociateIdentityProviderConfigResponse {
|
|
|
373
367
|
|
|
374
368
|
update?: Update;
|
|
375
369
|
|
|
376
|
-
tags?:
|
|
377
|
-
[key: string]: string;
|
|
378
|
-
};
|
|
370
|
+
tags?: Record<string, string>;
|
|
379
371
|
}
|
|
380
372
|
export declare namespace AssociateIdentityProviderConfigResponse {
|
|
381
373
|
|
|
@@ -405,9 +397,7 @@ export interface CreateAddonRequest {
|
|
|
405
397
|
|
|
406
398
|
clientRequestToken?: string;
|
|
407
399
|
|
|
408
|
-
tags?:
|
|
409
|
-
[key: string]: string;
|
|
410
|
-
};
|
|
400
|
+
tags?: Record<string, string>;
|
|
411
401
|
}
|
|
412
402
|
export declare namespace CreateAddonRequest {
|
|
413
403
|
|
|
@@ -496,9 +486,7 @@ export interface CreateClusterRequest {
|
|
|
496
486
|
|
|
497
487
|
clientRequestToken?: string;
|
|
498
488
|
|
|
499
|
-
tags?:
|
|
500
|
-
[key: string]: string;
|
|
501
|
-
};
|
|
489
|
+
tags?: Record<string, string>;
|
|
502
490
|
|
|
503
491
|
encryptionConfig?: EncryptionConfig[];
|
|
504
492
|
}
|
|
@@ -616,9 +604,7 @@ export interface Cluster {
|
|
|
616
604
|
|
|
617
605
|
platformVersion?: string;
|
|
618
606
|
|
|
619
|
-
tags?:
|
|
620
|
-
[key: string]: string;
|
|
621
|
-
};
|
|
607
|
+
tags?: Record<string, string>;
|
|
622
608
|
|
|
623
609
|
encryptionConfig?: EncryptionConfig[];
|
|
624
610
|
|
|
@@ -672,9 +658,7 @@ export interface FargateProfileSelector {
|
|
|
672
658
|
|
|
673
659
|
namespace?: string;
|
|
674
660
|
|
|
675
|
-
labels?:
|
|
676
|
-
[key: string]: string;
|
|
677
|
-
};
|
|
661
|
+
labels?: Record<string, string>;
|
|
678
662
|
}
|
|
679
663
|
export declare namespace FargateProfileSelector {
|
|
680
664
|
|
|
@@ -694,9 +678,7 @@ export interface CreateFargateProfileRequest {
|
|
|
694
678
|
|
|
695
679
|
clientRequestToken?: string;
|
|
696
680
|
|
|
697
|
-
tags?:
|
|
698
|
-
[key: string]: string;
|
|
699
|
-
};
|
|
681
|
+
tags?: Record<string, string>;
|
|
700
682
|
}
|
|
701
683
|
export declare namespace CreateFargateProfileRequest {
|
|
702
684
|
|
|
@@ -722,9 +704,7 @@ export interface FargateProfile {
|
|
|
722
704
|
|
|
723
705
|
status?: FargateProfileStatus | string;
|
|
724
706
|
|
|
725
|
-
tags?:
|
|
726
|
-
[key: string]: string;
|
|
727
|
-
};
|
|
707
|
+
tags?: Record<string, string>;
|
|
728
708
|
}
|
|
729
709
|
export declare namespace FargateProfile {
|
|
730
710
|
|
|
@@ -825,15 +805,11 @@ export interface CreateNodegroupRequest {
|
|
|
825
805
|
|
|
826
806
|
nodeRole: string | undefined;
|
|
827
807
|
|
|
828
|
-
labels?:
|
|
829
|
-
[key: string]: string;
|
|
830
|
-
};
|
|
808
|
+
labels?: Record<string, string>;
|
|
831
809
|
|
|
832
810
|
taints?: Taint[];
|
|
833
811
|
|
|
834
|
-
tags?:
|
|
835
|
-
[key: string]: string;
|
|
836
|
-
};
|
|
812
|
+
tags?: Record<string, string>;
|
|
837
813
|
|
|
838
814
|
clientRequestToken?: string;
|
|
839
815
|
|
|
@@ -939,9 +915,7 @@ export interface Nodegroup {
|
|
|
939
915
|
|
|
940
916
|
nodeRole?: string;
|
|
941
917
|
|
|
942
|
-
labels?:
|
|
943
|
-
[key: string]: string;
|
|
944
|
-
};
|
|
918
|
+
labels?: Record<string, string>;
|
|
945
919
|
|
|
946
920
|
taints?: Taint[];
|
|
947
921
|
|
|
@@ -955,9 +929,7 @@ export interface Nodegroup {
|
|
|
955
929
|
|
|
956
930
|
launchTemplate?: LaunchTemplateSpecification;
|
|
957
931
|
|
|
958
|
-
tags?:
|
|
959
|
-
[key: string]: string;
|
|
960
|
-
};
|
|
932
|
+
tags?: Record<string, string>;
|
|
961
933
|
}
|
|
962
934
|
export declare namespace Nodegroup {
|
|
963
935
|
|
|
@@ -1182,13 +1154,9 @@ export interface OidcIdentityProviderConfig {
|
|
|
1182
1154
|
|
|
1183
1155
|
groupsPrefix?: string;
|
|
1184
1156
|
|
|
1185
|
-
requiredClaims?:
|
|
1186
|
-
[key: string]: string;
|
|
1187
|
-
};
|
|
1157
|
+
requiredClaims?: Record<string, string>;
|
|
1188
1158
|
|
|
1189
|
-
tags?:
|
|
1190
|
-
[key: string]: string;
|
|
1191
|
-
};
|
|
1159
|
+
tags?: Record<string, string>;
|
|
1192
1160
|
|
|
1193
1161
|
status?: ConfigStatus | string;
|
|
1194
1162
|
}
|
|
@@ -1400,9 +1368,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1400
1368
|
}
|
|
1401
1369
|
export interface ListTagsForResourceResponse {
|
|
1402
1370
|
|
|
1403
|
-
tags?:
|
|
1404
|
-
[key: string]: string;
|
|
1405
|
-
};
|
|
1371
|
+
tags?: Record<string, string>;
|
|
1406
1372
|
}
|
|
1407
1373
|
export declare namespace ListTagsForResourceResponse {
|
|
1408
1374
|
|
|
@@ -1471,9 +1437,7 @@ export interface RegisterClusterRequest {
|
|
|
1471
1437
|
|
|
1472
1438
|
clientRequestToken?: string;
|
|
1473
1439
|
|
|
1474
|
-
tags?:
|
|
1475
|
-
[key: string]: string;
|
|
1476
|
-
};
|
|
1440
|
+
tags?: Record<string, string>;
|
|
1477
1441
|
}
|
|
1478
1442
|
export declare namespace RegisterClusterRequest {
|
|
1479
1443
|
|
|
@@ -1498,9 +1462,7 @@ export interface TagResourceRequest {
|
|
|
1498
1462
|
|
|
1499
1463
|
resourceArn: string | undefined;
|
|
1500
1464
|
|
|
1501
|
-
tags:
|
|
1502
|
-
[key: string]: string;
|
|
1503
|
-
} | undefined;
|
|
1465
|
+
tags: Record<string, string> | undefined;
|
|
1504
1466
|
}
|
|
1505
1467
|
export declare namespace TagResourceRequest {
|
|
1506
1468
|
|
|
@@ -1599,9 +1561,7 @@ export declare namespace UpdateClusterVersionResponse {
|
|
|
1599
1561
|
|
|
1600
1562
|
export interface UpdateLabelsPayload {
|
|
1601
1563
|
|
|
1602
|
-
addOrUpdateLabels?:
|
|
1603
|
-
[key: string]: string;
|
|
1604
|
-
};
|
|
1564
|
+
addOrUpdateLabels?: Record<string, string>;
|
|
1605
1565
|
|
|
1606
1566
|
removeLabels?: string[];
|
|
1607
1567
|
}
|
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.105.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,15 +18,16 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|
|
@@ -35,15 +36,15 @@
|
|
|
35
36
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
37
|
"@aws-sdk/node-http-handler": "3.94.0",
|
|
37
38
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.99.0",
|
|
39
40
|
"@aws-sdk/types": "3.78.0",
|
|
40
41
|
"@aws-sdk/url-parser": "3.78.0",
|
|
41
42
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.99.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.99.0",
|
|
47
48
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
49
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
50
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|