com.amazonaws.services.fsx.model.DeleteVolumeResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-fsx Show documentation
/*
* Copyright 2019-2024 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;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DeleteVolumeResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The ID of the volume that's being deleted.
*
*/
private String volumeId;
/**
*
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful, this
* value is DELETING
.
*
*/
private String lifecycle;
/**
*
* Returned after a DeleteVolume
request, showing the status of the delete request.
*
*/
private DeleteVolumeOntapResponse ontapResponse;
/**
*
* The ID of the volume that's being deleted.
*
*
* @param volumeId
* The ID of the volume that's being deleted.
*/
public void setVolumeId(String volumeId) {
this.volumeId = volumeId;
}
/**
*
* The ID of the volume that's being deleted.
*
*
* @return The ID of the volume that's being deleted.
*/
public String getVolumeId() {
return this.volumeId;
}
/**
*
* The ID of the volume that's being deleted.
*
*
* @param volumeId
* The ID of the volume that's being deleted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DeleteVolumeResult withVolumeId(String volumeId) {
setVolumeId(volumeId);
return this;
}
/**
*
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful, this
* value is DELETING
.
*
*
* @param lifecycle
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful,
* this value is DELETING
.
* @see VolumeLifecycle
*/
public void setLifecycle(String lifecycle) {
this.lifecycle = lifecycle;
}
/**
*
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful, this
* value is DELETING
.
*
*
* @return The lifecycle state of the volume being deleted. If the DeleteVolume
operation is
* successful, this value is DELETING
.
* @see VolumeLifecycle
*/
public String getLifecycle() {
return this.lifecycle;
}
/**
*
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful, this
* value is DELETING
.
*
*
* @param lifecycle
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful,
* this value is DELETING
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VolumeLifecycle
*/
public DeleteVolumeResult withLifecycle(String lifecycle) {
setLifecycle(lifecycle);
return this;
}
/**
*
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful, this
* value is DELETING
.
*
*
* @param lifecycle
* The lifecycle state of the volume being deleted. If the DeleteVolume
operation is successful,
* this value is DELETING
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VolumeLifecycle
*/
public DeleteVolumeResult withLifecycle(VolumeLifecycle lifecycle) {
this.lifecycle = lifecycle.toString();
return this;
}
/**
*
* Returned after a DeleteVolume
request, showing the status of the delete request.
*
*
* @param ontapResponse
* Returned after a DeleteVolume
request, showing the status of the delete request.
*/
public void setOntapResponse(DeleteVolumeOntapResponse ontapResponse) {
this.ontapResponse = ontapResponse;
}
/**
*
* Returned after a DeleteVolume
request, showing the status of the delete request.
*
*
* @return Returned after a DeleteVolume
request, showing the status of the delete request.
*/
public DeleteVolumeOntapResponse getOntapResponse() {
return this.ontapResponse;
}
/**
*
* Returned after a DeleteVolume
request, showing the status of the delete request.
*
*
* @param ontapResponse
* Returned after a DeleteVolume
request, showing the status of the delete request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DeleteVolumeResult withOntapResponse(DeleteVolumeOntapResponse ontapResponse) {
setOntapResponse(ontapResponse);
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 (getVolumeId() != null)
sb.append("VolumeId: ").append(getVolumeId()).append(",");
if (getLifecycle() != null)
sb.append("Lifecycle: ").append(getLifecycle()).append(",");
if (getOntapResponse() != null)
sb.append("OntapResponse: ").append(getOntapResponse());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DeleteVolumeResult == false)
return false;
DeleteVolumeResult other = (DeleteVolumeResult) obj;
if (other.getVolumeId() == null ^ this.getVolumeId() == null)
return false;
if (other.getVolumeId() != null && other.getVolumeId().equals(this.getVolumeId()) == false)
return false;
if (other.getLifecycle() == null ^ this.getLifecycle() == null)
return false;
if (other.getLifecycle() != null && other.getLifecycle().equals(this.getLifecycle()) == false)
return false;
if (other.getOntapResponse() == null ^ this.getOntapResponse() == null)
return false;
if (other.getOntapResponse() != null && other.getOntapResponse().equals(this.getOntapResponse()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getVolumeId() == null) ? 0 : getVolumeId().hashCode());
hashCode = prime * hashCode + ((getLifecycle() == null) ? 0 : getLifecycle().hashCode());
hashCode = prime * hashCode + ((getOntapResponse() == null) ? 0 : getOntapResponse().hashCode());
return hashCode;
}
@Override
public DeleteVolumeResult clone() {
try {
return (DeleteVolumeResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}