Enum UpdateParamType
- java.lang.Object
-
- java.lang.Enum<UpdateParamType>
-
- software.amazon.awssdk.services.eks.model.UpdateParamType
-
- All Implemented Interfaces:
Serializable,Comparable<UpdateParamType>
@Generated("software.amazon.awssdk:codegen") public enum UpdateParamType extends Enum<UpdateParamType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateParamTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<UpdateParamType>knownValues()StringtoString()static UpdateParamTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UpdateParamType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERSION
public static final UpdateParamType VERSION
-
PLATFORM_VERSION
public static final UpdateParamType PLATFORM_VERSION
-
ENDPOINT_PRIVATE_ACCESS
public static final UpdateParamType ENDPOINT_PRIVATE_ACCESS
-
ENDPOINT_PUBLIC_ACCESS
public static final UpdateParamType ENDPOINT_PUBLIC_ACCESS
-
CLUSTER_LOGGING
public static final UpdateParamType CLUSTER_LOGGING
-
DESIRED_SIZE
public static final UpdateParamType DESIRED_SIZE
-
LABELS_TO_ADD
public static final UpdateParamType LABELS_TO_ADD
-
LABELS_TO_REMOVE
public static final UpdateParamType LABELS_TO_REMOVE
-
TAINTS_TO_ADD
public static final UpdateParamType TAINTS_TO_ADD
-
TAINTS_TO_REMOVE
public static final UpdateParamType TAINTS_TO_REMOVE
-
MAX_SIZE
public static final UpdateParamType MAX_SIZE
-
MIN_SIZE
public static final UpdateParamType MIN_SIZE
-
RELEASE_VERSION
public static final UpdateParamType RELEASE_VERSION
-
PUBLIC_ACCESS_CIDRS
public static final UpdateParamType PUBLIC_ACCESS_CIDRS
-
LAUNCH_TEMPLATE_NAME
public static final UpdateParamType LAUNCH_TEMPLATE_NAME
-
LAUNCH_TEMPLATE_VERSION
public static final UpdateParamType LAUNCH_TEMPLATE_VERSION
-
IDENTITY_PROVIDER_CONFIG
public static final UpdateParamType IDENTITY_PROVIDER_CONFIG
-
ENCRYPTION_CONFIG
public static final UpdateParamType ENCRYPTION_CONFIG
-
ADDON_VERSION
public static final UpdateParamType ADDON_VERSION
-
SERVICE_ACCOUNT_ROLE_ARN
public static final UpdateParamType SERVICE_ACCOUNT_ROLE_ARN
-
RESOLVE_CONFLICTS
public static final UpdateParamType RESOLVE_CONFLICTS
-
MAX_UNAVAILABLE
public static final UpdateParamType MAX_UNAVAILABLE
-
MAX_UNAVAILABLE_PERCENTAGE
public static final UpdateParamType MAX_UNAVAILABLE_PERCENTAGE
-
CONFIGURATION_VALUES
public static final UpdateParamType CONFIGURATION_VALUES
-
SECURITY_GROUPS
public static final UpdateParamType SECURITY_GROUPS
-
SUBNETS
public static final UpdateParamType SUBNETS
-
AUTHENTICATION_MODE
public static final UpdateParamType AUTHENTICATION_MODE
-
POD_IDENTITY_ASSOCIATIONS
public static final UpdateParamType POD_IDENTITY_ASSOCIATIONS
-
UPGRADE_POLICY
public static final UpdateParamType UPGRADE_POLICY
-
UNKNOWN_TO_SDK_VERSION
public static final UpdateParamType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static UpdateParamType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UpdateParamType c : UpdateParamType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateParamType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<UpdateParamType>
-
fromValue
public static UpdateParamType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- UpdateParamType corresponding to the value
-
knownValues
public static Set<UpdateParamType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownUpdateParamTypes
-
-