/* * 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.elasticsearch.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Provides the current status of the Auto-Tune options. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AutoTuneStatus implements Serializable, Cloneable, StructuredPojo { /** ** Timestamp which tells Auto-Tune options creation date . *
*/ private java.util.Date creationDate; /** ** Timestamp which tells Auto-Tune options last updated time. *
*/ private java.util.Date updateDate; /** ** Specifies the Auto-Tune options latest version. *
*/ private Integer updateVersion; /** *
* Specifies the AutoTuneState
for the Elasticsearch domain.
*
* Specifies the error message while enabling or disabling the Auto-Tune options. *
*/ private String errorMessage; /** ** Indicates whether the Elasticsearch domain is being deleted. *
*/ private Boolean pendingDeletion; /** ** Timestamp which tells Auto-Tune options creation date . *
* * @param creationDate * Timestamp which tells Auto-Tune options creation date . */ public void setCreationDate(java.util.Date creationDate) { this.creationDate = creationDate; } /** ** Timestamp which tells Auto-Tune options creation date . *
* * @return Timestamp which tells Auto-Tune options creation date . */ public java.util.Date getCreationDate() { return this.creationDate; } /** ** Timestamp which tells Auto-Tune options creation date . *
* * @param creationDate * Timestamp which tells Auto-Tune options creation date . * @return Returns a reference to this object so that method calls can be chained together. */ public AutoTuneStatus withCreationDate(java.util.Date creationDate) { setCreationDate(creationDate); return this; } /** ** Timestamp which tells Auto-Tune options last updated time. *
* * @param updateDate * Timestamp which tells Auto-Tune options last updated time. */ public void setUpdateDate(java.util.Date updateDate) { this.updateDate = updateDate; } /** ** Timestamp which tells Auto-Tune options last updated time. *
* * @return Timestamp which tells Auto-Tune options last updated time. */ public java.util.Date getUpdateDate() { return this.updateDate; } /** ** Timestamp which tells Auto-Tune options last updated time. *
* * @param updateDate * Timestamp which tells Auto-Tune options last updated time. * @return Returns a reference to this object so that method calls can be chained together. */ public AutoTuneStatus withUpdateDate(java.util.Date updateDate) { setUpdateDate(updateDate); return this; } /** ** Specifies the Auto-Tune options latest version. *
* * @param updateVersion * Specifies the Auto-Tune options latest version. */ public void setUpdateVersion(Integer updateVersion) { this.updateVersion = updateVersion; } /** ** Specifies the Auto-Tune options latest version. *
* * @return Specifies the Auto-Tune options latest version. */ public Integer getUpdateVersion() { return this.updateVersion; } /** ** Specifies the Auto-Tune options latest version. *
* * @param updateVersion * Specifies the Auto-Tune options latest version. * @return Returns a reference to this object so that method calls can be chained together. */ public AutoTuneStatus withUpdateVersion(Integer updateVersion) { setUpdateVersion(updateVersion); return this; } /** *
* Specifies the AutoTuneState
for the Elasticsearch domain.
*
AutoTuneState
for the Elasticsearch domain.
* @see AutoTuneState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* Specifies the AutoTuneState
for the Elasticsearch domain.
*
AutoTuneState
for the Elasticsearch domain.
* @see AutoTuneState
*/
public String getState() {
return this.state;
}
/**
*
* Specifies the AutoTuneState
for the Elasticsearch domain.
*
AutoTuneState
for the Elasticsearch domain.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutoTuneState
*/
public AutoTuneStatus withState(String state) {
setState(state);
return this;
}
/**
*
* Specifies the AutoTuneState
for the Elasticsearch domain.
*
AutoTuneState
for the Elasticsearch domain.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutoTuneState
*/
public AutoTuneStatus withState(AutoTuneState state) {
this.state = state.toString();
return this;
}
/**
* * Specifies the error message while enabling or disabling the Auto-Tune options. *
* * @param errorMessage * Specifies the error message while enabling or disabling the Auto-Tune options. */ public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } /** ** Specifies the error message while enabling or disabling the Auto-Tune options. *
* * @return Specifies the error message while enabling or disabling the Auto-Tune options. */ public String getErrorMessage() { return this.errorMessage; } /** ** Specifies the error message while enabling or disabling the Auto-Tune options. *
* * @param errorMessage * Specifies the error message while enabling or disabling the Auto-Tune options. * @return Returns a reference to this object so that method calls can be chained together. */ public AutoTuneStatus withErrorMessage(String errorMessage) { setErrorMessage(errorMessage); return this; } /** ** Indicates whether the Elasticsearch domain is being deleted. *
* * @param pendingDeletion * Indicates whether the Elasticsearch domain is being deleted. */ public void setPendingDeletion(Boolean pendingDeletion) { this.pendingDeletion = pendingDeletion; } /** ** Indicates whether the Elasticsearch domain is being deleted. *
* * @return Indicates whether the Elasticsearch domain is being deleted. */ public Boolean getPendingDeletion() { return this.pendingDeletion; } /** ** Indicates whether the Elasticsearch domain is being deleted. *
* * @param pendingDeletion * Indicates whether the Elasticsearch domain is being deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public AutoTuneStatus withPendingDeletion(Boolean pendingDeletion) { setPendingDeletion(pendingDeletion); return this; } /** ** Indicates whether the Elasticsearch domain is being deleted. *
* * @return Indicates whether the Elasticsearch domain is being deleted. */ public Boolean isPendingDeletion() { return this.pendingDeletion; } /** * 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 (getCreationDate() != null) sb.append("CreationDate: ").append(getCreationDate()).append(","); if (getUpdateDate() != null) sb.append("UpdateDate: ").append(getUpdateDate()).append(","); if (getUpdateVersion() != null) sb.append("UpdateVersion: ").append(getUpdateVersion()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getErrorMessage() != null) sb.append("ErrorMessage: ").append(getErrorMessage()).append(","); if (getPendingDeletion() != null) sb.append("PendingDeletion: ").append(getPendingDeletion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AutoTuneStatus == false) return false; AutoTuneStatus other = (AutoTuneStatus) obj; if (other.getCreationDate() == null ^ this.getCreationDate() == null) return false; if (other.getCreationDate() != null && other.getCreationDate().equals(this.getCreationDate()) == false) return false; if (other.getUpdateDate() == null ^ this.getUpdateDate() == null) return false; if (other.getUpdateDate() != null && other.getUpdateDate().equals(this.getUpdateDate()) == false) return false; if (other.getUpdateVersion() == null ^ this.getUpdateVersion() == null) return false; if (other.getUpdateVersion() != null && other.getUpdateVersion().equals(this.getUpdateVersion()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getErrorMessage() == null ^ this.getErrorMessage() == null) return false; if (other.getErrorMessage() != null && other.getErrorMessage().equals(this.getErrorMessage()) == false) return false; if (other.getPendingDeletion() == null ^ this.getPendingDeletion() == null) return false; if (other.getPendingDeletion() != null && other.getPendingDeletion().equals(this.getPendingDeletion()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCreationDate() == null) ? 0 : getCreationDate().hashCode()); hashCode = prime * hashCode + ((getUpdateDate() == null) ? 0 : getUpdateDate().hashCode()); hashCode = prime * hashCode + ((getUpdateVersion() == null) ? 0 : getUpdateVersion().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getErrorMessage() == null) ? 0 : getErrorMessage().hashCode()); hashCode = prime * hashCode + ((getPendingDeletion() == null) ? 0 : getPendingDeletion().hashCode()); return hashCode; } @Override public AutoTuneStatus clone() { try { return (AutoTuneStatus) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.elasticsearch.model.transform.AutoTuneStatusMarshaller.getInstance().marshall(this, protocolMarshaller); } }