com.solidfire.element.api.ModifyVolumePairRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solidfire-sdk-java Show documentation
Show all versions of solidfire-sdk-java Show documentation
Library for interfacing with the Public and Incubating SolidFire Element API.
The newest version!
/*
* Copyright © 2014-2016 NetApp, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* DO NOT EDIT THIS CODE BY HAND! It has been generated with jsvcgen.
*/
package com.solidfire.element.api;
import com.solidfire.gson.Gson;
import com.solidfire.core.client.Attributes;
import com.solidfire.gson.annotations.SerializedName;
import com.solidfire.core.annotation.Since;
import com.solidfire.core.javautil.Optional;
import java.io.Serializable;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Objects;
/**
* ModifyVolumePairRequest
* ModifyVolumePair enables you to pause or restart replication between a pair of volumes.
**/
public class ModifyVolumePairRequest implements Serializable {
public static final long serialVersionUID = -1917779806252857220L;
@SerializedName("volumeID") private Long volumeID;
@SerializedName("pausedManual") private Optional pausedManual;
@SerializedName("mode") private Optional mode;
@SerializedName("pauseLimit") private Optional pauseLimit;
// empty constructor
@Since("7.0")
public ModifyVolumePairRequest() {}
// parameterized constructor
@Since("7.0")
public ModifyVolumePairRequest(
Long volumeID,
Optional pausedManual,
Optional mode,
Optional pauseLimit
)
{
this.volumeID = volumeID;
this.pausedManual = (pausedManual == null) ? Optional.empty() : pausedManual;
this.mode = (mode == null) ? Optional.empty() : mode;
this.pauseLimit = (pauseLimit == null) ? Optional.empty() : pauseLimit;
}
/**
* The ID of the volume to be modified.
**/
public Long getVolumeID() { return this.volumeID; }
public void setVolumeID(Long volumeID) {
this.volumeID = volumeID;
}
/**
* Specifies whether to pause or restart volume replication process. Valid values are:
* true: Pauses volume replication
* false: Restarts volume replication
**/
public Optional getPausedManual() { return this.pausedManual; }
public void setPausedManual(Optional pausedManual) {
this.pausedManual = (pausedManual == null) ? Optional.empty() : pausedManual;
}
/**
* Specifies the volume replication mode. Possible values are:
* Async: Writes are acknowledged when they complete locally. The cluster does not wait for writes to be replicated to the target cluster.
* Sync: The source acknowledges the write when the data is stored locally and on the remote cluster.
* SnapshotsOnly: Only snapshots created on the source cluster are replicated. Active writes from the source volume are not replicated.
**/
public Optional getMode() { return this.mode; }
public void setMode(Optional mode) {
this.mode = (mode == null) ? Optional.empty() : mode;
}
/**
* Internal use only.
**/
public Optional getPauseLimit() { return this.pauseLimit; }
public void setPauseLimit(Optional pauseLimit) {
this.pauseLimit = (pauseLimit == null) ? Optional.empty() : pauseLimit;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ModifyVolumePairRequest that = (ModifyVolumePairRequest) o;
return
Objects.equals(volumeID, that.volumeID) &&
Objects.equals(pausedManual, that.pausedManual) &&
Objects.equals(mode, that.mode) &&
Objects.equals(pauseLimit, that.pauseLimit);
}
@Override
public int hashCode() {
return Objects.hash( volumeID,pausedManual,mode,pauseLimit );
}
public java.util.Map toMap() {
java.util.Map map = new HashMap<>();
map.put("volumeID", volumeID);
map.put("pausedManual", pausedManual);
map.put("mode", mode);
map.put("pauseLimit", pauseLimit);
return map;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
Gson gson = new Gson();
sb.append( "{ " );
sb.append(" volumeID : ").append(gson.toJson(volumeID)).append(",");
if(null != pausedManual && pausedManual.isPresent()){
sb.append(" pausedManual : ").append(gson.toJson(pausedManual)).append(",");
}
else{
sb.append(" pausedManual : ").append("null").append(",");
}
if(null != mode && mode.isPresent()){
sb.append(" mode : ").append(gson.toJson(mode)).append(",");
}
else{
sb.append(" mode : ").append("null").append(",");
}
if(null != pauseLimit && pauseLimit.isPresent()){
sb.append(" pauseLimit : ").append(gson.toJson(pauseLimit)).append(",");
}
else{
sb.append(" pauseLimit : ").append("null").append(",");
}
sb.append( " }" );
if(sb.lastIndexOf(", }") != -1)
sb.deleteCharAt(sb.lastIndexOf(", }"));
return sb.toString();
}
public static Builder builder() {
return new Builder();
}
public final Builder asBuilder() {
return new Builder().buildFrom(this);
}
public static class Builder {
private Long volumeID;
private Optional pausedManual;
private Optional mode;
private Optional pauseLimit;
private Builder() { }
public ModifyVolumePairRequest build() {
return new ModifyVolumePairRequest (
this.volumeID,
this.pausedManual,
this.mode,
this.pauseLimit);
}
private ModifyVolumePairRequest.Builder buildFrom(final ModifyVolumePairRequest req) {
this.volumeID = req.volumeID;
this.pausedManual = req.pausedManual;
this.mode = req.mode;
this.pauseLimit = req.pauseLimit;
return this;
}
public ModifyVolumePairRequest.Builder volumeID(final Long volumeID) {
this.volumeID = volumeID;
return this;
}
public ModifyVolumePairRequest.Builder optionalPausedManual(final Boolean pausedManual) {
this.pausedManual = (pausedManual == null) ? Optional.empty() : Optional.of(pausedManual);
return this;
}
public ModifyVolumePairRequest.Builder optionalMode(final String mode) {
this.mode = (mode == null) ? Optional.empty() : Optional.of(mode);
return this;
}
public ModifyVolumePairRequest.Builder optionalPauseLimit(final Long pauseLimit) {
this.pauseLimit = (pauseLimit == null) ? Optional.empty() : Optional.of(pauseLimit);
return this;
}
}
}