
com.vmware.vim.VirtualMachineGuestSummary 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.XmlType;
/**
* Java class for VirtualMachineGuestSummary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineGuestSummary">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="guestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="guestFullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="toolsStatus" type="{urn:vim2}VirtualMachineToolsStatus" minOccurs="0"/>
* <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ipAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineGuestSummary", propOrder = {
"guestId",
"guestFullName",
"toolsStatus",
"hostName",
"ipAddress"
})
public class VirtualMachineGuestSummary
extends DynamicData
{
protected String guestId;
protected String guestFullName;
protected VirtualMachineToolsStatus toolsStatus;
protected String hostName;
protected String ipAddress;
/**
* Gets the value of the guestId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGuestId() {
return guestId;
}
/**
* Sets the value of the guestId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGuestId(String value) {
this.guestId = value;
}
/**
* Gets the value of the guestFullName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGuestFullName() {
return guestFullName;
}
/**
* Sets the value of the guestFullName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGuestFullName(String value) {
this.guestFullName = value;
}
/**
* Gets the value of the toolsStatus property.
*
* @return
* possible object is
* {@link VirtualMachineToolsStatus }
*
*/
public VirtualMachineToolsStatus getToolsStatus() {
return toolsStatus;
}
/**
* Sets the value of the toolsStatus property.
*
* @param value
* allowed object is
* {@link VirtualMachineToolsStatus }
*
*/
public void setToolsStatus(VirtualMachineToolsStatus value) {
this.toolsStatus = value;
}
/**
* Gets the value of the hostName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHostName() {
return hostName;
}
/**
* Sets the value of the hostName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHostName(String value) {
this.hostName = value;
}
/**
* Gets the value of the ipAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpAddress() {
return ipAddress;
}
/**
* Sets the value of the ipAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpAddress(String value) {
this.ipAddress = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy