Enum PersonalComputeMessageEnum
- java.lang.Object
-
- java.lang.Enum<PersonalComputeMessageEnum>
-
- com.databricks.sdk.service.settings.PersonalComputeMessageEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<PersonalComputeMessageEnum>
@Generated public enum PersonalComputeMessageEnum extends Enum<PersonalComputeMessageEnum>
ON: Grants all users in all workspaces access to the Personal Compute default policy, allowing all users to create single-machine compute resources. DELEGATE: Moves access control for the Personal Compute default policy to individual workspaces and requires a workspace’s users or groups to be added to the ACLs of that workspace’s Personal Compute default policy before they will be able to create compute resources through that policy.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PersonalComputeMessageEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static PersonalComputeMessageEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELEGATE
public static final PersonalComputeMessageEnum DELEGATE
-
ON
public static final PersonalComputeMessageEnum ON
-
-
Method Detail
-
values
public static PersonalComputeMessageEnum[] 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 (PersonalComputeMessageEnum c : PersonalComputeMessageEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PersonalComputeMessageEnum 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
-
-