/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ package com.amazonaws.services.fsx.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateVolumeRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { private String clientRequestToken; /** *
* Specifies the type of volume to create; ONTAP
and OPENZFS
are the only valid volume
* types.
*
* Specifies the name of the volume that you're creating. *
*/ private String name; /** ** Specifies the configuration to use when creating the ONTAP volume. *
*/ private CreateOntapVolumeConfiguration ontapConfiguration; private java.util.List* Specifies the configuration to use when creating the OpenZFS volume. *
*/ private CreateOpenZFSVolumeConfiguration openZFSConfiguration; /** * @param clientRequestToken */ public void setClientRequestToken(String clientRequestToken) { this.clientRequestToken = clientRequestToken; } /** * @return */ public String getClientRequestToken() { return this.clientRequestToken; } /** * @param clientRequestToken * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVolumeRequest withClientRequestToken(String clientRequestToken) { setClientRequestToken(clientRequestToken); return this; } /** *
* Specifies the type of volume to create; ONTAP
and OPENZFS
are the only valid volume
* types.
*
ONTAP
and OPENZFS
are the only valid
* volume types.
* @see VolumeType
*/
public void setVolumeType(String volumeType) {
this.volumeType = volumeType;
}
/**
*
* Specifies the type of volume to create; ONTAP
and OPENZFS
are the only valid volume
* types.
*
ONTAP
and OPENZFS
are the only valid
* volume types.
* @see VolumeType
*/
public String getVolumeType() {
return this.volumeType;
}
/**
*
* Specifies the type of volume to create; ONTAP
and OPENZFS
are the only valid volume
* types.
*
ONTAP
and OPENZFS
are the only valid
* volume types.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VolumeType
*/
public CreateVolumeRequest withVolumeType(String volumeType) {
setVolumeType(volumeType);
return this;
}
/**
*
* Specifies the type of volume to create; ONTAP
and OPENZFS
are the only valid volume
* types.
*
ONTAP
and OPENZFS
are the only valid
* volume types.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VolumeType
*/
public CreateVolumeRequest withVolumeType(VolumeType volumeType) {
this.volumeType = volumeType.toString();
return this;
}
/**
* * Specifies the name of the volume that you're creating. *
* * @param name * Specifies the name of the volume that you're creating. */ public void setName(String name) { this.name = name; } /** ** Specifies the name of the volume that you're creating. *
* * @return Specifies the name of the volume that you're creating. */ public String getName() { return this.name; } /** ** Specifies the name of the volume that you're creating. *
* * @param name * Specifies the name of the volume that you're creating. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVolumeRequest withName(String name) { setName(name); return this; } /** ** Specifies the configuration to use when creating the ONTAP volume. *
* * @param ontapConfiguration * Specifies the configuration to use when creating the ONTAP volume. */ public void setOntapConfiguration(CreateOntapVolumeConfiguration ontapConfiguration) { this.ontapConfiguration = ontapConfiguration; } /** ** Specifies the configuration to use when creating the ONTAP volume. *
* * @return Specifies the configuration to use when creating the ONTAP volume. */ public CreateOntapVolumeConfiguration getOntapConfiguration() { return this.ontapConfiguration; } /** ** Specifies the configuration to use when creating the ONTAP volume. *
* * @param ontapConfiguration * Specifies the configuration to use when creating the ONTAP volume. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVolumeRequest withOntapConfiguration(CreateOntapVolumeConfiguration ontapConfiguration) { setOntapConfiguration(ontapConfiguration); return this; } /** * @return */ public java.util.List* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVolumeRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* Specifies the configuration to use when creating the OpenZFS volume. *
* * @param openZFSConfiguration * Specifies the configuration to use when creating the OpenZFS volume. */ public void setOpenZFSConfiguration(CreateOpenZFSVolumeConfiguration openZFSConfiguration) { this.openZFSConfiguration = openZFSConfiguration; } /** ** Specifies the configuration to use when creating the OpenZFS volume. *
* * @return Specifies the configuration to use when creating the OpenZFS volume. */ public CreateOpenZFSVolumeConfiguration getOpenZFSConfiguration() { return this.openZFSConfiguration; } /** ** Specifies the configuration to use when creating the OpenZFS volume. *
* * @param openZFSConfiguration * Specifies the configuration to use when creating the OpenZFS volume. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVolumeRequest withOpenZFSConfiguration(CreateOpenZFSVolumeConfiguration openZFSConfiguration) { setOpenZFSConfiguration(openZFSConfiguration); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getClientRequestToken() != null) sb.append("ClientRequestToken: ").append(getClientRequestToken()).append(","); if (getVolumeType() != null) sb.append("VolumeType: ").append(getVolumeType()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getOntapConfiguration() != null) sb.append("OntapConfiguration: ").append(getOntapConfiguration()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getOpenZFSConfiguration() != null) sb.append("OpenZFSConfiguration: ").append(getOpenZFSConfiguration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateVolumeRequest == false) return false; CreateVolumeRequest other = (CreateVolumeRequest) obj; if (other.getClientRequestToken() == null ^ this.getClientRequestToken() == null) return false; if (other.getClientRequestToken() != null && other.getClientRequestToken().equals(this.getClientRequestToken()) == false) return false; if (other.getVolumeType() == null ^ this.getVolumeType() == null) return false; if (other.getVolumeType() != null && other.getVolumeType().equals(this.getVolumeType()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getOntapConfiguration() == null ^ this.getOntapConfiguration() == null) return false; if (other.getOntapConfiguration() != null && other.getOntapConfiguration().equals(this.getOntapConfiguration()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getOpenZFSConfiguration() == null ^ this.getOpenZFSConfiguration() == null) return false; if (other.getOpenZFSConfiguration() != null && other.getOpenZFSConfiguration().equals(this.getOpenZFSConfiguration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientRequestToken() == null) ? 0 : getClientRequestToken().hashCode()); hashCode = prime * hashCode + ((getVolumeType() == null) ? 0 : getVolumeType().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getOntapConfiguration() == null) ? 0 : getOntapConfiguration().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getOpenZFSConfiguration() == null) ? 0 : getOpenZFSConfiguration().hashCode()); return hashCode; } @Override public CreateVolumeRequest clone() { return (CreateVolumeRequest) super.clone(); } }