|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectcom.ace.mws.vms.VMFlag
enum VMFlag
This enumeration specifies the VM flag types of a virtual machine.
| Enum Constant Summary | |
|---|---|
CANNOT_MIGRATE
This value is used to remove the CAN_MIGRATE flag. |
|
CAN_MIGRATE
VM may be directly migrated without direction from parent workload. |
|
CONSUMER
VM should be treated as resource consumer regardless of Moab-tracked workload. |
|
CREATION_COMPLETED
VM creation completed. |
|
DELETED
VM deleted. |
|
DESTROYED
VM reported destroyed by Resource Manager (VM will be removed when resource manager no longer reports VM). |
|
DESTROY_PENDING
VM destroy requested. |
|
INITIALIZING
VM is initializing. |
|
ONETIMEUSE
VM is was created for a job with vmusagepolicy=createvm. |
|
SHARED
Multiple jobs can use VM resources simultaneously. |
|
UTILIZATION_REPORTED
|
|
| Field Summary | |
|---|---|
private String |
moabName
|
| Constructor Summary | |
private VMFlag(String moabName)
|
|
| Method Summary | |
|---|---|
String
|
getMoabName()
|
static VMFlag
|
parseString(String string)
Attempts to parse a string and convert it into a corresponding VMFlag enum value. |
VMFlag
|
valueOf(String name)
Returns the enum constant of this type with the specified name. |
VMFlag[]
|
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
| Enum Constant Detail |
|---|
VMFlag CANNOT_MIGRATE
VMFlag CAN_MIGRATE
VMFlag CONSUMER
VMFlag CREATION_COMPLETED
VMFlag DELETED
VMFlag DESTROYED
VMFlag DESTROY_PENDING
VMFlag INITIALIZING
VMFlag ONETIMEUSE
VMFlag SHARED
VMFlag UTILIZATION_REPORTED
| Field Detail |
|---|
private String moabName
| Constructor Detail |
|---|
private VMFlag(String moabName)
| Method Detail |
|---|
String getMoabName()
static VMFlag parseString(String string)
string
- the string to parse into a corresponding VMFlag enum value.
VMFlag valueOf(String name)
VMFlag[] values()
Groovy Documentation