@Generated public enum Kind extends Enum<Kind>
Depending on `kind`, different validations and default values will be applied.
Clusters with `kind = CLASSIC_PREVIEW` support the following fields, whereas clusters with no specified `kind` do not. * [is_single_node](/api/workspace/clusters/create#is_single_node) * [use_ml_runtime](/api/workspace/clusters/create#use_ml_runtime) * [data_security_mode](/api/workspace/clusters/create#data_security_mode) set to `DATA_SECURITY_MODE_AUTO`, `DATA_SECURITY_MODE_DEDICATED`, or `DATA_SECURITY_MODE_STANDARD`
By using the [simple form], your clusters are automatically using `kind = CLASSIC_PREVIEW`.
[simple form]: https://docs.databricks.com/compute/simple-form.html
| Enum Constant and Description |
|---|
CLASSIC_PREVIEW |
| Modifier and Type | Method and Description |
|---|---|
static Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kind CLASSIC_PREVIEW
public static Kind[] values()
for (Kind c : Kind.values()) System.out.println(c);
public static Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.