com.softlayer.api.service.network.storage.Replicant 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
The 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;
/**
* @see SoftLayer_Network_Storage_Replicant
*/
@ApiType("SoftLayer_Network_Storage_Replicant")
public class Replicant extends Storage {
/**
* When a replicant is in the process of synchronizing with the parent volume this flag will be true.
*/
@ApiProperty
protected String failbackInProgressFlag;
public String getFailbackInProgressFlag() {
return failbackInProgressFlag;
}
public void setFailbackInProgressFlag(String failbackInProgressFlag) {
this.failbackInProgressFlag = failbackInProgressFlag;
}
/**
* The volume name for a replicant.
*/
@ApiProperty
protected String volumeName;
public String getVolumeName() {
return volumeName;
}
public void setVolumeName(String volumeName) {
this.volumeName = volumeName;
}
public static class Mask extends com.softlayer.api.service.network.Storage.Mask {
public Mask failbackInProgressFlag() {
withLocalProperty("failbackInProgressFlag");
return this;
}
public Mask volumeName() {
withLocalProperty("volumeName");
return this;
}
}
}