com.softlayer.api.service.network.storage.Nas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
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);
}
}
}