Package com.google.cloud.notebooks.v1
Enum RuntimeAccessConfig.RuntimeAccessType
- java.lang.Object
-
- java.lang.Enum<RuntimeAccessConfig.RuntimeAccessType>
-
- com.google.cloud.notebooks.v1.RuntimeAccessConfig.RuntimeAccessType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<RuntimeAccessConfig.RuntimeAccessType>
- Enclosing class:
- RuntimeAccessConfig
public static enum RuntimeAccessConfig.RuntimeAccessType extends Enum<RuntimeAccessConfig.RuntimeAccessType> implements com.google.protobuf.ProtocolMessageEnum
Possible ways to access runtime. Authentication mode. Currently supports: Single User only.
Protobuf enumgoogle.cloud.notebooks.v1.RuntimeAccessConfig.RuntimeAccessType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RUNTIME_ACCESS_TYPE_UNSPECIFIED
Unspecified access.SERVICE_ACCOUNT
Service Account mode.SINGLE_USER
Single user login.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
RUNTIME_ACCESS_TYPE_UNSPECIFIED_VALUE
Unspecified access.static int
SERVICE_ACCOUNT_VALUE
Service Account mode.static int
SINGLE_USER_VALUE
Single user login.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RuntimeAccessConfig.RuntimeAccessType
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<RuntimeAccessConfig.RuntimeAccessType>
internalGetValueMap()
static RuntimeAccessConfig.RuntimeAccessType
valueOf(int value)
Deprecated.static RuntimeAccessConfig.RuntimeAccessType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static RuntimeAccessConfig.RuntimeAccessType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RuntimeAccessConfig.RuntimeAccessType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RUNTIME_ACCESS_TYPE_UNSPECIFIED
public static final RuntimeAccessConfig.RuntimeAccessType RUNTIME_ACCESS_TYPE_UNSPECIFIED
Unspecified access.
RUNTIME_ACCESS_TYPE_UNSPECIFIED = 0;
-
SINGLE_USER
public static final RuntimeAccessConfig.RuntimeAccessType SINGLE_USER
Single user login.
SINGLE_USER = 1;
-
SERVICE_ACCOUNT
public static final RuntimeAccessConfig.RuntimeAccessType SERVICE_ACCOUNT
Service Account mode. In Service Account mode, Runtime creator will specify a SA that exists in the consumer project. Using Runtime Service Account field. Users accessing the Runtime need ActAs (Service Account User) permission.
SERVICE_ACCOUNT = 2;
-
UNRECOGNIZED
public static final RuntimeAccessConfig.RuntimeAccessType UNRECOGNIZED
-
-
Field Detail
-
RUNTIME_ACCESS_TYPE_UNSPECIFIED_VALUE
public static final int RUNTIME_ACCESS_TYPE_UNSPECIFIED_VALUE
Unspecified access.
RUNTIME_ACCESS_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
SINGLE_USER_VALUE
public static final int SINGLE_USER_VALUE
Single user login.
SINGLE_USER = 1;
- See Also:
- Constant Field Values
-
SERVICE_ACCOUNT_VALUE
public static final int SERVICE_ACCOUNT_VALUE
Service Account mode. In Service Account mode, Runtime creator will specify a SA that exists in the consumer project. Using Runtime Service Account field. Users accessing the Runtime need ActAs (Service Account User) permission.
SERVICE_ACCOUNT = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RuntimeAccessConfig.RuntimeAccessType[] 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 (RuntimeAccessConfig.RuntimeAccessType c : RuntimeAccessConfig.RuntimeAccessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuntimeAccessConfig.RuntimeAccessType 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 RuntimeAccessConfig.RuntimeAccessType 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 RuntimeAccessConfig.RuntimeAccessType 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<RuntimeAccessConfig.RuntimeAccessType> 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 RuntimeAccessConfig.RuntimeAccessType 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
-
-