All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.elasticsearch.model.ElasticsearchDomainStatus Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Elasticsearch Service module holds the client classes that are used for communicating with Amazon Elasticsearch Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2010-2016 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;

/**
 * 

* The current status of an Elasticsearch domain. *

*/ public class ElasticsearchDomainStatus implements Serializable, Cloneable { /** *

* The unique identifier for the specified Elasticsearch domain. *

*/ private String domainId; /** *

* The name of an Elasticsearch domain. Domain names are unique across the * domains owned by an account within an AWS region. Domain names start with * a letter or number and can contain the following characters: a-z * (lowercase), 0-9, and - (hyphen). *

*/ private String domainName; /** *

* The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity * and Access Management for more information. *

*/ private String aRN; /** *

* The domain creation status. True if the creation of an * Elasticsearch domain is complete. False if domain creation * is still in progress. *

*/ private Boolean created; /** *

* The domain deletion status. True if a delete request has * been received for the domain but resource cleanup is still in progress. * False if the domain has not been deleted. Once domain * deletion is complete, the status of the domain is no longer returned. *

*/ private Boolean deleted; /** *

* The Elasticsearch domain endpoint that you use to submit index and search * requests. *

*/ private String endpoint; /** *

* The status of the Elasticsearch domain configuration. True * if Amazon Elasticsearch Service is processing configuration changes. * False if the configuration is active. *

*/ private Boolean processing; /** *

* The type and number of instances in the domain cluster. *

*/ private ElasticsearchClusterConfig elasticsearchClusterConfig; /** *

* The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information. *

*/ private EBSOptions eBSOptions; /** *

* IAM access policy as a JSON-formatted string. *

*/ private String accessPolicies; /** *

* Specifies the status of the SnapshotOptions *

*/ private SnapshotOptions snapshotOptions; /** *

* Specifies the status of the AdvancedOptions *

*/ private java.util.Map advancedOptions; /** *

* The unique identifier for the specified Elasticsearch domain. *

* * @param domainId * The unique identifier for the specified Elasticsearch domain. */ public void setDomainId(String domainId) { this.domainId = domainId; } /** *

* The unique identifier for the specified Elasticsearch domain. *

* * @return The unique identifier for the specified Elasticsearch domain. */ public String getDomainId() { return this.domainId; } /** *

* The unique identifier for the specified Elasticsearch domain. *

* * @param domainId * The unique identifier for the specified Elasticsearch domain. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withDomainId(String domainId) { setDomainId(domainId); return this; } /** *

* The name of an Elasticsearch domain. Domain names are unique across the * domains owned by an account within an AWS region. Domain names start with * a letter or number and can contain the following characters: a-z * (lowercase), 0-9, and - (hyphen). *

* * @param domainName * The name of an Elasticsearch domain. Domain names are unique * across the domains owned by an account within an AWS region. * Domain names start with a letter or number and can contain the * following characters: a-z (lowercase), 0-9, and - (hyphen). */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The name of an Elasticsearch domain. Domain names are unique across the * domains owned by an account within an AWS region. Domain names start with * a letter or number and can contain the following characters: a-z * (lowercase), 0-9, and - (hyphen). *

* * @return The name of an Elasticsearch domain. Domain names are unique * across the domains owned by an account within an AWS region. * Domain names start with a letter or number and can contain the * following characters: a-z (lowercase), 0-9, and - (hyphen). */ public String getDomainName() { return this.domainName; } /** *

* The name of an Elasticsearch domain. Domain names are unique across the * domains owned by an account within an AWS region. Domain names start with * a letter or number and can contain the following characters: a-z * (lowercase), 0-9, and - (hyphen). *

* * @param domainName * The name of an Elasticsearch domain. Domain names are unique * across the domains owned by an account within an AWS region. * Domain names start with a letter or number and can contain the * following characters: a-z (lowercase), 0-9, and - (hyphen). * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity * and Access Management for more information. *

* * @param aRN * The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS * Identity and Access Management for more information. */ public void setARN(String aRN) { this.aRN = aRN; } /** *

* The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity * and Access Management for more information. *

* * @return The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS * Identity and Access Management for more information. */ public String getARN() { return this.aRN; } /** *

* The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity * and Access Management for more information. *

* * @param aRN * The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS * Identity and Access Management for more information. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withARN(String aRN) { setARN(aRN); return this; } /** *

* The domain creation status. True if the creation of an * Elasticsearch domain is complete. False if domain creation * is still in progress. *

* * @param created * The domain creation status. True if the creation of * an Elasticsearch domain is complete. False if domain * creation is still in progress. */ public void setCreated(Boolean created) { this.created = created; } /** *

* The domain creation status. True if the creation of an * Elasticsearch domain is complete. False if domain creation * is still in progress. *

* * @return The domain creation status. True if the creation of * an Elasticsearch domain is complete. False if domain * creation is still in progress. */ public Boolean getCreated() { return this.created; } /** *

* The domain creation status. True if the creation of an * Elasticsearch domain is complete. False if domain creation * is still in progress. *

* * @param created * The domain creation status. True if the creation of * an Elasticsearch domain is complete. False if domain * creation is still in progress. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withCreated(Boolean created) { setCreated(created); return this; } /** *

* The domain creation status. True if the creation of an * Elasticsearch domain is complete. False if domain creation * is still in progress. *

* * @return The domain creation status. True if the creation of * an Elasticsearch domain is complete. False if domain * creation is still in progress. */ public Boolean isCreated() { return this.created; } /** *

* The domain deletion status. True if a delete request has * been received for the domain but resource cleanup is still in progress. * False if the domain has not been deleted. Once domain * deletion is complete, the status of the domain is no longer returned. *

* * @param deleted * The domain deletion status. True if a delete request * has been received for the domain but resource cleanup is still in * progress. False if the domain has not been deleted. * Once domain deletion is complete, the status of the domain is no * longer returned. */ public void setDeleted(Boolean deleted) { this.deleted = deleted; } /** *

* The domain deletion status. True if a delete request has * been received for the domain but resource cleanup is still in progress. * False if the domain has not been deleted. Once domain * deletion is complete, the status of the domain is no longer returned. *

* * @return The domain deletion status. True if a delete request * has been received for the domain but resource cleanup is still in * progress. False if the domain has not been deleted. * Once domain deletion is complete, the status of the domain is no * longer returned. */ public Boolean getDeleted() { return this.deleted; } /** *

* The domain deletion status. True if a delete request has * been received for the domain but resource cleanup is still in progress. * False if the domain has not been deleted. Once domain * deletion is complete, the status of the domain is no longer returned. *

* * @param deleted * The domain deletion status. True if a delete request * has been received for the domain but resource cleanup is still in * progress. False if the domain has not been deleted. * Once domain deletion is complete, the status of the domain is no * longer returned. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withDeleted(Boolean deleted) { setDeleted(deleted); return this; } /** *

* The domain deletion status. True if a delete request has * been received for the domain but resource cleanup is still in progress. * False if the domain has not been deleted. Once domain * deletion is complete, the status of the domain is no longer returned. *

* * @return The domain deletion status. True if a delete request * has been received for the domain but resource cleanup is still in * progress. False if the domain has not been deleted. * Once domain deletion is complete, the status of the domain is no * longer returned. */ public Boolean isDeleted() { return this.deleted; } /** *

* The Elasticsearch domain endpoint that you use to submit index and search * requests. *

* * @param endpoint * The Elasticsearch domain endpoint that you use to submit index and * search requests. */ public void setEndpoint(String endpoint) { this.endpoint = endpoint; } /** *

* The Elasticsearch domain endpoint that you use to submit index and search * requests. *

* * @return The Elasticsearch domain endpoint that you use to submit index * and search requests. */ public String getEndpoint() { return this.endpoint; } /** *

* The Elasticsearch domain endpoint that you use to submit index and search * requests. *

* * @param endpoint * The Elasticsearch domain endpoint that you use to submit index and * search requests. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withEndpoint(String endpoint) { setEndpoint(endpoint); return this; } /** *

* The status of the Elasticsearch domain configuration. True * if Amazon Elasticsearch Service is processing configuration changes. * False if the configuration is active. *

* * @param processing * The status of the Elasticsearch domain configuration. * True if Amazon Elasticsearch Service is processing * configuration changes. False if the configuration is * active. */ public void setProcessing(Boolean processing) { this.processing = processing; } /** *

* The status of the Elasticsearch domain configuration. True * if Amazon Elasticsearch Service is processing configuration changes. * False if the configuration is active. *

* * @return The status of the Elasticsearch domain configuration. * True if Amazon Elasticsearch Service is processing * configuration changes. False if the configuration is * active. */ public Boolean getProcessing() { return this.processing; } /** *

* The status of the Elasticsearch domain configuration. True * if Amazon Elasticsearch Service is processing configuration changes. * False if the configuration is active. *

* * @param processing * The status of the Elasticsearch domain configuration. * True if Amazon Elasticsearch Service is processing * configuration changes. False if the configuration is * active. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withProcessing(Boolean processing) { setProcessing(processing); return this; } /** *

* The status of the Elasticsearch domain configuration. True * if Amazon Elasticsearch Service is processing configuration changes. * False if the configuration is active. *

* * @return The status of the Elasticsearch domain configuration. * True if Amazon Elasticsearch Service is processing * configuration changes. False if the configuration is * active. */ public Boolean isProcessing() { return this.processing; } /** *

* The type and number of instances in the domain cluster. *

* * @param elasticsearchClusterConfig * The type and number of instances in the domain cluster. */ public void setElasticsearchClusterConfig( ElasticsearchClusterConfig elasticsearchClusterConfig) { this.elasticsearchClusterConfig = elasticsearchClusterConfig; } /** *

* The type and number of instances in the domain cluster. *

* * @return The type and number of instances in the domain cluster. */ public ElasticsearchClusterConfig getElasticsearchClusterConfig() { return this.elasticsearchClusterConfig; } /** *

* The type and number of instances in the domain cluster. *

* * @param elasticsearchClusterConfig * The type and number of instances in the domain cluster. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withElasticsearchClusterConfig( ElasticsearchClusterConfig elasticsearchClusterConfig) { setElasticsearchClusterConfig(elasticsearchClusterConfig); return this; } /** *

* The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information. *

* * @param eBSOptions * The EBSOptions for the specified domain. See Configuring EBS-based Storage for more * information. */ public void setEBSOptions(EBSOptions eBSOptions) { this.eBSOptions = eBSOptions; } /** *

* The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information. *

* * @return The EBSOptions for the specified domain. See Configuring EBS-based Storage for more * information. */ public EBSOptions getEBSOptions() { return this.eBSOptions; } /** *

* The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information. *

* * @param eBSOptions * The EBSOptions for the specified domain. See Configuring EBS-based Storage for more * information. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withEBSOptions(EBSOptions eBSOptions) { setEBSOptions(eBSOptions); return this; } /** *

* IAM access policy as a JSON-formatted string. *

* * @param accessPolicies * IAM access policy as a JSON-formatted string. */ public void setAccessPolicies(String accessPolicies) { this.accessPolicies = accessPolicies; } /** *

* IAM access policy as a JSON-formatted string. *

* * @return IAM access policy as a JSON-formatted string. */ public String getAccessPolicies() { return this.accessPolicies; } /** *

* IAM access policy as a JSON-formatted string. *

* * @param accessPolicies * IAM access policy as a JSON-formatted string. * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withAccessPolicies(String accessPolicies) { setAccessPolicies(accessPolicies); return this; } /** *

* Specifies the status of the SnapshotOptions *

* * @param snapshotOptions * Specifies the status of the SnapshotOptions */ public void setSnapshotOptions(SnapshotOptions snapshotOptions) { this.snapshotOptions = snapshotOptions; } /** *

* Specifies the status of the SnapshotOptions *

* * @return Specifies the status of the SnapshotOptions */ public SnapshotOptions getSnapshotOptions() { return this.snapshotOptions; } /** *

* Specifies the status of the SnapshotOptions *

* * @param snapshotOptions * Specifies the status of the SnapshotOptions * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withSnapshotOptions( SnapshotOptions snapshotOptions) { setSnapshotOptions(snapshotOptions); return this; } /** *

* Specifies the status of the AdvancedOptions *

* * @return Specifies the status of the AdvancedOptions */ public java.util.Map getAdvancedOptions() { return advancedOptions; } /** *

* Specifies the status of the AdvancedOptions *

* * @param advancedOptions * Specifies the status of the AdvancedOptions */ public void setAdvancedOptions(java.util.Map advancedOptions) { this.advancedOptions = advancedOptions; } /** *

* Specifies the status of the AdvancedOptions *

* * @param advancedOptions * Specifies the status of the AdvancedOptions * @return Returns a reference to this object so that method calls can be * chained together. */ public ElasticsearchDomainStatus withAdvancedOptions( java.util.Map advancedOptions) { setAdvancedOptions(advancedOptions); return this; } public ElasticsearchDomainStatus addAdvancedOptionsEntry(String key, String value) { if (null == this.advancedOptions) { this.advancedOptions = new java.util.HashMap(); } if (this.advancedOptions.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.advancedOptions.put(key, value); return this; } /** * Removes all the entries added into AdvancedOptions. <p> Returns a * reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus clearAdvancedOptionsEntries() { this.advancedOptions = null; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDomainId() != null) sb.append("DomainId: " + getDomainId() + ","); if (getDomainName() != null) sb.append("DomainName: " + getDomainName() + ","); if (getARN() != null) sb.append("ARN: " + getARN() + ","); if (getCreated() != null) sb.append("Created: " + getCreated() + ","); if (getDeleted() != null) sb.append("Deleted: " + getDeleted() + ","); if (getEndpoint() != null) sb.append("Endpoint: " + getEndpoint() + ","); if (getProcessing() != null) sb.append("Processing: " + getProcessing() + ","); if (getElasticsearchClusterConfig() != null) sb.append("ElasticsearchClusterConfig: " + getElasticsearchClusterConfig() + ","); if (getEBSOptions() != null) sb.append("EBSOptions: " + getEBSOptions() + ","); if (getAccessPolicies() != null) sb.append("AccessPolicies: " + getAccessPolicies() + ","); if (getSnapshotOptions() != null) sb.append("SnapshotOptions: " + getSnapshotOptions() + ","); if (getAdvancedOptions() != null) sb.append("AdvancedOptions: " + getAdvancedOptions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ElasticsearchDomainStatus == false) return false; ElasticsearchDomainStatus other = (ElasticsearchDomainStatus) obj; if (other.getDomainId() == null ^ this.getDomainId() == null) return false; if (other.getDomainId() != null && other.getDomainId().equals(this.getDomainId()) == false) return false; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getARN() == null ^ this.getARN() == null) return false; if (other.getARN() != null && other.getARN().equals(this.getARN()) == false) return false; if (other.getCreated() == null ^ this.getCreated() == null) return false; if (other.getCreated() != null && other.getCreated().equals(this.getCreated()) == false) return false; if (other.getDeleted() == null ^ this.getDeleted() == null) return false; if (other.getDeleted() != null && other.getDeleted().equals(this.getDeleted()) == false) return false; if (other.getEndpoint() == null ^ this.getEndpoint() == null) return false; if (other.getEndpoint() != null && other.getEndpoint().equals(this.getEndpoint()) == false) return false; if (other.getProcessing() == null ^ this.getProcessing() == null) return false; if (other.getProcessing() != null && other.getProcessing().equals(this.getProcessing()) == false) return false; if (other.getElasticsearchClusterConfig() == null ^ this.getElasticsearchClusterConfig() == null) return false; if (other.getElasticsearchClusterConfig() != null && other.getElasticsearchClusterConfig().equals( this.getElasticsearchClusterConfig()) == false) return false; if (other.getEBSOptions() == null ^ this.getEBSOptions() == null) return false; if (other.getEBSOptions() != null && other.getEBSOptions().equals(this.getEBSOptions()) == false) return false; if (other.getAccessPolicies() == null ^ this.getAccessPolicies() == null) return false; if (other.getAccessPolicies() != null && other.getAccessPolicies().equals(this.getAccessPolicies()) == false) return false; if (other.getSnapshotOptions() == null ^ this.getSnapshotOptions() == null) return false; if (other.getSnapshotOptions() != null && other.getSnapshotOptions().equals(this.getSnapshotOptions()) == false) return false; if (other.getAdvancedOptions() == null ^ this.getAdvancedOptions() == null) return false; if (other.getAdvancedOptions() != null && other.getAdvancedOptions().equals(this.getAdvancedOptions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDomainId() == null) ? 0 : getDomainId().hashCode()); hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getARN() == null) ? 0 : getARN().hashCode()); hashCode = prime * hashCode + ((getCreated() == null) ? 0 : getCreated().hashCode()); hashCode = prime * hashCode + ((getDeleted() == null) ? 0 : getDeleted().hashCode()); hashCode = prime * hashCode + ((getEndpoint() == null) ? 0 : getEndpoint().hashCode()); hashCode = prime * hashCode + ((getProcessing() == null) ? 0 : getProcessing().hashCode()); hashCode = prime * hashCode + ((getElasticsearchClusterConfig() == null) ? 0 : getElasticsearchClusterConfig().hashCode()); hashCode = prime * hashCode + ((getEBSOptions() == null) ? 0 : getEBSOptions().hashCode()); hashCode = prime * hashCode + ((getAccessPolicies() == null) ? 0 : getAccessPolicies() .hashCode()); hashCode = prime * hashCode + ((getSnapshotOptions() == null) ? 0 : getSnapshotOptions() .hashCode()); hashCode = prime * hashCode + ((getAdvancedOptions() == null) ? 0 : getAdvancedOptions() .hashCode()); return hashCode; } @Override public ElasticsearchDomainStatus clone() { try { return (ElasticsearchDomainStatus) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy