@aws-sdk/client-eks 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +188 -207
- package/dist-es/models/models_0.js +188 -207
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +5 -5
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +4 -4
- package/dist-types/commands/CreateAddonCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +14 -14
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +6 -6
- package/dist-types/commands/CreateNodegroupCommand.d.ts +10 -10
- package/dist-types/commands/DeleteAddonCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/ListAddonsCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +2 -2
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListNodegroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListUpdatesCommand.d.ts +1 -1
- package/dist-types/commands/RegisterClusterCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAddonCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +7 -7
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +9 -9
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +283 -188
- package/dist-types/ts3.4/models/models_0.d.ts +215 -188
- package/package.json +35 -35
|
@@ -39,49 +39,49 @@ export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, _
|
|
|
39
39
|
* import { EKSClient, CreateNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
40
40
|
* // const { EKSClient, CreateNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
41
41
|
* const client = new EKSClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // CreateNodegroupRequest
|
|
43
43
|
* clusterName: "STRING_VALUE", // required
|
|
44
44
|
* nodegroupName: "STRING_VALUE", // required
|
|
45
|
-
* scalingConfig: {
|
|
45
|
+
* scalingConfig: { // NodegroupScalingConfig
|
|
46
46
|
* minSize: Number("int"),
|
|
47
47
|
* maxSize: Number("int"),
|
|
48
48
|
* desiredSize: Number("int"),
|
|
49
49
|
* },
|
|
50
50
|
* diskSize: Number("int"),
|
|
51
|
-
* subnets: [ // required
|
|
51
|
+
* subnets: [ // StringList // required
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
54
|
* instanceTypes: [
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
57
57
|
* amiType: "AL2_x86_64" || "AL2_x86_64_GPU" || "AL2_ARM_64" || "CUSTOM" || "BOTTLEROCKET_ARM_64" || "BOTTLEROCKET_x86_64" || "BOTTLEROCKET_ARM_64_NVIDIA" || "BOTTLEROCKET_x86_64_NVIDIA" || "WINDOWS_CORE_2019_x86_64" || "WINDOWS_FULL_2019_x86_64" || "WINDOWS_CORE_2022_x86_64" || "WINDOWS_FULL_2022_x86_64",
|
|
58
|
-
* remoteAccess: {
|
|
58
|
+
* remoteAccess: { // RemoteAccessConfig
|
|
59
59
|
* ec2SshKey: "STRING_VALUE",
|
|
60
60
|
* sourceSecurityGroups: [
|
|
61
61
|
* "STRING_VALUE",
|
|
62
62
|
* ],
|
|
63
63
|
* },
|
|
64
64
|
* nodeRole: "STRING_VALUE", // required
|
|
65
|
-
* labels: {
|
|
65
|
+
* labels: { // labelsMap
|
|
66
66
|
* "<keys>": "STRING_VALUE",
|
|
67
67
|
* },
|
|
68
|
-
* taints: [
|
|
69
|
-
* {
|
|
68
|
+
* taints: [ // taintsList
|
|
69
|
+
* { // Taint
|
|
70
70
|
* key: "STRING_VALUE",
|
|
71
71
|
* value: "STRING_VALUE",
|
|
72
72
|
* effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
|
|
73
73
|
* },
|
|
74
74
|
* ],
|
|
75
|
-
* tags: {
|
|
75
|
+
* tags: { // TagMap
|
|
76
76
|
* "<keys>": "STRING_VALUE",
|
|
77
77
|
* },
|
|
78
78
|
* clientRequestToken: "STRING_VALUE",
|
|
79
|
-
* launchTemplate: {
|
|
79
|
+
* launchTemplate: { // LaunchTemplateSpecification
|
|
80
80
|
* name: "STRING_VALUE",
|
|
81
81
|
* version: "STRING_VALUE",
|
|
82
82
|
* id: "STRING_VALUE",
|
|
83
83
|
* },
|
|
84
|
-
* updateConfig: {
|
|
84
|
+
* updateConfig: { // NodegroupUpdateConfig
|
|
85
85
|
* maxUnavailable: Number("int"),
|
|
86
86
|
* maxUnavailablePercentage: Number("int"),
|
|
87
87
|
* },
|
|
@@ -28,7 +28,7 @@ export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __Metadat
|
|
|
28
28
|
* import { EKSClient, DeleteAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
29
29
|
* // const { EKSClient, DeleteAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
30
30
|
* const client = new EKSClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteAddonRequest
|
|
32
32
|
* clusterName: "STRING_VALUE", // required
|
|
33
33
|
* addonName: "STRING_VALUE", // required
|
|
34
34
|
* preserve: true || false,
|
|
@@ -33,7 +33,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
33
33
|
* import { EKSClient, DeleteClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
34
34
|
* // const { EKSClient, DeleteClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
35
35
|
* const client = new EKSClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // DeleteClusterRequest
|
|
37
37
|
* name: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteClusterCommand(input);
|
|
@@ -34,7 +34,7 @@ export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileR
|
|
|
34
34
|
* import { EKSClient, DeleteFargateProfileCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
35
35
|
* // const { EKSClient, DeleteFargateProfileCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
36
36
|
* const client = new EKSClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DeleteFargateProfileRequest
|
|
38
38
|
* clusterName: "STRING_VALUE", // required
|
|
39
39
|
* fargateProfileName: "STRING_VALUE", // required
|
|
40
40
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, _
|
|
|
26
26
|
* import { EKSClient, DeleteNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DeleteNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteNodegroupRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* nodegroupName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
|
|
|
27
27
|
* import { EKSClient, DeregisterClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
28
28
|
* // const { EKSClient, DeregisterClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
29
29
|
* const client = new EKSClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeregisterClusterRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeregisterClusterCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
|
|
|
26
26
|
* import { EKSClient, DescribeAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DescribeAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeAddonRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* addonName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
|
|
|
26
26
|
* import { EKSClient, DescribeAddonConfigurationCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DescribeAddonConfigurationCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeAddonConfigurationRequest
|
|
30
30
|
* addonName: "STRING_VALUE", // required
|
|
31
31
|
* addonVersion: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -28,12 +28,12 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
|
|
|
28
28
|
* import { EKSClient, DescribeAddonVersionsCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
29
29
|
* // const { EKSClient, DescribeAddonVersionsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
30
30
|
* const client = new EKSClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeAddonVersionsRequest
|
|
32
32
|
* kubernetesVersion: "STRING_VALUE",
|
|
33
33
|
* maxResults: Number("int"),
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* addonName: "STRING_VALUE",
|
|
36
|
-
* types: [
|
|
36
|
+
* types: [ // StringList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* publishers: [
|
|
@@ -34,7 +34,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
34
34
|
* import { EKSClient, DescribeClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
35
35
|
* // const { EKSClient, DescribeClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
36
36
|
* const client = new EKSClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DescribeClusterRequest
|
|
38
38
|
* name: "STRING_VALUE", // required
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeClusterCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
|
|
|
26
26
|
* import { EKSClient, DescribeFargateProfileCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DescribeFargateProfileCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeFargateProfileRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* fargateProfileName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,9 +26,9 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
|
|
|
26
26
|
* import { EKSClient, DescribeIdentityProviderConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DescribeIdentityProviderConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeIdentityProviderConfigRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
|
-
* identityProviderConfig: {
|
|
31
|
+
* identityProviderConfig: { // IdentityProviderConfig
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
|
|
|
26
26
|
* import { EKSClient, DescribeNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, DescribeNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeNodegroupRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* nodegroupName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -30,7 +30,7 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
|
|
|
30
30
|
* import { EKSClient, DescribeUpdateCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
31
31
|
* // const { EKSClient, DescribeUpdateCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
32
32
|
* const client = new EKSClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeUpdateRequest
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
35
|
* updateId: "STRING_VALUE", // required
|
|
36
36
|
* nodegroupName: "STRING_VALUE",
|
|
@@ -29,9 +29,9 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
|
|
|
29
29
|
* import { EKSClient, DisassociateIdentityProviderConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
30
30
|
* // const { EKSClient, DisassociateIdentityProviderConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
31
31
|
* const client = new EKSClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DisassociateIdentityProviderConfigRequest
|
|
33
33
|
* clusterName: "STRING_VALUE", // required
|
|
34
|
-
* identityProviderConfig: {
|
|
34
|
+
* identityProviderConfig: { // IdentityProviderConfig
|
|
35
35
|
* type: "STRING_VALUE", // required
|
|
36
36
|
* name: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
|
|
|
26
26
|
* import { EKSClient, ListAddonsCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, ListAddonsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAddonsRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -27,10 +27,10 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
27
27
|
* import { EKSClient, ListClustersCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
28
28
|
* // const { EKSClient, ListClustersCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
29
29
|
* const client = new EKSClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListClustersRequest
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
33
|
-
* include: [
|
|
33
|
+
* include: [ // IncludeClustersList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
|
|
|
27
27
|
* import { EKSClient, ListFargateProfilesCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
28
28
|
* // const { EKSClient, ListFargateProfilesCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
29
29
|
* const client = new EKSClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListFargateProfilesRequest
|
|
31
31
|
* clusterName: "STRING_VALUE", // required
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
|
|
|
26
26
|
* import { EKSClient, ListIdentityProviderConfigsCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, ListIdentityProviderConfigsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListIdentityProviderConfigsRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
|
|
|
28
28
|
* import { EKSClient, ListNodegroupsCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
29
29
|
* // const { EKSClient, ListNodegroupsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
30
30
|
* const client = new EKSClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListNodegroupsRequest
|
|
32
32
|
* clusterName: "STRING_VALUE", // required
|
|
33
33
|
* maxResults: Number("int"),
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { EKSClient, ListTagsForResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, ListTagsForResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
|
|
|
27
27
|
* import { EKSClient, ListUpdatesCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
28
28
|
* // const { EKSClient, ListUpdatesCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
29
29
|
* const client = new EKSClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListUpdatesRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* nodegroupName: "STRING_VALUE",
|
|
33
33
|
* addonName: "STRING_VALUE",
|
|
@@ -38,14 +38,14 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
|
|
|
38
38
|
* import { EKSClient, RegisterClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
39
39
|
* // const { EKSClient, RegisterClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
40
40
|
* const client = new EKSClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // RegisterClusterRequest
|
|
42
42
|
* name: "STRING_VALUE", // required
|
|
43
|
-
* connectorConfig: {
|
|
43
|
+
* connectorConfig: { // ConnectorConfigRequest
|
|
44
44
|
* roleArn: "STRING_VALUE", // required
|
|
45
45
|
* provider: "EKS_ANYWHERE" || "ANTHOS" || "GKE" || "AKS" || "OPENSHIFT" || "TANZU" || "RANCHER" || "EC2" || "OTHER", // required
|
|
46
46
|
* },
|
|
47
47
|
* clientRequestToken: "STRING_VALUE",
|
|
48
|
-
* tags: {
|
|
48
|
+
* tags: { // TagMap
|
|
49
49
|
* "<keys>": "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
51
|
* };
|
|
@@ -31,9 +31,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* import { EKSClient, TagResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
32
32
|
* // const { EKSClient, TagResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
33
33
|
* const client = new EKSClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // TagResourceRequest
|
|
35
35
|
* resourceArn: "STRING_VALUE", // required
|
|
36
|
-
* tags: { // required
|
|
36
|
+
* tags: { // TagMap // required
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { EKSClient, UntagResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, UntagResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
|
|
|
26
26
|
* import { EKSClient, UpdateAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
27
27
|
* // const { EKSClient, UpdateAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
28
28
|
* const client = new EKSClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAddonRequest
|
|
30
30
|
* clusterName: "STRING_VALUE", // required
|
|
31
31
|
* addonName: "STRING_VALUE", // required
|
|
32
32
|
* addonVersion: "STRING_VALUE",
|
|
@@ -53,10 +53,10 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
|
|
|
53
53
|
* import { EKSClient, UpdateClusterConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
54
54
|
* // const { EKSClient, UpdateClusterConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
55
55
|
* const client = new EKSClient(config);
|
|
56
|
-
* const input = {
|
|
56
|
+
* const input = { // UpdateClusterConfigRequest
|
|
57
57
|
* name: "STRING_VALUE", // required
|
|
58
|
-
* resourcesVpcConfig: {
|
|
59
|
-
* subnetIds: [
|
|
58
|
+
* resourcesVpcConfig: { // VpcConfigRequest
|
|
59
|
+
* subnetIds: [ // StringList
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* securityGroupIds: [
|
|
@@ -68,10 +68,10 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
|
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
70
|
* },
|
|
71
|
-
* logging: {
|
|
72
|
-
* clusterLogging: [
|
|
73
|
-
* {
|
|
74
|
-
* types: [
|
|
71
|
+
* logging: { // Logging
|
|
72
|
+
* clusterLogging: [ // LogSetups
|
|
73
|
+
* { // LogSetup
|
|
74
|
+
* types: [ // LogTypes
|
|
75
75
|
* "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
|
|
76
76
|
* ],
|
|
77
77
|
* enabled: true || false,
|
|
@@ -35,7 +35,7 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
|
|
|
35
35
|
* import { EKSClient, UpdateClusterVersionCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
36
36
|
* // const { EKSClient, UpdateClusterVersionCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
37
37
|
* const client = new EKSClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // UpdateClusterVersionRequest
|
|
39
39
|
* name: "STRING_VALUE", // required
|
|
40
40
|
* version: "STRING_VALUE", // required
|
|
41
41
|
* clientRequestToken: "STRING_VALUE",
|
|
@@ -29,20 +29,20 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
|
|
|
29
29
|
* import { EKSClient, UpdateNodegroupConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
30
30
|
* // const { EKSClient, UpdateNodegroupConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
31
31
|
* const client = new EKSClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateNodegroupConfigRequest
|
|
33
33
|
* clusterName: "STRING_VALUE", // required
|
|
34
34
|
* nodegroupName: "STRING_VALUE", // required
|
|
35
|
-
* labels: {
|
|
36
|
-
* addOrUpdateLabels: {
|
|
35
|
+
* labels: { // UpdateLabelsPayload
|
|
36
|
+
* addOrUpdateLabels: { // labelsMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* removeLabels: [
|
|
39
|
+
* removeLabels: [ // labelsKeyList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* },
|
|
43
|
-
* taints: {
|
|
44
|
-
* addOrUpdateTaints: [
|
|
45
|
-
* {
|
|
43
|
+
* taints: { // UpdateTaintsPayload
|
|
44
|
+
* addOrUpdateTaints: [ // taintsList
|
|
45
|
+
* { // Taint
|
|
46
46
|
* key: "STRING_VALUE",
|
|
47
47
|
* value: "STRING_VALUE",
|
|
48
48
|
* effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
|
|
@@ -56,12 +56,12 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
|
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* scalingConfig: {
|
|
59
|
+
* scalingConfig: { // NodegroupScalingConfig
|
|
60
60
|
* minSize: Number("int"),
|
|
61
61
|
* maxSize: Number("int"),
|
|
62
62
|
* desiredSize: Number("int"),
|
|
63
63
|
* },
|
|
64
|
-
* updateConfig: {
|
|
64
|
+
* updateConfig: { // NodegroupUpdateConfig
|
|
65
65
|
* maxUnavailable: Number("int"),
|
|
66
66
|
* maxUnavailablePercentage: Number("int"),
|
|
67
67
|
* },
|
|
@@ -46,12 +46,12 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
|
|
|
46
46
|
* import { EKSClient, UpdateNodegroupVersionCommand } from "@aws-sdk/client-eks"; // ES Modules import
|
|
47
47
|
* // const { EKSClient, UpdateNodegroupVersionCommand } = require("@aws-sdk/client-eks"); // CommonJS import
|
|
48
48
|
* const client = new EKSClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // UpdateNodegroupVersionRequest
|
|
50
50
|
* clusterName: "STRING_VALUE", // required
|
|
51
51
|
* nodegroupName: "STRING_VALUE", // required
|
|
52
52
|
* version: "STRING_VALUE",
|
|
53
53
|
* releaseVersion: "STRING_VALUE",
|
|
54
|
-
* launchTemplate: {
|
|
54
|
+
* launchTemplate: { // LaunchTemplateSpecification
|
|
55
55
|
* name: "STRING_VALUE",
|
|
56
56
|
* version: "STRING_VALUE",
|
|
57
57
|
* id: "STRING_VALUE",
|