Package com.google.container.v1beta1
Enum BinaryAuthorization.EvaluationMode
- java.lang.Object
-
- java.lang.Enum<BinaryAuthorization.EvaluationMode>
-
- com.google.container.v1beta1.BinaryAuthorization.EvaluationMode
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<BinaryAuthorization.EvaluationMode>
- Enclosing class:
- BinaryAuthorization
public static enum BinaryAuthorization.EvaluationMode extends Enum<BinaryAuthorization.EvaluationMode> implements com.google.protobuf.ProtocolMessageEnum
Binary Authorization mode of operation.
Protobuf enumgoogle.container.v1beta1.BinaryAuthorization.EvaluationMode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLED
Disable BinaryAuthorizationEVALUATION_MODE_UNSPECIFIED
Default valuePOLICY_BINDINGS
Use Binary Authorization with the policies specified in policy_bindings.POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE
Use Binary Authorization with the policies specified in policy_bindings, and also with the project's singleton policy in enforcement mode.PROJECT_SINGLETON_POLICY_ENFORCE
Enforce Kubernetes admission requests with BinaryAuthorization using the project's singleton policy.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
DISABLED_VALUE
Disable BinaryAuthorizationstatic int
EVALUATION_MODE_UNSPECIFIED_VALUE
Default valuestatic int
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
Use Binary Authorization with the policies specified in policy_bindings, and also with the project's singleton policy in enforcement mode.static int
POLICY_BINDINGS_VALUE
Use Binary Authorization with the policies specified in policy_bindings.static int
PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
Enforce Kubernetes admission requests with BinaryAuthorization using the project's singleton policy.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BinaryAuthorization.EvaluationMode
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<BinaryAuthorization.EvaluationMode>
internalGetValueMap()
static BinaryAuthorization.EvaluationMode
valueOf(int value)
Deprecated.static BinaryAuthorization.EvaluationMode
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static BinaryAuthorization.EvaluationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static BinaryAuthorization.EvaluationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVALUATION_MODE_UNSPECIFIED
public static final BinaryAuthorization.EvaluationMode EVALUATION_MODE_UNSPECIFIED
Default value
EVALUATION_MODE_UNSPECIFIED = 0;
-
DISABLED
public static final BinaryAuthorization.EvaluationMode DISABLED
Disable BinaryAuthorization
DISABLED = 1;
-
PROJECT_SINGLETON_POLICY_ENFORCE
public static final BinaryAuthorization.EvaluationMode PROJECT_SINGLETON_POLICY_ENFORCE
Enforce Kubernetes admission requests with BinaryAuthorization using the project's singleton policy. This is equivalent to setting the enabled boolean to true.
PROJECT_SINGLETON_POLICY_ENFORCE = 2;
-
POLICY_BINDINGS
public static final BinaryAuthorization.EvaluationMode POLICY_BINDINGS
Use Binary Authorization with the policies specified in policy_bindings.
POLICY_BINDINGS = 5;
-
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE
public static final BinaryAuthorization.EvaluationMode POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE
Use Binary Authorization with the policies specified in policy_bindings, and also with the project's singleton policy in enforcement mode.
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE = 6;
-
UNRECOGNIZED
public static final BinaryAuthorization.EvaluationMode UNRECOGNIZED
-
-
Field Detail
-
EVALUATION_MODE_UNSPECIFIED_VALUE
public static final int EVALUATION_MODE_UNSPECIFIED_VALUE
Default value
EVALUATION_MODE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
DISABLED_VALUE
public static final int DISABLED_VALUE
Disable BinaryAuthorization
DISABLED = 1;
- See Also:
- Constant Field Values
-
PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
public static final int PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
Enforce Kubernetes admission requests with BinaryAuthorization using the project's singleton policy. This is equivalent to setting the enabled boolean to true.
PROJECT_SINGLETON_POLICY_ENFORCE = 2;
- See Also:
- Constant Field Values
-
POLICY_BINDINGS_VALUE
public static final int POLICY_BINDINGS_VALUE
Use Binary Authorization with the policies specified in policy_bindings.
POLICY_BINDINGS = 5;
- See Also:
- Constant Field Values
-
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
public static final int POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE_VALUE
Use Binary Authorization with the policies specified in policy_bindings, and also with the project's singleton policy in enforcement mode.
POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE = 6;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static BinaryAuthorization.EvaluationMode[] 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 (BinaryAuthorization.EvaluationMode c : BinaryAuthorization.EvaluationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BinaryAuthorization.EvaluationMode 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 BinaryAuthorization.EvaluationMode 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 BinaryAuthorization.EvaluationMode 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<BinaryAuthorization.EvaluationMode> 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 BinaryAuthorization.EvaluationMode 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
-
-