Skip to content

Commit 45cb022

Browse files
author
awstools
committed
feat(client-eks): This release adds support for EKS cluster to manage extended support.
1 parent 9195ee7 commit 45cb022

17 files changed

+195
-18
lines changed

clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ export interface AssociateEncryptionConfigCommandOutput extends AssociateEncrypt
5858
* // update: { // Update
5959
* // id: "STRING_VALUE",
6060
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
61-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
61+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
6262
* // params: [ // UpdateParams
6363
* // { // UpdateParam
64-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
64+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
6565
* // value: "STRING_VALUE",
6666
* // },
6767
* // ],

clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ export interface AssociateIdentityProviderConfigCommandOutput
7272
* // update: { // Update
7373
* // id: "STRING_VALUE",
7474
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
75-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
75+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
7676
* // params: [ // UpdateParams
7777
* // { // UpdateParam
78-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
78+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
7979
* // value: "STRING_VALUE",
8080
* // },
8181
* // ],

clients/client-eks/src/commands/CreateClusterCommand.ts

+6
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
131131
* authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
132132
* },
133133
* bootstrapSelfManagedAddons: true || false,
134+
* upgradePolicy: { // UpgradePolicyRequest
135+
* supportType: "STANDARD" || "EXTENDED",
136+
* },
134137
* };
135138
* const command = new CreateClusterCommand(input);
136139
* const response = await client.send(command);
@@ -224,6 +227,9 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
224227
* // bootstrapClusterCreatorAdminPermissions: true || false,
225228
* // authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
226229
* // },
230+
* // upgradePolicy: { // UpgradePolicyResponse
231+
* // supportType: "STANDARD" || "EXTENDED",
232+
* // },
227233
* // },
228234
* // };
229235
*

clients/client-eks/src/commands/DeleteClusterCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
138138
* // bootstrapClusterCreatorAdminPermissions: true || false,
139139
* // authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
140140
* // },
141+
* // upgradePolicy: { // UpgradePolicyResponse
142+
* // supportType: "STANDARD" || "EXTENDED",
143+
* // },
141144
* // },
142145
* // };
143146
*

clients/client-eks/src/commands/DeregisterClusterCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
133133
* // bootstrapClusterCreatorAdminPermissions: true || false,
134134
* // authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
135135
* // },
136+
* // upgradePolicy: { // UpgradePolicyResponse
137+
* // supportType: "STANDARD" || "EXTENDED",
138+
* // },
136139
* // },
137140
* // };
138141
*

clients/client-eks/src/commands/DescribeClusterCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
139139
* // bootstrapClusterCreatorAdminPermissions: true || false,
140140
* // authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
141141
* // },
142+
* // upgradePolicy: { // UpgradePolicyResponse
143+
* // supportType: "STANDARD" || "EXTENDED",
144+
* // },
142145
* // },
143146
* // };
144147
*

clients/client-eks/src/commands/DescribeUpdateCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
5050
* // update: { // Update
5151
* // id: "STRING_VALUE",
5252
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
53-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
53+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
5454
* // params: [ // UpdateParams
5555
* // { // UpdateParam
56-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
56+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
5757
* // value: "STRING_VALUE",
5858
* // },
5959
* // ],

clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ export interface DisassociateIdentityProviderConfigCommandOutput
6060
* // update: { // Update
6161
* // id: "STRING_VALUE",
6262
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
63-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
63+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
6464
* // params: [ // UpdateParams
6565
* // { // UpdateParam
66-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
66+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
6767
* // value: "STRING_VALUE",
6868
* // },
6969
* // ],

clients/client-eks/src/commands/RegisterClusterCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
151151
* // bootstrapClusterCreatorAdminPermissions: true || false,
152152
* // authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
153153
* // },
154+
* // upgradePolicy: { // UpgradePolicyResponse
155+
* // supportType: "STANDARD" || "EXTENDED",
156+
* // },
154157
* // },
155158
* // };
156159
*

clients/client-eks/src/commands/UpdateAddonCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
5656
* // update: { // Update
5757
* // id: "STRING_VALUE",
5858
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
59-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
59+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
6060
* // params: [ // UpdateParams
6161
* // { // UpdateParam
62-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
62+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
6363
* // value: "STRING_VALUE",
6464
* // },
6565
* // ],

clients/client-eks/src/commands/UpdateClusterConfigCommand.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -94,17 +94,20 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
9494
* accessConfig: { // UpdateAccessConfigRequest
9595
* authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
9696
* },
97+
* upgradePolicy: { // UpgradePolicyRequest
98+
* supportType: "STANDARD" || "EXTENDED",
99+
* },
97100
* };
98101
* const command = new UpdateClusterConfigCommand(input);
99102
* const response = await client.send(command);
100103
* // { // UpdateClusterConfigResponse
101104
* // update: { // Update
102105
* // id: "STRING_VALUE",
103106
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
104-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
107+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
105108
* // params: [ // UpdateParams
106109
* // { // UpdateParam
107-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
110+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
108111
* // value: "STRING_VALUE",
109112
* // },
110113
* // ],

clients/client-eks/src/commands/UpdateClusterVersionCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
5555
* // update: { // Update
5656
* // id: "STRING_VALUE",
5757
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
58-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
58+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
5959
* // params: [ // UpdateParams
6060
* // { // UpdateParam
61-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
61+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
6262
* // value: "STRING_VALUE",
6363
* // },
6464
* // ],

clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
8282
* // update: { // Update
8383
* // id: "STRING_VALUE",
8484
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
85-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
85+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate",
8686
* // params: [ // UpdateParams
8787
* // { // UpdateParam
88-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
88+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy",
8989
* // value: "STRING_VALUE",
9090
* // },
9191
* // ],

0 commit comments

Comments
 (0)