Package com.databricks.sdk.service.ml
Enum RegistryWebhookEvent
- java.lang.Object
-
- java.lang.Enum<RegistryWebhookEvent>
-
- com.databricks.sdk.service.ml.RegistryWebhookEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<RegistryWebhookEvent>
@Generated public enum RegistryWebhookEvent extends Enum<RegistryWebhookEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegistryWebhookEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static RegistryWebhookEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT_CREATED
public static final RegistryWebhookEvent COMMENT_CREATED
-
MODEL_VERSION_CREATED
public static final RegistryWebhookEvent MODEL_VERSION_CREATED
-
MODEL_VERSION_TAG_SET
public static final RegistryWebhookEvent MODEL_VERSION_TAG_SET
-
MODEL_VERSION_TRANSITIONED_STAGE
public static final RegistryWebhookEvent MODEL_VERSION_TRANSITIONED_STAGE
-
MODEL_VERSION_TRANSITIONED_TO_ARCHIVED
public static final RegistryWebhookEvent MODEL_VERSION_TRANSITIONED_TO_ARCHIVED
-
MODEL_VERSION_TRANSITIONED_TO_PRODUCTION
public static final RegistryWebhookEvent MODEL_VERSION_TRANSITIONED_TO_PRODUCTION
-
MODEL_VERSION_TRANSITIONED_TO_STAGING
public static final RegistryWebhookEvent MODEL_VERSION_TRANSITIONED_TO_STAGING
-
REGISTERED_MODEL_CREATED
public static final RegistryWebhookEvent REGISTERED_MODEL_CREATED
-
TRANSITION_REQUEST_CREATED
public static final RegistryWebhookEvent TRANSITION_REQUEST_CREATED
-
TRANSITION_REQUEST_TO_ARCHIVED_CREATED
public static final RegistryWebhookEvent TRANSITION_REQUEST_TO_ARCHIVED_CREATED
-
TRANSITION_REQUEST_TO_PRODUCTION_CREATED
public static final RegistryWebhookEvent TRANSITION_REQUEST_TO_PRODUCTION_CREATED
-
TRANSITION_REQUEST_TO_STAGING_CREATED
public static final RegistryWebhookEvent TRANSITION_REQUEST_TO_STAGING_CREATED
-
-
Method Detail
-
values
public static RegistryWebhookEvent[] 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 (RegistryWebhookEvent c : RegistryWebhookEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegistryWebhookEvent 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
-
-