
com.vmware.vim25.HostVirtualNicSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostVirtualNicSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVirtualNicSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ip" type="{urn:vim25}HostIpConfig" minOccurs="0"/>
* <element name="mac" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="distributedVirtualPort" type="{urn:vim25}DistributedVirtualSwitchPortConnection" minOccurs="0"/>
* <element name="portgroup" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="mtu" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="tsoEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVirtualNicSpec", propOrder = {
"ip",
"mac",
"distributedVirtualPort",
"portgroup",
"mtu",
"tsoEnabled"
})
public class HostVirtualNicSpec
extends DynamicData
{
protected HostIpConfig ip;
protected String mac;
protected DistributedVirtualSwitchPortConnection distributedVirtualPort;
protected String portgroup;
protected Integer mtu;
protected Boolean tsoEnabled;
/**
* Gets the value of the ip property.
*
* @return
* possible object is
* {@link HostIpConfig }
*
*/
public HostIpConfig getIp() {
return ip;
}
/**
* Sets the value of the ip property.
*
* @param value
* allowed object is
* {@link HostIpConfig }
*
*/
public void setIp(HostIpConfig value) {
this.ip = value;
}
/**
* Gets the value of the mac property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMac() {
return mac;
}
/**
* Sets the value of the mac property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMac(String value) {
this.mac = value;
}
/**
* Gets the value of the distributedVirtualPort property.
*
* @return
* possible object is
* {@link DistributedVirtualSwitchPortConnection }
*
*/
public DistributedVirtualSwitchPortConnection getDistributedVirtualPort() {
return distributedVirtualPort;
}
/**
* Sets the value of the distributedVirtualPort property.
*
* @param value
* allowed object is
* {@link DistributedVirtualSwitchPortConnection }
*
*/
public void setDistributedVirtualPort(DistributedVirtualSwitchPortConnection value) {
this.distributedVirtualPort = value;
}
/**
* Gets the value of the portgroup property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPortgroup() {
return portgroup;
}
/**
* Sets the value of the portgroup property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPortgroup(String value) {
this.portgroup = value;
}
/**
* Gets the value of the mtu property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMtu() {
return mtu;
}
/**
* Sets the value of the mtu property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMtu(Integer value) {
this.mtu = value;
}
/**
* Gets the value of the tsoEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTsoEnabled() {
return tsoEnabled;
}
/**
* Sets the value of the tsoEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTsoEnabled(Boolean value) {
this.tsoEnabled = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy