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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
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 StoragePerformanceSummary complex type. * *

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

 * <complexType name="StoragePerformanceSummary">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="interval" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="percentile" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded"/>
 *         <element name="datastoreReadLatency" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/>
 *         <element name="datastoreWriteLatency" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/>
 *         <element name="datastoreVmLatency" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/>
 *         <element name="datastoreReadIops" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/>
 *         <element name="datastoreWriteIops" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"/>
 *         <element name="siocActivityDuration" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StoragePerformanceSummary", propOrder = { "interval", "percentile", "datastoreReadLatency", "datastoreWriteLatency", "datastoreVmLatency", "datastoreReadIops", "datastoreWriteIops", "siocActivityDuration" }) public class StoragePerformanceSummary extends DynamicData { protected int interval; @XmlElement(type = Integer.class) protected List percentile; @XmlElement(type = Double.class) protected List datastoreReadLatency; @XmlElement(type = Double.class) protected List datastoreWriteLatency; @XmlElement(type = Double.class) protected List datastoreVmLatency; @XmlElement(type = Double.class) protected List datastoreReadIops; @XmlElement(type = Double.class) protected List datastoreWriteIops; protected int siocActivityDuration; /** * Gets the value of the interval property. * */ public int getInterval() { return interval; } /** * Sets the value of the interval property. * */ public void setInterval(int value) { this.interval = value; } /** * Gets the value of the percentile property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the percentile property. * *

* For example, to add a new item, do as follows: *

     *    getPercentile().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List getPercentile() { if (percentile == null) { percentile = new ArrayList(); } return this.percentile; } /** * Gets the value of the datastoreReadLatency property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the datastoreReadLatency property. * *

* For example, to add a new item, do as follows: *

     *    getDatastoreReadLatency().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List getDatastoreReadLatency() { if (datastoreReadLatency == null) { datastoreReadLatency = new ArrayList(); } return this.datastoreReadLatency; } /** * Gets the value of the datastoreWriteLatency property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the datastoreWriteLatency property. * *

* For example, to add a new item, do as follows: *

     *    getDatastoreWriteLatency().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List getDatastoreWriteLatency() { if (datastoreWriteLatency == null) { datastoreWriteLatency = new ArrayList(); } return this.datastoreWriteLatency; } /** * Gets the value of the datastoreVmLatency property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the datastoreVmLatency property. * *

* For example, to add a new item, do as follows: *

     *    getDatastoreVmLatency().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List getDatastoreVmLatency() { if (datastoreVmLatency == null) { datastoreVmLatency = new ArrayList(); } return this.datastoreVmLatency; } /** * Gets the value of the datastoreReadIops property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the datastoreReadIops property. * *

* For example, to add a new item, do as follows: *

     *    getDatastoreReadIops().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List getDatastoreReadIops() { if (datastoreReadIops == null) { datastoreReadIops = new ArrayList(); } return this.datastoreReadIops; } /** * Gets the value of the datastoreWriteIops property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the datastoreWriteIops property. * *

* For example, to add a new item, do as follows: *

     *    getDatastoreWriteIops().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List getDatastoreWriteIops() { if (datastoreWriteIops == null) { datastoreWriteIops = new ArrayList(); } return this.datastoreWriteIops; } /** * Gets the value of the siocActivityDuration property. * */ public int getSiocActivityDuration() { return siocActivityDuration; } /** * Sets the value of the siocActivityDuration property. * */ public void setSiocActivityDuration(int value) { this.siocActivityDuration = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy