Package com.zerog.ia.auto.project.vapp
Class VirtualMachineTier
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.vapp.VirtualMachineTier
-
- All Implemented Interfaces:
Referenceable
,VirtualEntity
,VirtualMachineCollectionEntity
,VirtualSystemEntity
- Direct Known Subclasses:
VirtualAppliance
public class VirtualMachineTier extends ProjectObject implements VirtualMachineCollectionEntity
Represents a logical grouping of virtual machines
-
-
Constructor Summary
Constructors Constructor Description VirtualMachineTier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<VirtualSystemEntity>
getChildren()
Child Virtual Machines and Virtual Machine Collections to this Collectionint
getId()
id of this collectionjava.lang.String
getInfo()
Information about this collectionjava.lang.String
getName()
Name of this collectionVirtualSystemEntity
getParent()
Parent of this Virtual Machine Collection.java.util.List<ProductInformation>
getProductInformationList()
List of all product information for this collectionjava.lang.String
getUUID()
UUID of this collectionVirtualSystemEntityStartupInfo
getVseStartupInfo()
Manage Start/Stop order/delay of a VM Tiervoid
setChildren(java.util.List<VirtualSystemEntity> Children)
Child Virtual Machines and Virtual Machine Collections to this Collectionvoid
setId(int Id)
id of this collectionvoid
setInfo(java.lang.String Info)
Information about this collectionvoid
setName(java.lang.String Name)
Name of this collectionvoid
setParent(VirtualSystemEntity Parent)
Parent of this Virtual Machine Collection.void
setProductInformationList(java.util.List<ProductInformation> ProductInformationList)
List of all product information for this collectionvoid
setUUID(java.lang.String UUID)
UUID of this collectionvoid
setVseStartupInfo(VirtualSystemEntityStartupInfo VseStartupInfo)
Manage Start/Stop order/delay of a VM Tier-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getParent
public VirtualSystemEntity getParent()
Parent of this Virtual Machine Collection. Only an appliance can have a null parent
-
setParent
public void setParent(VirtualSystemEntity Parent)
Parent of this Virtual Machine Collection. Only an appliance can have a null parent
-
getProductInformationList
public java.util.List<ProductInformation> getProductInformationList()
List of all product information for this collection
-
setProductInformationList
public void setProductInformationList(java.util.List<ProductInformation> ProductInformationList)
List of all product information for this collection
-
getId
public int getId()
id of this collection
-
setId
public void setId(int Id)
id of this collection
-
getName
public java.lang.String getName()
Name of this collection
-
setName
public void setName(java.lang.String Name)
Name of this collection
-
getUUID
public java.lang.String getUUID()
UUID of this collection
-
setUUID
public void setUUID(java.lang.String UUID)
UUID of this collection
-
getInfo
public java.lang.String getInfo()
Information about this collection
-
setInfo
public void setInfo(java.lang.String Info)
Information about this collection
-
getChildren
public java.util.List<VirtualSystemEntity> getChildren()
Child Virtual Machines and Virtual Machine Collections to this Collection
-
setChildren
public void setChildren(java.util.List<VirtualSystemEntity> Children)
Child Virtual Machines and Virtual Machine Collections to this Collection
-
getVseStartupInfo
public VirtualSystemEntityStartupInfo getVseStartupInfo()
Manage Start/Stop order/delay of a VM Tier
-
setVseStartupInfo
public void setVseStartupInfo(VirtualSystemEntityStartupInfo VseStartupInfo)
Manage Start/Stop order/delay of a VM Tier
-
-