Package com.zerog.ia.auto.project.vapp
Class VirtualHardwareProfile
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.vapp.VirtualHardwareProfile
-
- All Implemented Interfaces:
Referenceable
public final class VirtualHardwareProfile extends ProjectObject
The concept of hardware profiles is used to reflect concepts like configurations. For e.g. a hardware profile for an eval version may be very small with 1 cpu etc, whereas a hardware profile for enterprise version might be 8 cpu version
-
-
Constructor Summary
Constructors Constructor Description VirtualHardwareProfile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AmazonInstanceType
getAmazonInstanceType()
Amazon Instance Type of the profilejava.util.List<VirtualHardwareEntity>
getHardwareItems()
Hardware Items in this profilejava.lang.String
getProfileDescription()
Description of the profilejava.lang.String
getProfileId()
ID of the profilevoid
setAmazonInstanceType(AmazonInstanceType AmazonInstanceType)
Amazon Instance Type of the profilevoid
setHardwareItems(java.util.List<VirtualHardwareEntity> HardwareItems)
Hardware Items in this profilevoid
setProfileDescription(java.lang.String ProfileDescription)
Description of the profilevoid
setProfileId(java.lang.String ProfileId)
ID of the profile-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getProfileId
public java.lang.String getProfileId()
ID of the profile
-
setProfileId
public void setProfileId(java.lang.String ProfileId)
ID of the profile
-
getProfileDescription
public java.lang.String getProfileDescription()
Description of the profile
-
setProfileDescription
public void setProfileDescription(java.lang.String ProfileDescription)
Description of the profile
-
getHardwareItems
public java.util.List<VirtualHardwareEntity> getHardwareItems()
Hardware Items in this profile
-
setHardwareItems
public void setHardwareItems(java.util.List<VirtualHardwareEntity> HardwareItems)
Hardware Items in this profile
-
getAmazonInstanceType
public AmazonInstanceType getAmazonInstanceType()
Amazon Instance Type of the profile
-
setAmazonInstanceType
public void setAmazonInstanceType(AmazonInstanceType AmazonInstanceType)
Amazon Instance Type of the profile
-
-