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

com.softlayer.api.service.network.storage.Nas Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.network.storage;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.network.Storage;
import com.softlayer.api.service.network.storage.daily.Usage;

/**
 * The SoftLayer_Network_Storage_Nas contains general information regarding a NAS Storage service such as account id, username, password, maximum capacity, Storage's product type and capacity. 
 *
 * @see SoftLayer_Network_Storage_Nas
 */
@ApiType("SoftLayer_Network_Storage_Nas")
public class Nas extends Storage {

    @ApiProperty
    protected Usage recentBytesUsed;

    public Usage getRecentBytesUsed() {
        return recentBytesUsed;
    }

    public void setRecentBytesUsed(Usage recentBytesUsed) {
        this.recentBytesUsed = recentBytesUsed;
    }

    public static class Mask extends com.softlayer.api.service.network.Storage.Mask {

        public com.softlayer.api.service.network.storage.daily.Usage.Mask recentBytesUsed() {
            return withSubMask("recentBytesUsed", com.softlayer.api.service.network.storage.daily.Usage.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy