![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterNetworkConfigSpec 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 ClusterNetworkConfigSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterNetworkConfigSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="networkPortGroup" type="{urn:vim25}ManagedObjectReference"/>
* <element name="ipSettings" type="{urn:vim25}CustomizationIPSettings"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterNetworkConfigSpec", propOrder = {
"networkPortGroup",
"ipSettings"
})
public class ClusterNetworkConfigSpec
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference networkPortGroup;
@XmlElement(required = true)
protected CustomizationIPSettings ipSettings;
/**
* Gets the value of the networkPortGroup property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getNetworkPortGroup() {
return networkPortGroup;
}
/**
* Sets the value of the networkPortGroup property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setNetworkPortGroup(ManagedObjectReference value) {
this.networkPortGroup = value;
}
/**
* Gets the value of the ipSettings property.
*
* @return
* possible object is
* {@link CustomizationIPSettings }
*
*/
public CustomizationIPSettings getIpSettings() {
return ipSettings;
}
/**
* Sets the value of the ipSettings property.
*
* @param value
* allowed object is
* {@link CustomizationIPSettings }
*
*/
public void setIpSettings(CustomizationIPSettings value) {
this.ipSettings = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy