Enum EndpointStateConfigUpdate
- java.lang.Object
-
- java.lang.Enum<EndpointStateConfigUpdate>
-
- com.databricks.sdk.service.serving.EndpointStateConfigUpdate
-
- All Implemented Interfaces:
Serializable
,Comparable<EndpointStateConfigUpdate>
@Generated public enum EndpointStateConfigUpdate extends Enum<EndpointStateConfigUpdate>
The state of an endpoint's config update. This informs the user if the pending_config is in progress, if the update failed, or if there is no update in progress. Note that if the endpoint's config_update state value is IN_PROGRESS, another update can not be made until the update completes or fails."
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IN_PROGRESS
NOT_UPDATING
UPDATE_FAILED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EndpointStateConfigUpdate
valueOf(String name)
Returns the enum constant of this type with the specified name.static EndpointStateConfigUpdate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN_PROGRESS
public static final EndpointStateConfigUpdate IN_PROGRESS
-
NOT_UPDATING
public static final EndpointStateConfigUpdate NOT_UPDATING
-
UPDATE_FAILED
public static final EndpointStateConfigUpdate UPDATE_FAILED
-
-
Method Detail
-
values
public static EndpointStateConfigUpdate[] 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 (EndpointStateConfigUpdate c : EndpointStateConfigUpdate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EndpointStateConfigUpdate 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
-
-