Enum SearchServiceStatus
- All Implemented Interfaces:
Serializable,Comparable<SearchServiceStatus>,java.lang.constant.Constable
The status of the search service. Possible values include: 'running': The search service is running and no
provisioning operations are underway. 'provisioning': The search service is being provisioned or scaled up or down.
'deleting': The search service is being deleted. 'degraded': The search service is degraded. This can occur when the
underlying search units are not healthy. The search service is most likely operational, but performance might be slow
and some requests might be dropped. 'disabled': The search service is disabled. In this state, the service will
reject all API requests. 'error': The search service is in an error state. If your service is in the degraded,
disabled, or error states, Microsoft is actively investigating the underlying issue. Dedicated services in these
states are still chargeable based on the number of search units provisioned.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SearchServiceStatusfromString(String value) Parses a serialized value to a SearchServiceStatus instance.toString()static SearchServiceStatusReturns the enum constant of this type with the specified name.static SearchServiceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RUNNING
Enum value running. -
PROVISIONING
Enum value provisioning. -
DELETING
Enum value deleting. -
DEGRADED
Enum value degraded. -
DISABLED
Enum value disabled. -
ERROR
Enum value error.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
fromString
Parses a serialized value to a SearchServiceStatus instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed SearchServiceStatus object, or null if unable to parse.
-
toString
- Overrides:
toStringin classEnum<SearchServiceStatus>
-