Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.solidfire.element.api.StartBulkVolumeReadRequest Maven / Gradle / Ivy
Go to download
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.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;
/**
* StartBulkVolumeReadRequest
**/
public class StartBulkVolumeReadRequest implements Serializable {
public static final long serialVersionUID = -108156352014984385L;
@SerializedName("volumeID") private Long volumeID;
@SerializedName("format") private String format;
@SerializedName("snapshotID") private Optional snapshotID;
@SerializedName("script") private Optional script;
@SerializedName("scriptParameters") private Optional scriptParameters;
@SerializedName("attributes") private Optional> attributes;
// empty constructor
@Since("7.0")
public StartBulkVolumeReadRequest() {}
// parameterized constructor
@Since("7.0")
public StartBulkVolumeReadRequest(
Long volumeID,
String format,
Optional snapshotID,
Optional script,
Optional scriptParameters,
Optional> attributes
)
{
this.volumeID = volumeID;
this.format = format;
this.snapshotID = (snapshotID == null) ? Optional.empty() : snapshotID;
this.script = (script == null) ? Optional.empty() : script;
this.scriptParameters = (scriptParameters == null) ? Optional.empty() : scriptParameters;
this.attributes = (attributes == null) ? Optional.>empty() : attributes;
}
/**
* ID of the volume to be read.
**/
public Long getVolumeID() { return this.volumeID; }
public void setVolumeID(Long volumeID) {
this.volumeID = volumeID;
}
/**
* The format of the volume data. Can be either:
* uncompressed: every byte of the volume is returned without any compression.
* native: opaque data is returned that is smaller and more efficiently stored and written on a subsequent bulk volume write.
**/
public String getFormat() { return this.format; }
public void setFormat(String format) {
this.format = format;
}
/**
* ID of a previously created snapshot used for bulk volume reads.
* If no ID is entered, a snapshot of the current active volume image is made.
**/
public Optional getSnapshotID() { return this.snapshotID; }
public void setSnapshotID(Optional snapshotID) {
this.snapshotID = (snapshotID == null) ? Optional.empty() : snapshotID;
}
/**
* Executable name of a script.
* If no script name is given then the key and URL is necessary to access SolidFire nodes.
* The script is run on the primary node and the key and URL is returned to the script so the local web server can be contacted.
**/
public Optional getScript() { return this.script; }
public void setScript(Optional script) {
this.script = (script == null) ? Optional.empty() : script;
}
/**
* JSON parameters to pass to the script.
**/
public Optional getScriptParameters() { return this.scriptParameters; }
public void setScriptParameters(Optional scriptParameters) {
this.scriptParameters = (scriptParameters == null) ? Optional.empty() : scriptParameters;
}
/**
* JSON attributes for the bulk volume job.
**/
public Optional> getAttributes() { return this.attributes; }
public void setAttributes(Optional> attributes) {
this.attributes = (attributes == null) ? Optional.>empty() : attributes;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
StartBulkVolumeReadRequest that = (StartBulkVolumeReadRequest) o;
return
Objects.equals(volumeID, that.volumeID) &&
Objects.equals(format, that.format) &&
Objects.equals(snapshotID, that.snapshotID) &&
Objects.equals(script, that.script) &&
Objects.equals(scriptParameters, that.scriptParameters) &&
Objects.equals(attributes, that.attributes);
}
@Override
public int hashCode() {
return Objects.hash( volumeID,format,snapshotID,script,scriptParameters,attributes );
}
public java.util.Map toMap() {
java.util.Map map = new HashMap<>();
map.put("volumeID", volumeID);
map.put("format", format);
map.put("snapshotID", snapshotID);
map.put("script", script);
map.put("scriptParameters", scriptParameters);
map.put("attributes", attributes);
return map;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append( "{ " );
sb.append(" volumeID : ").append(volumeID).append(",");
sb.append(" format : ").append(format).append(",");
if(null != snapshotID && snapshotID.isPresent()){
sb.append(" snapshotID : ").append(snapshotID).append(",");
}
if(null != script && script.isPresent()){
sb.append(" script : ").append(script).append(",");
}
if(null != scriptParameters && scriptParameters.isPresent()){
sb.append(" scriptParameters : ").append(scriptParameters).append(",");
}
if(null != attributes && attributes.isPresent()){
sb.append(" attributes : ").append(attributes).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 String format;
private Optional snapshotID;
private Optional script;
private Optional scriptParameters;
private Optional> attributes;
private Builder() { }
public StartBulkVolumeReadRequest build() {
return new StartBulkVolumeReadRequest (
this.volumeID,
this.format,
this.snapshotID,
this.script,
this.scriptParameters,
this.attributes);
}
private StartBulkVolumeReadRequest.Builder buildFrom(final StartBulkVolumeReadRequest req) {
this.volumeID = req.volumeID;
this.format = req.format;
this.snapshotID = req.snapshotID;
this.script = req.script;
this.scriptParameters = req.scriptParameters;
this.attributes = req.attributes;
return this;
}
public StartBulkVolumeReadRequest.Builder volumeID(final Long volumeID) {
this.volumeID = volumeID;
return this;
}
public StartBulkVolumeReadRequest.Builder format(final String format) {
this.format = format;
return this;
}
public StartBulkVolumeReadRequest.Builder optionalSnapshotID(final Long snapshotID) {
this.snapshotID = (snapshotID == null) ? Optional.empty() : Optional.of(snapshotID);
return this;
}
public StartBulkVolumeReadRequest.Builder optionalScript(final String script) {
this.script = (script == null) ? Optional.empty() : Optional.of(script);
return this;
}
public StartBulkVolumeReadRequest.Builder optionalScriptParameters(final Object scriptParameters) {
this.scriptParameters = (scriptParameters == null) ? Optional.empty() : Optional.of(scriptParameters);
return this;
}
public StartBulkVolumeReadRequest.Builder optionalAttributes(final java.util.Map attributes) {
this.attributes = (attributes == null) ? Optional.>empty() : Optional.of(attributes);
return this;
}
}
}