Enum SetMasterAuthRequest.Action

    • Enum Constant Detail

      • 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;
    • 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 name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.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 name
        NullPointerException - 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.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.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 name
        NullPointerException - if the argument is null