Package com.google.container.v1beta1
Enum SetMasterAuthRequest.Action
- java.lang.Object
-
- java.lang.Enum<SetMasterAuthRequest.Action>
-
- com.google.container.v1beta1.SetMasterAuthRequest.Action
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<SetMasterAuthRequest.Action>
- Enclosing class:
- SetMasterAuthRequest
public static enum SetMasterAuthRequest.Action extends Enum<SetMasterAuthRequest.Action> implements com.google.protobuf.ProtocolMessageEnum
Operation type: what type update to perform.
Protobuf enumgoogle.container.v1beta1.SetMasterAuthRequest.Action
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GENERATE_PASSWORD
Generate a new password and set it to that.SET_PASSWORD
Set the password to a user generated value.SET_USERNAME
Set the username.UNKNOWN
Operation is unknown and will error out.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
GENERATE_PASSWORD_VALUE
Generate a new password and set it to that.static int
SET_PASSWORD_VALUE
Set the password to a user generated value.static int
SET_USERNAME_VALUE
Set the username.static int
UNKNOWN_VALUE
Operation is unknown and will error out.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SetMasterAuthRequest.Action
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<SetMasterAuthRequest.Action>
internalGetValueMap()
static SetMasterAuthRequest.Action
valueOf(int value)
Deprecated.static SetMasterAuthRequest.Action
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static SetMasterAuthRequest.Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static SetMasterAuthRequest.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SetMasterAuthRequest.Action UNKNOWN
Operation is unknown and will error out.
UNKNOWN = 0;
-
SET_PASSWORD
public static final SetMasterAuthRequest.Action SET_PASSWORD
Set the password to a user generated value.
SET_PASSWORD = 1;
-
GENERATE_PASSWORD
public static final SetMasterAuthRequest.Action GENERATE_PASSWORD
Generate a new password and set it to that.
GENERATE_PASSWORD = 2;
-
SET_USERNAME
public static final SetMasterAuthRequest.Action SET_USERNAME
Set the username. If an empty username is provided, basic authentication is disabled for the cluster. If a non-empty username is provided, basic authentication is enabled, with either a provided password or a generated one.
SET_USERNAME = 3;
-
UNRECOGNIZED
public static final SetMasterAuthRequest.Action UNRECOGNIZED
-
-
Field Detail
-
UNKNOWN_VALUE
public static final int UNKNOWN_VALUE
Operation is unknown and will error out.
UNKNOWN = 0;
- See Also:
- Constant Field Values
-
SET_PASSWORD_VALUE
public static final int SET_PASSWORD_VALUE
Set the password to a user generated value.
SET_PASSWORD = 1;
- See Also:
- Constant Field Values
-
GENERATE_PASSWORD_VALUE
public static final int GENERATE_PASSWORD_VALUE
Generate a new password and set it to that.
GENERATE_PASSWORD = 2;
- See Also:
- Constant Field Values
-
SET_USERNAME_VALUE
public static final int SET_USERNAME_VALUE
Set the username. If an empty username is provided, basic authentication is disabled for the cluster. If a non-empty username is provided, basic authentication is enabled, with either a provided password or a generated one.
SET_USERNAME = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SetMasterAuthRequest.Action[] 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 (SetMasterAuthRequest.Action c : SetMasterAuthRequest.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SetMasterAuthRequest.Action 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
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static SetMasterAuthRequest.Action valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static SetMasterAuthRequest.Action forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<SetMasterAuthRequest.Action> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static SetMasterAuthRequest.Action valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-