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

com.solidfire.element.api.ModifyVolumePairRequest Maven / Gradle / Ivy

There is a newer version: 1.5.0.89
Show 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.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  
 **/

public class ModifyVolumePairRequest implements Serializable {

    public static final long serialVersionUID = 4570555575415487784L;
    @SerializedName("volumeID") private Long volumeID;
    @SerializedName("pausedManual") private Optional pausedManual;
    @SerializedName("mode") private Optional mode;

    // empty constructor
    @Since("7.0")
    public ModifyVolumePairRequest() {}

    
    // parameterized constructor
    @Since("7.0")
    public ModifyVolumePairRequest(
        Long volumeID,
        Optional pausedManual,
        Optional mode
    )
    {
        this.volumeID = volumeID;
        this.pausedManual = (pausedManual == null) ? Optional.empty() : pausedManual;
        this.mode = (mode == null) ? Optional.empty() : mode;
    }

    /** 
     * Identification number of the volume to be modified.
     **/
    public Long getVolumeID() { return this.volumeID; }
    public void setVolumeID(Long volumeID) { 
        this.volumeID = volumeID;
    }
    /** 
     * Valid values that can be entered:
     * true: to pause volume replication.
     * false: to restart volume replication.
     * If no value is specified, no change in replication is performed.
     **/
    public Optional getPausedManual() { return this.pausedManual; }
    public void setPausedManual(Optional pausedManual) { 
        this.pausedManual = (pausedManual == null) ? Optional.empty() : pausedManual;
    }
    /** 
     * Volume replication mode.
     * Possible values:
     * 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 will be 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;
    }

    @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);
    }

    @Override
    public int hashCode() {
        return Objects.hash( volumeID,pausedManual,mode );
    }


    public java.util.Map toMap() {
        java.util.Map map = new HashMap<>();
        map.put("volumeID", volumeID);
        map.put("pausedManual", pausedManual);
        map.put("mode", mode);
        return map;
    }

    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder();
        sb.append( "{ " );

        sb.append(" volumeID : ").append(volumeID).append(",");
        if(null != pausedManual && pausedManual.isPresent()){
            sb.append(" pausedManual : ").append(pausedManual).append(",");
        }
        if(null != mode && mode.isPresent()){
            sb.append(" mode : ").append(mode).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 Builder() { }

        public ModifyVolumePairRequest build() {
            return new ModifyVolumePairRequest (
                         this.volumeID,
                         this.pausedManual,
                         this.mode);
        }

        private ModifyVolumePairRequest.Builder buildFrom(final ModifyVolumePairRequest req) {
            this.volumeID = req.volumeID;
            this.pausedManual = req.pausedManual;
            this.mode = req.mode;

            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;
        }

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy