Package com.google.cloud.orgpolicy.v1
Enum Policy.ListPolicy.AllValues
- java.lang.Object
-
- java.lang.Enum<Policy.ListPolicy.AllValues>
-
- com.google.cloud.orgpolicy.v1.Policy.ListPolicy.AllValues
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Policy.ListPolicy.AllValues>
- Enclosing class:
- Policy.ListPolicy
public static enum Policy.ListPolicy.AllValues extends Enum<Policy.ListPolicy.AllValues> implements com.google.protobuf.ProtocolMessageEnum
This enum can be used to set `Policies` that apply to all possible configuration values rather than specific values in `allowed_values` or `denied_values`. Settting this to `ALLOW` will mean this `Policy` allows all values. Similarly, setting it to `DENY` will mean no values are allowed. If set to either `ALLOW` or `DENY, `allowed_values` and `denied_values` must be unset. Setting this to `ALL_VALUES_UNSPECIFIED` allows for setting `allowed_values` and `denied_values`.
Protobuf enumgoogle.cloud.orgpolicy.v1.Policy.ListPolicy.AllValues
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_VALUES_UNSPECIFIED
Indicates that allowed_values or denied_values must be set.ALLOW
A policy with this set allows all values.DENY
A policy with this set denies all values.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
ALL_VALUES_UNSPECIFIED_VALUE
Indicates that allowed_values or denied_values must be set.static int
ALLOW_VALUE
A policy with this set allows all values.static int
DENY_VALUE
A policy with this set denies all values.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Policy.ListPolicy.AllValues
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<Policy.ListPolicy.AllValues>
internalGetValueMap()
static Policy.ListPolicy.AllValues
valueOf(int value)
Deprecated.static Policy.ListPolicy.AllValues
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Policy.ListPolicy.AllValues
valueOf(String name)
Returns the enum constant of this type with the specified name.static Policy.ListPolicy.AllValues[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_VALUES_UNSPECIFIED
public static final Policy.ListPolicy.AllValues ALL_VALUES_UNSPECIFIED
Indicates that allowed_values or denied_values must be set.
ALL_VALUES_UNSPECIFIED = 0;
-
ALLOW
public static final Policy.ListPolicy.AllValues ALLOW
A policy with this set allows all values.
ALLOW = 1;
-
DENY
public static final Policy.ListPolicy.AllValues DENY
A policy with this set denies all values.
DENY = 2;
-
UNRECOGNIZED
public static final Policy.ListPolicy.AllValues UNRECOGNIZED
-
-
Field Detail
-
ALL_VALUES_UNSPECIFIED_VALUE
public static final int ALL_VALUES_UNSPECIFIED_VALUE
Indicates that allowed_values or denied_values must be set.
ALL_VALUES_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
ALLOW_VALUE
public static final int ALLOW_VALUE
A policy with this set allows all values.
ALLOW = 1;
- See Also:
- Constant Field Values
-
DENY_VALUE
public static final int DENY_VALUE
A policy with this set denies all values.
DENY = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Policy.ListPolicy.AllValues[] 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 (Policy.ListPolicy.AllValues c : Policy.ListPolicy.AllValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Policy.ListPolicy.AllValues 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 Policy.ListPolicy.AllValues 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 Policy.ListPolicy.AllValues 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<Policy.ListPolicy.AllValues> 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 Policy.ListPolicy.AllValues 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
-
-