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

com.amazonaws.services.elasticsearch.model.UpdateElasticsearchDomainConfigRequest 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 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.elasticsearch.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* Container for the parameters to the UpdateElasticsearchDomain operation. Specifies the type and * number of instances in the domain cluster. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdateElasticsearchDomainConfigRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The name of the Elasticsearch domain that you are updating. *

*/ private String domainName; /** *

* The type and number of instances to instantiate for the domain cluster. *

*/ private ElasticsearchClusterConfig elasticsearchClusterConfig; /** *

* Specify the type and size of the EBS volume that you want to use. *

*/ private EBSOptions eBSOptions; /** *

* Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours. *

*/ private SnapshotOptions snapshotOptions; /** *

* Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains *

*/ private VPCOptions vPCOptions; /** *

* Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana. *

*/ private CognitoOptions cognitoOptions; /** *

* Modifies the advanced option to allow references to indices in an HTTP request body. Must be false * when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information. *

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

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

*/ private String accessPolicies; /** *

* Map of LogType and LogPublishingOption, each containing options to publish a given type * of Elasticsearch log. *

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

* Options to specify configuration that will be applied to the domain endpoint. *

*/ private DomainEndpointOptions domainEndpointOptions; /** *

* Specifies advanced security options. *

*/ private AdvancedSecurityOptionsInput advancedSecurityOptions; /** *

* Specifies the NodeToNodeEncryptionOptions. *

*/ private NodeToNodeEncryptionOptions nodeToNodeEncryptionOptions; /** *

* Specifies the Encryption At Rest Options. *

*/ private EncryptionAtRestOptions encryptionAtRestOptions; /** *

* Specifies Auto-Tune options. *

*/ private AutoTuneOptions autoTuneOptions; /** *

* This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return * the results of validation checks without actually applying the change. This flag, when set to True, specifies the * deployment mechanism through which the update shall be applied on the domain. This will not actually perform the * Update. *

*/ private Boolean dryRun; /** *

* The name of the Elasticsearch domain that you are updating. *

* * @param domainName * The name of the Elasticsearch domain that you are updating. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The name of the Elasticsearch domain that you are updating. *

* * @return The name of the Elasticsearch domain that you are updating. */ public String getDomainName() { return this.domainName; } /** *

* The name of the Elasticsearch domain that you are updating. *

* * @param domainName * The name of the Elasticsearch domain that you are updating. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* The type and number of instances to instantiate for the domain cluster. *

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

* The type and number of instances to instantiate for the domain cluster. *

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

* The type and number of instances to instantiate for the domain cluster. *

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

* Specify the type and size of the EBS volume that you want to use. *

* * @param eBSOptions * Specify the type and size of the EBS volume that you want to use. */ public void setEBSOptions(EBSOptions eBSOptions) { this.eBSOptions = eBSOptions; } /** *

* Specify the type and size of the EBS volume that you want to use. *

* * @return Specify the type and size of the EBS volume that you want to use. */ public EBSOptions getEBSOptions() { return this.eBSOptions; } /** *

* Specify the type and size of the EBS volume that you want to use. *

* * @param eBSOptions * Specify the type and size of the EBS volume that you want to use. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withEBSOptions(EBSOptions eBSOptions) { setEBSOptions(eBSOptions); return this; } /** *

* Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours. *

* * @param snapshotOptions * Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 * hours. */ public void setSnapshotOptions(SnapshotOptions snapshotOptions) { this.snapshotOptions = snapshotOptions; } /** *

* Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours. *

* * @return Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 * hours. */ public SnapshotOptions getSnapshotOptions() { return this.snapshotOptions; } /** *

* Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours. *

* * @param snapshotOptions * Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 * hours. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withSnapshotOptions(SnapshotOptions snapshotOptions) { setSnapshotOptions(snapshotOptions); return this; } /** *

* Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains *

* * @param vPCOptions * Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains */ public void setVPCOptions(VPCOptions vPCOptions) { this.vPCOptions = vPCOptions; } /** *

* Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains *

* * @return Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains */ public VPCOptions getVPCOptions() { return this.vPCOptions; } /** *

* Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains *

* * @param vPCOptions * Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withVPCOptions(VPCOptions vPCOptions) { setVPCOptions(vPCOptions); return this; } /** *

* Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana. *

* * @param cognitoOptions * Options to specify the Cognito user and identity pools for Kibana authentication. For more information, * see Amazon Cognito Authentication for Kibana. */ public void setCognitoOptions(CognitoOptions cognitoOptions) { this.cognitoOptions = cognitoOptions; } /** *

* Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana. *

* * @return Options to specify the Cognito user and identity pools for Kibana authentication. For more information, * see Amazon Cognito Authentication for Kibana. */ public CognitoOptions getCognitoOptions() { return this.cognitoOptions; } /** *

* Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana. *

* * @param cognitoOptions * Options to specify the Cognito user and identity pools for Kibana authentication. For more information, * see Amazon Cognito Authentication for Kibana. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withCognitoOptions(CognitoOptions cognitoOptions) { setCognitoOptions(cognitoOptions); return this; } /** *

* Modifies the advanced option to allow references to indices in an HTTP request body. Must be false * when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information. *

* * @return Modifies the advanced option to allow references to indices in an HTTP request body. Must be * false when configuring access to individual sub-resources. By default, the value is * true. See Configuration Advanced Options for more information. */ public java.util.Map getAdvancedOptions() { return advancedOptions; } /** *

* Modifies the advanced option to allow references to indices in an HTTP request body. Must be false * when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information. *

* * @param advancedOptions * Modifies the advanced option to allow references to indices in an HTTP request body. Must be * false when configuring access to individual sub-resources. By default, the value is * true. See Configuration Advanced Options for more information. */ public void setAdvancedOptions(java.util.Map advancedOptions) { this.advancedOptions = advancedOptions; } /** *

* Modifies the advanced option to allow references to indices in an HTTP request body. Must be false * when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information. *

* * @param advancedOptions * Modifies the advanced option to allow references to indices in an HTTP request body. Must be * false when configuring access to individual sub-resources. By default, the value is * true. See Configuration Advanced Options for more information. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withAdvancedOptions(java.util.Map advancedOptions) { setAdvancedOptions(advancedOptions); return this; } /** * Add a single AdvancedOptions entry * * @see UpdateElasticsearchDomainConfigRequest#withAdvancedOptions * @returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest 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. * * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest clearAdvancedOptionsEntries() { this.advancedOptions = null; 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 UpdateElasticsearchDomainConfigRequest withAccessPolicies(String accessPolicies) { setAccessPolicies(accessPolicies); return this; } /** *

* Map of LogType and LogPublishingOption, each containing options to publish a given type * of Elasticsearch log. *

* * @return Map of LogType and LogPublishingOption, each containing options to publish a * given type of Elasticsearch log. */ public java.util.Map getLogPublishingOptions() { return logPublishingOptions; } /** *

* Map of LogType and LogPublishingOption, each containing options to publish a given type * of Elasticsearch log. *

* * @param logPublishingOptions * Map of LogType and LogPublishingOption, each containing options to publish a * given type of Elasticsearch log. */ public void setLogPublishingOptions(java.util.Map logPublishingOptions) { this.logPublishingOptions = logPublishingOptions; } /** *

* Map of LogType and LogPublishingOption, each containing options to publish a given type * of Elasticsearch log. *

* * @param logPublishingOptions * Map of LogType and LogPublishingOption, each containing options to publish a * given type of Elasticsearch log. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withLogPublishingOptions(java.util.Map logPublishingOptions) { setLogPublishingOptions(logPublishingOptions); return this; } /** * Add a single LogPublishingOptions entry * * @see UpdateElasticsearchDomainConfigRequest#withLogPublishingOptions * @returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest addLogPublishingOptionsEntry(String key, LogPublishingOption value) { if (null == this.logPublishingOptions) { this.logPublishingOptions = new java.util.HashMap(); } if (this.logPublishingOptions.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.logPublishingOptions.put(key, value); return this; } /** * Removes all the entries added into LogPublishingOptions. * * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest clearLogPublishingOptionsEntries() { this.logPublishingOptions = null; return this; } /** *

* Options to specify configuration that will be applied to the domain endpoint. *

* * @param domainEndpointOptions * Options to specify configuration that will be applied to the domain endpoint. */ public void setDomainEndpointOptions(DomainEndpointOptions domainEndpointOptions) { this.domainEndpointOptions = domainEndpointOptions; } /** *

* Options to specify configuration that will be applied to the domain endpoint. *

* * @return Options to specify configuration that will be applied to the domain endpoint. */ public DomainEndpointOptions getDomainEndpointOptions() { return this.domainEndpointOptions; } /** *

* Options to specify configuration that will be applied to the domain endpoint. *

* * @param domainEndpointOptions * Options to specify configuration that will be applied to the domain endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withDomainEndpointOptions(DomainEndpointOptions domainEndpointOptions) { setDomainEndpointOptions(domainEndpointOptions); return this; } /** *

* Specifies advanced security options. *

* * @param advancedSecurityOptions * Specifies advanced security options. */ public void setAdvancedSecurityOptions(AdvancedSecurityOptionsInput advancedSecurityOptions) { this.advancedSecurityOptions = advancedSecurityOptions; } /** *

* Specifies advanced security options. *

* * @return Specifies advanced security options. */ public AdvancedSecurityOptionsInput getAdvancedSecurityOptions() { return this.advancedSecurityOptions; } /** *

* Specifies advanced security options. *

* * @param advancedSecurityOptions * Specifies advanced security options. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withAdvancedSecurityOptions(AdvancedSecurityOptionsInput advancedSecurityOptions) { setAdvancedSecurityOptions(advancedSecurityOptions); return this; } /** *

* Specifies the NodeToNodeEncryptionOptions. *

* * @param nodeToNodeEncryptionOptions * Specifies the NodeToNodeEncryptionOptions. */ public void setNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptions nodeToNodeEncryptionOptions) { this.nodeToNodeEncryptionOptions = nodeToNodeEncryptionOptions; } /** *

* Specifies the NodeToNodeEncryptionOptions. *

* * @return Specifies the NodeToNodeEncryptionOptions. */ public NodeToNodeEncryptionOptions getNodeToNodeEncryptionOptions() { return this.nodeToNodeEncryptionOptions; } /** *

* Specifies the NodeToNodeEncryptionOptions. *

* * @param nodeToNodeEncryptionOptions * Specifies the NodeToNodeEncryptionOptions. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptions nodeToNodeEncryptionOptions) { setNodeToNodeEncryptionOptions(nodeToNodeEncryptionOptions); return this; } /** *

* Specifies the Encryption At Rest Options. *

* * @param encryptionAtRestOptions * Specifies the Encryption At Rest Options. */ public void setEncryptionAtRestOptions(EncryptionAtRestOptions encryptionAtRestOptions) { this.encryptionAtRestOptions = encryptionAtRestOptions; } /** *

* Specifies the Encryption At Rest Options. *

* * @return Specifies the Encryption At Rest Options. */ public EncryptionAtRestOptions getEncryptionAtRestOptions() { return this.encryptionAtRestOptions; } /** *

* Specifies the Encryption At Rest Options. *

* * @param encryptionAtRestOptions * Specifies the Encryption At Rest Options. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withEncryptionAtRestOptions(EncryptionAtRestOptions encryptionAtRestOptions) { setEncryptionAtRestOptions(encryptionAtRestOptions); return this; } /** *

* Specifies Auto-Tune options. *

* * @param autoTuneOptions * Specifies Auto-Tune options. */ public void setAutoTuneOptions(AutoTuneOptions autoTuneOptions) { this.autoTuneOptions = autoTuneOptions; } /** *

* Specifies Auto-Tune options. *

* * @return Specifies Auto-Tune options. */ public AutoTuneOptions getAutoTuneOptions() { return this.autoTuneOptions; } /** *

* Specifies Auto-Tune options. *

* * @param autoTuneOptions * Specifies Auto-Tune options. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withAutoTuneOptions(AutoTuneOptions autoTuneOptions) { setAutoTuneOptions(autoTuneOptions); return this; } /** *

* This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return * the results of validation checks without actually applying the change. This flag, when set to True, specifies the * deployment mechanism through which the update shall be applied on the domain. This will not actually perform the * Update. *

* * @param dryRun * This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should * return the results of validation checks without actually applying the change. This flag, when set to True, * specifies the deployment mechanism through which the update shall be applied on the domain. This will not * actually perform the Update. */ public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; } /** *

* This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return * the results of validation checks without actually applying the change. This flag, when set to True, specifies the * deployment mechanism through which the update shall be applied on the domain. This will not actually perform the * Update. *

* * @return This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should * return the results of validation checks without actually applying the change. This flag, when set to * True, specifies the deployment mechanism through which the update shall be applied on the domain. This * will not actually perform the Update. */ public Boolean getDryRun() { return this.dryRun; } /** *

* This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return * the results of validation checks without actually applying the change. This flag, when set to True, specifies the * deployment mechanism through which the update shall be applied on the domain. This will not actually perform the * Update. *

* * @param dryRun * This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should * return the results of validation checks without actually applying the change. This flag, when set to True, * specifies the deployment mechanism through which the update shall be applied on the domain. This will not * actually perform the Update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateElasticsearchDomainConfigRequest withDryRun(Boolean dryRun) { setDryRun(dryRun); return this; } /** *

* This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return * the results of validation checks without actually applying the change. This flag, when set to True, specifies the * deployment mechanism through which the update shall be applied on the domain. This will not actually perform the * Update. *

* * @return This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should * return the results of validation checks without actually applying the change. This flag, when set to * True, specifies the deployment mechanism through which the update shall be applied on the domain. This * will not actually perform the Update. */ public Boolean isDryRun() { return this.dryRun; } /** * 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 (getDomainName() != null) sb.append("DomainName: ").append(getDomainName()).append(","); if (getElasticsearchClusterConfig() != null) sb.append("ElasticsearchClusterConfig: ").append(getElasticsearchClusterConfig()).append(","); if (getEBSOptions() != null) sb.append("EBSOptions: ").append(getEBSOptions()).append(","); if (getSnapshotOptions() != null) sb.append("SnapshotOptions: ").append(getSnapshotOptions()).append(","); if (getVPCOptions() != null) sb.append("VPCOptions: ").append(getVPCOptions()).append(","); if (getCognitoOptions() != null) sb.append("CognitoOptions: ").append(getCognitoOptions()).append(","); if (getAdvancedOptions() != null) sb.append("AdvancedOptions: ").append(getAdvancedOptions()).append(","); if (getAccessPolicies() != null) sb.append("AccessPolicies: ").append(getAccessPolicies()).append(","); if (getLogPublishingOptions() != null) sb.append("LogPublishingOptions: ").append(getLogPublishingOptions()).append(","); if (getDomainEndpointOptions() != null) sb.append("DomainEndpointOptions: ").append(getDomainEndpointOptions()).append(","); if (getAdvancedSecurityOptions() != null) sb.append("AdvancedSecurityOptions: ").append(getAdvancedSecurityOptions()).append(","); if (getNodeToNodeEncryptionOptions() != null) sb.append("NodeToNodeEncryptionOptions: ").append(getNodeToNodeEncryptionOptions()).append(","); if (getEncryptionAtRestOptions() != null) sb.append("EncryptionAtRestOptions: ").append(getEncryptionAtRestOptions()).append(","); if (getAutoTuneOptions() != null) sb.append("AutoTuneOptions: ").append(getAutoTuneOptions()).append(","); if (getDryRun() != null) sb.append("DryRun: ").append(getDryRun()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateElasticsearchDomainConfigRequest == false) return false; UpdateElasticsearchDomainConfigRequest other = (UpdateElasticsearchDomainConfigRequest) obj; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == 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.getSnapshotOptions() == null ^ this.getSnapshotOptions() == null) return false; if (other.getSnapshotOptions() != null && other.getSnapshotOptions().equals(this.getSnapshotOptions()) == false) return false; if (other.getVPCOptions() == null ^ this.getVPCOptions() == null) return false; if (other.getVPCOptions() != null && other.getVPCOptions().equals(this.getVPCOptions()) == false) return false; if (other.getCognitoOptions() == null ^ this.getCognitoOptions() == null) return false; if (other.getCognitoOptions() != null && other.getCognitoOptions().equals(this.getCognitoOptions()) == false) return false; if (other.getAdvancedOptions() == null ^ this.getAdvancedOptions() == null) return false; if (other.getAdvancedOptions() != null && other.getAdvancedOptions().equals(this.getAdvancedOptions()) == 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.getLogPublishingOptions() == null ^ this.getLogPublishingOptions() == null) return false; if (other.getLogPublishingOptions() != null && other.getLogPublishingOptions().equals(this.getLogPublishingOptions()) == false) return false; if (other.getDomainEndpointOptions() == null ^ this.getDomainEndpointOptions() == null) return false; if (other.getDomainEndpointOptions() != null && other.getDomainEndpointOptions().equals(this.getDomainEndpointOptions()) == false) return false; if (other.getAdvancedSecurityOptions() == null ^ this.getAdvancedSecurityOptions() == null) return false; if (other.getAdvancedSecurityOptions() != null && other.getAdvancedSecurityOptions().equals(this.getAdvancedSecurityOptions()) == false) return false; if (other.getNodeToNodeEncryptionOptions() == null ^ this.getNodeToNodeEncryptionOptions() == null) return false; if (other.getNodeToNodeEncryptionOptions() != null && other.getNodeToNodeEncryptionOptions().equals(this.getNodeToNodeEncryptionOptions()) == false) return false; if (other.getEncryptionAtRestOptions() == null ^ this.getEncryptionAtRestOptions() == null) return false; if (other.getEncryptionAtRestOptions() != null && other.getEncryptionAtRestOptions().equals(this.getEncryptionAtRestOptions()) == false) return false; if (other.getAutoTuneOptions() == null ^ this.getAutoTuneOptions() == null) return false; if (other.getAutoTuneOptions() != null && other.getAutoTuneOptions().equals(this.getAutoTuneOptions()) == false) return false; if (other.getDryRun() == null ^ this.getDryRun() == null) return false; if (other.getDryRun() != null && other.getDryRun().equals(this.getDryRun()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getElasticsearchClusterConfig() == null) ? 0 : getElasticsearchClusterConfig().hashCode()); hashCode = prime * hashCode + ((getEBSOptions() == null) ? 0 : getEBSOptions().hashCode()); hashCode = prime * hashCode + ((getSnapshotOptions() == null) ? 0 : getSnapshotOptions().hashCode()); hashCode = prime * hashCode + ((getVPCOptions() == null) ? 0 : getVPCOptions().hashCode()); hashCode = prime * hashCode + ((getCognitoOptions() == null) ? 0 : getCognitoOptions().hashCode()); hashCode = prime * hashCode + ((getAdvancedOptions() == null) ? 0 : getAdvancedOptions().hashCode()); hashCode = prime * hashCode + ((getAccessPolicies() == null) ? 0 : getAccessPolicies().hashCode()); hashCode = prime * hashCode + ((getLogPublishingOptions() == null) ? 0 : getLogPublishingOptions().hashCode()); hashCode = prime * hashCode + ((getDomainEndpointOptions() == null) ? 0 : getDomainEndpointOptions().hashCode()); hashCode = prime * hashCode + ((getAdvancedSecurityOptions() == null) ? 0 : getAdvancedSecurityOptions().hashCode()); hashCode = prime * hashCode + ((getNodeToNodeEncryptionOptions() == null) ? 0 : getNodeToNodeEncryptionOptions().hashCode()); hashCode = prime * hashCode + ((getEncryptionAtRestOptions() == null) ? 0 : getEncryptionAtRestOptions().hashCode()); hashCode = prime * hashCode + ((getAutoTuneOptions() == null) ? 0 : getAutoTuneOptions().hashCode()); hashCode = prime * hashCode + ((getDryRun() == null) ? 0 : getDryRun().hashCode()); return hashCode; } @Override public UpdateElasticsearchDomainConfigRequest clone() { return (UpdateElasticsearchDomainConfigRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy