
com.vmware.vim.UpdateInternetScsiAlias 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.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="_this" type="{urn:vim2}ManagedObjectReference"/>
* <element name="iScsiHbaDevice" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="iScsiAlias" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_this",
"iScsiHbaDevice",
"iScsiAlias"
})
@XmlRootElement(name = "UpdateInternetScsiAlias")
public class UpdateInternetScsiAlias {
@XmlElement(required = true)
protected ManagedObjectReference _this;
@XmlElement(required = true)
protected String iScsiHbaDevice;
@XmlElement(required = true)
protected String iScsiAlias;
/**
* Gets the value of the this property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getThis() {
return _this;
}
/**
* Sets the value of the this property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setThis(ManagedObjectReference value) {
this._this = value;
}
/**
* Gets the value of the iScsiHbaDevice property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIScsiHbaDevice() {
return iScsiHbaDevice;
}
/**
* Sets the value of the iScsiHbaDevice property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIScsiHbaDevice(String value) {
this.iScsiHbaDevice = value;
}
/**
* Gets the value of the iScsiAlias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIScsiAlias() {
return iScsiAlias;
}
/**
* Sets the value of the iScsiAlias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIScsiAlias(String value) {
this.iScsiAlias = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy