InstanceStatus

enum InstanceStatus : ProtocolMessageEnum
Describes statuses which an application instance may inhabit.
Protobuf enum elide.app.InstanceStatus

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
Instance is currently de-provisioning.
DEPROVISIONING = 4;
Link copied to clipboard
Instance status is unknown to this version of the protocol.
INSTANCE_STATUS_UNKNOWN = 0;
Link copied to clipboard
Instance is currently provisioning.
PROVISIONING = 3;
Link copied to clipboard
Instance is currently running.
RUNNING = 1;
Link copied to clipboard
Instance is currently stopped.
STOPPED = 2;

Functions

Link copied to clipboard
open fun forNumber(value: Int): InstanceStatus
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<InstanceStatus>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): InstanceStatus
open fun valueOf(value: Int): InstanceStatus

open fun valueOf(name: String): InstanceStatus

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. This method may be used to iterate over the constants.