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

com.emc.storageos.model.vpool.CapacityResponse Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2008-2013 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.vpool;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Capacity response
 */
@XmlRootElement(name = "capacity")
public class CapacityResponse {

    private String freeGb;
    private String usedGb;
    private String provissionedGb;
    private String percentUsed;
    private String percentProvisioned;
    private String netFreeGb;

    public CapacityResponse() {
    }

    /**
     * The free storage capacity of the specified VirtualPool
     * or VirtualArray.
     * 
     * @valid none
     */
    @XmlElement(name = "free_gb")
    public String getFreeGb() {
        return freeGb;
    }

    public void setFreeGb(String freeGb) {
        this.freeGb = freeGb;
    }

    /**
     * The net free storage capacity of the specified VirtualPool
     * or VirtualArray.
     */
    @XmlElement(name = "net_free_gb")
    public String getNetFreeGb() {
        return netFreeGb;
    }

    public void setNetFreeGb(String netFreeGb) {
        this.netFreeGb = netFreeGb;
    }

    /**
     * The used storage capacity of the specified VirtualPool
     * or VirtualArray.
     * 
     * @valid none
     */
    @XmlElement(name = "used_gb")
    public String getUsedGb() {
        return usedGb;
    }

    public void setUsedGb(String usedGb) {
        this.usedGb = usedGb;
    }

    /**
     * The subscribed storage capacity of the specified
     * VirtualPool or VirtualArray.
     * 
     * @valid none
     */
    @XmlElement(name = "provisioned_gb")
    public String getProvissionedGb() {
        return provissionedGb;
    }

    public void setProvissionedGb(String provissionedGb) {
        this.provissionedGb = provissionedGb;
    }

    /**
     * The actual used percent of the usable capacity of the
     * specified VirtualPool or VirtualArray.
     * 
     * @valid none
     */
    @XmlElement(name = "percent_used")
    public String getPercentUsed() {
        return percentUsed;
    }

    public void setPercentUsed(String percentUsed) {
        this.percentUsed = percentUsed;
    }

    /**
     * The provisioned percent of the usable capacity of the
     * specified VirtualPool or VirtualArray.
     * 
     * @valid none
     */
    @XmlElement(name = "percent_provisioned")
    public String getPercentProvisioned() {
        return percentProvisioned;
    }

    public void setPercentProvisioned(String percentProvisioned) {
        this.percentProvisioned = percentProvisioned;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy