com.solidfire.element.api.CloneMultipleVolumesRequest 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.
/*
* 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.jsvcgen.annotation.Since;
import com.solidfire.jsvcgen.client.ApiException;
import com.solidfire.jsvcgen.javautil.Optional;
import java.net.URL;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Objects;
import java.util.TreeMap;
import static com.solidfire.jsvcgen.javautil.Optional.of;
/**
* The Request object for the "CloneMultipleVolumes" API Service call.
**/
public class CloneMultipleVolumesRequest implements Serializable {
private static final long serialVersionUID = 493827587L;
@SerializedName("volumes") private final CloneMultipleVolumeParams[] volumes;
@SerializedName("access") private final Optional access;
@SerializedName("groupSnapshotID") private final Optional groupSnapshotID;
@SerializedName("newAccountID") private final Optional newAccountID;
/**
* The Request object for the "CloneMultipleVolumes" API Service call.
* @param volumes [required] Array of Unique ID for each volume to include in the clone with optional parameters. If optional parameters are not specified, the values will be inherited from the source volumes.
* @param access (optional) New default access method for the new volumes if not overridden by information passed in the volumes array.
* @param groupSnapshotID (optional) ID of the group snapshot to use as a basis for the clone.
* @param newAccountID (optional) New account ID for the volumes if not overridden by information passed in the volumes array.
* @since 7.0
**/
@Since("7.0")
public CloneMultipleVolumesRequest(CloneMultipleVolumeParams[] volumes, Optional access, Optional groupSnapshotID, Optional newAccountID) {
this.volumes = volumes;
this.access = (access == null) ? Optional.empty() : access;
this.groupSnapshotID = (groupSnapshotID == null) ? Optional.empty() : groupSnapshotID;
this.newAccountID = (newAccountID == null) ? Optional.empty() : newAccountID;
}
/**
* Array of Unique ID for each volume to include in the clone with optional parameters. If optional parameters are not specified, the values will be inherited from the source volumes.
**/
public CloneMultipleVolumeParams[] getVolumes() {
return this.volumes;
}
/**
* New default access method for the new volumes if not overridden by information passed in the volumes array.
*
readOnly: Only read operations are allowed.
*
readWrite: Reads and writes are allowed.
*
locked: No reads or writes are allowed.
*
replicationTarget: Identify a volume as the target volume for a paired set of volumes. If the volume is not paired, the access status is locked.
*
* If unspecified, the access settings of the clone will be the same as the source.
**/
public Optional getAccess() {
return this.access;
}
/**
* ID of the group snapshot to use as a basis for the clone.
**/
public Optional getGroupSnapshotID() {
return this.groupSnapshotID;
}
/**
* New account ID for the volumes if not overridden by information passed in the volumes array.
**/
public Optional getNewAccountID() {
return this.newAccountID;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CloneMultipleVolumesRequest that = (CloneMultipleVolumesRequest) o;
return Objects.deepEquals( volumes , that.volumes )
&& Objects.equals( access , that.access )
&& Objects.equals( groupSnapshotID , that.groupSnapshotID )
&& Objects.equals( newAccountID , that.newAccountID );
}
@Override
public int hashCode() {
return Objects.hash( volumes, access, groupSnapshotID, newAccountID );
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append( "{ " );
sb.append(" volumes : ").append(Arrays.toString(volumes)).append(",");
if(null != access && access.isPresent())
sb.append(" access : ").append(access.get()).append(",");
if(null != groupSnapshotID && groupSnapshotID.isPresent())
sb.append(" groupSnapshotID : ").append(groupSnapshotID.get()).append(",");
if(null != newAccountID && newAccountID.isPresent())
sb.append(" newAccountID : ").append(newAccountID.get());
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 CloneMultipleVolumeParams[] volumes;
private Optional access;
private Optional groupSnapshotID;
private Optional newAccountID;
private Builder() { }
public CloneMultipleVolumesRequest build() {
return new CloneMultipleVolumesRequest (
this.volumes,
this.access,
this.groupSnapshotID,
this.newAccountID );
}
private CloneMultipleVolumesRequest.Builder buildFrom(final CloneMultipleVolumesRequest req) {
this.volumes = req.volumes;
this.access = req.access;
this.groupSnapshotID = req.groupSnapshotID;
this.newAccountID = req.newAccountID;
return this;
}
public CloneMultipleVolumesRequest.Builder volumes(final CloneMultipleVolumeParams[] volumes) {
this.volumes = volumes;
return this;
}
public CloneMultipleVolumesRequest.Builder optionalAccess(final String access) {
this.access = (access == null) ? Optional.empty() : Optional.of(access);
return this;
}
public CloneMultipleVolumesRequest.Builder optionalGroupSnapshotID(final Long groupSnapshotID) {
this.groupSnapshotID = (groupSnapshotID == null) ? Optional.empty() : Optional.of(groupSnapshotID);
return this;
}
public CloneMultipleVolumesRequest.Builder optionalNewAccountID(final Long newAccountID) {
this.newAccountID = (newAccountID == null) ? Optional.empty() : Optional.of(newAccountID);
return this;
}
}
}