![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VslmCreateSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VslmCreateSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VslmCreateSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="backingSpec" type="{urn:vim25}VslmCreateSpecBackingSpec"/>
* <element name="capacityInMB" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VslmCreateSpec", propOrder = {
"name",
"backingSpec",
"capacityInMB"
})
public class VslmCreateSpec
extends DynamicData
{
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected VslmCreateSpecBackingSpec backingSpec;
protected long capacityInMB;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the backingSpec property.
*
* @return
* possible object is
* {@link VslmCreateSpecBackingSpec }
*
*/
public VslmCreateSpecBackingSpec getBackingSpec() {
return backingSpec;
}
/**
* Sets the value of the backingSpec property.
*
* @param value
* allowed object is
* {@link VslmCreateSpecBackingSpec }
*
*/
public void setBackingSpec(VslmCreateSpecBackingSpec value) {
this.backingSpec = value;
}
/**
* Gets the value of the capacityInMB property.
*
*/
public long getCapacityInMB() {
return capacityInMB;
}
/**
* Sets the value of the capacityInMB property.
*
*/
public void setCapacityInMB(long value) {
this.capacityInMB = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy