Enum ScanConfig.TargetPlatform
- java.lang.Object
-
- java.lang.Enum<ScanConfig.TargetPlatform>
-
- com.google.cloud.websecurityscanner.v1alpha.ScanConfig.TargetPlatform
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ScanConfig.TargetPlatform>
- Enclosing class:
- ScanConfig
public static enum ScanConfig.TargetPlatform extends Enum<ScanConfig.TargetPlatform> implements com.google.protobuf.ProtocolMessageEnum
Cloud platforms supported by Cloud Web Security Scanner.
Protobuf enumgoogle.cloud.websecurityscanner.v1alpha.ScanConfig.TargetPlatform
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_ENGINE
Google App Engine service.COMPUTE
Google Compute Engine service.TARGET_PLATFORM_UNSPECIFIED
The target platform is unknown.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
APP_ENGINE_VALUE
Google App Engine service.static int
COMPUTE_VALUE
Google Compute Engine service.static int
TARGET_PLATFORM_UNSPECIFIED_VALUE
The target platform is unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ScanConfig.TargetPlatform
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<ScanConfig.TargetPlatform>
internalGetValueMap()
static ScanConfig.TargetPlatform
valueOf(int value)
Deprecated.static ScanConfig.TargetPlatform
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ScanConfig.TargetPlatform
valueOf(String name)
Returns the enum constant of this type with the specified name.static ScanConfig.TargetPlatform[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TARGET_PLATFORM_UNSPECIFIED
public static final ScanConfig.TargetPlatform TARGET_PLATFORM_UNSPECIFIED
The target platform is unknown. Requests with this enum value will be rejected with INVALID_ARGUMENT error.
TARGET_PLATFORM_UNSPECIFIED = 0;
-
APP_ENGINE
public static final ScanConfig.TargetPlatform APP_ENGINE
Google App Engine service.
APP_ENGINE = 1;
-
COMPUTE
public static final ScanConfig.TargetPlatform COMPUTE
Google Compute Engine service.
COMPUTE = 2;
-
UNRECOGNIZED
public static final ScanConfig.TargetPlatform UNRECOGNIZED
-
-
Field Detail
-
TARGET_PLATFORM_UNSPECIFIED_VALUE
public static final int TARGET_PLATFORM_UNSPECIFIED_VALUE
The target platform is unknown. Requests with this enum value will be rejected with INVALID_ARGUMENT error.
TARGET_PLATFORM_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
APP_ENGINE_VALUE
public static final int APP_ENGINE_VALUE
Google App Engine service.
APP_ENGINE = 1;
- See Also:
- Constant Field Values
-
COMPUTE_VALUE
public static final int COMPUTE_VALUE
Google Compute Engine service.
COMPUTE = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ScanConfig.TargetPlatform[] 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 (ScanConfig.TargetPlatform c : ScanConfig.TargetPlatform.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScanConfig.TargetPlatform 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 ScanConfig.TargetPlatform 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 ScanConfig.TargetPlatform 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<ScanConfig.TargetPlatform> 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 ScanConfig.TargetPlatform 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
-
-