SearchServiceStatus Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.resourcemanager.search.models.SearchServiceStatus

public enum SearchServiceStatus
extends Enum<SearchServiceStatus>

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.

Fields

DEGRADED

Enum value degraded.

DELETING

Enum value deleting.

DISABLED

Enum value disabled.

ERROR

Enum value error.

PROVISIONING

Enum value provisioning.

RUNNING

Enum value running.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static SearchServiceStatus fromString(String value)

Parses a serialized value to a SearchServiceStatus instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed SearchServiceStatus object, or null if unable to parse.

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static SearchServiceStatus valueOf(String name)

Parameters

name
String

Returns

values()

public static SearchServiceStatus[] values()

Returns

Applies to