All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VsanUpgradeSystemUpgradeHistoryItem Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for VsanUpgradeSystemUpgradeHistoryItem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VsanUpgradeSystemUpgradeHistoryItem">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="host" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="task" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VsanUpgradeSystemUpgradeHistoryItem", propOrder = { "timestamp", "host", "message", "task" }) @XmlSeeAlso({ VsanUpgradeSystemUpgradeHistoryDiskGroupOp.class, VsanUpgradeSystemUpgradeHistoryPreflightFail.class }) public class VsanUpgradeSystemUpgradeHistoryItem extends DynamicData { @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timestamp; protected ManagedObjectReference host; @XmlElement(required = true) protected String message; protected ManagedObjectReference task; /** * Gets the value of the timestamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimestamp(XMLGregorianCalendar value) { this.timestamp = value; } /** * Gets the value of the host property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getHost() { return host; } /** * Sets the value of the host property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setHost(ManagedObjectReference value) { this.host = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the task property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getTask() { return task; } /** * Sets the value of the task property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setTask(ManagedObjectReference value) { this.task = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy