* 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
.
*
* Returned after a DeleteVolume
request, showing the status of the delete request.
*
* 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
.
*
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
.
*
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
.
*
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
.
*
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.
*
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.
*
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.
*
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);
}
}
}