Status

@Serializable
enum Status : Enum<Health.Status>

Status is one of none, starting, healthy or unhealthy - \"none\" Indicates there is no healthcheck - \"starting\" Starting indicates that the container is not yet ready - \"healthy\" Healthy indicates that the container is running correctly - \"unhealthy\" Unhealthy indicates that the container has a problem

Values: NONE,STARTING,HEALTHY,UNHEALTHY

Entries

Link copied to clipboard
@SerialName(value = "none")
NONE
Link copied to clipboard
@SerialName(value = "starting")
STARTING
Link copied to clipboard
@SerialName(value = "healthy")
HEALTHY
Link copied to clipboard
@SerialName(value = "unhealthy")
UNHEALTHY

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard

Functions

Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.