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

The 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.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The current status of an Elasticsearch domain. *

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

* 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; /** *

* Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. *

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

* 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 status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is * undergoing a version upgrade. False if the configuration is active. *

*/ private Boolean upgradeProcessing; private String elasticsearchVersion; /** *

* 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; /** *

* The VPCOptions for the specified domain. For more information, see VPC * Endpoints for Amazon Elasticsearch Service Domains. *

*/ private VPCDerivedInfo vPCOptions; /** *

* The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. *

*/ private CognitoOptions cognitoOptions; /** *

* Specifies the status of the EncryptionAtRestOptions. *

*/ private EncryptionAtRestOptions encryptionAtRestOptions; /** *

* Specifies the status of the NodeToNodeEncryptionOptions. *

*/ private NodeToNodeEncryptionOptions nodeToNodeEncryptionOptions; /** *

* Specifies the status of the AdvancedOptions *

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

* Log publishing options for the given domain. *

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

* The current status of the Elasticsearch domain's service software. *

*/ private ServiceSoftwareOptions serviceSoftwareOptions; /** *

* The current status of the Elasticsearch domain's endpoint options. *

*/ private DomainEndpointOptions domainEndpointOptions; /** *

* The current status of the Elasticsearch domain's advanced security options. *

*/ private AdvancedSecurityOptions advancedSecurityOptions; /** *

* The current status of the Elasticsearch domain's Auto-Tune options. *

*/ private AutoTuneOptionsOutput autoTuneOptions; /** *

* Specifies change details of the domain configuration change. *

*/ private ChangeProgressDetails changeProgressDetails; /** *

* The status of any changes that are currently in progress for the domain. *

*/ private String domainProcessingStatus; /** *

* Information about the domain properties that are currently being modified. *

*/ private java.util.List modifyingProperties; /** *

* 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; } /** *

* Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. *

* * @return Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. */ public java.util.Map getEndpoints() { return endpoints; } /** *

* Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. *

* * @param endpoints * Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. */ public void setEndpoints(java.util.Map endpoints) { this.endpoints = endpoints; } /** *

* Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. *

* * @param endpoints * Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example * key, value: * 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withEndpoints(java.util.Map endpoints) { setEndpoints(endpoints); return this; } /** * Add a single Endpoints entry * * @see ElasticsearchDomainStatus#withEndpoints * @returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus addEndpointsEntry(String key, String value) { if (null == this.endpoints) { this.endpoints = new java.util.HashMap(); } if (this.endpoints.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.endpoints.put(key, value); return this; } /** * Removes all the entries added into Endpoints. * * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus clearEndpointsEntries() { this.endpoints = null; 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 status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is * undergoing a version upgrade. False if the configuration is active. *

* * @param upgradeProcessing * The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service * is undergoing a version upgrade. False if the configuration is active. */ public void setUpgradeProcessing(Boolean upgradeProcessing) { this.upgradeProcessing = upgradeProcessing; } /** *

* The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is * undergoing a version upgrade. False if the configuration is active. *

* * @return The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service * is undergoing a version upgrade. False if the configuration is active. */ public Boolean getUpgradeProcessing() { return this.upgradeProcessing; } /** *

* The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is * undergoing a version upgrade. False if the configuration is active. *

* * @param upgradeProcessing * The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service * is undergoing a version upgrade. False if the configuration is active. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withUpgradeProcessing(Boolean upgradeProcessing) { setUpgradeProcessing(upgradeProcessing); return this; } /** *

* The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is * undergoing a version upgrade. False if the configuration is active. *

* * @return The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service * is undergoing a version upgrade. False if the configuration is active. */ public Boolean isUpgradeProcessing() { return this.upgradeProcessing; } /** * @param elasticsearchVersion */ public void setElasticsearchVersion(String elasticsearchVersion) { this.elasticsearchVersion = elasticsearchVersion; } /** * @return */ public String getElasticsearchVersion() { return this.elasticsearchVersion; } /** * @param elasticsearchVersion * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withElasticsearchVersion(String elasticsearchVersion) { setElasticsearchVersion(elasticsearchVersion); return this; } /** *

* 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; } /** *

* The VPCOptions for the specified domain. For more information, see VPC * Endpoints for Amazon Elasticsearch Service Domains. *

* * @param vPCOptions * The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains. */ public void setVPCOptions(VPCDerivedInfo vPCOptions) { this.vPCOptions = vPCOptions; } /** *

* The VPCOptions for the specified domain. For more information, see VPC * Endpoints for Amazon Elasticsearch Service Domains. *

* * @return The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains. */ public VPCDerivedInfo getVPCOptions() { return this.vPCOptions; } /** *

* The VPCOptions for the specified domain. For more information, see VPC * Endpoints for Amazon Elasticsearch Service Domains. *

* * @param vPCOptions * The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withVPCOptions(VPCDerivedInfo vPCOptions) { setVPCOptions(vPCOptions); return this; } /** *

* The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. *

* * @param cognitoOptions * The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. */ public void setCognitoOptions(CognitoOptions cognitoOptions) { this.cognitoOptions = cognitoOptions; } /** *

* The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. *

* * @return The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. */ public CognitoOptions getCognitoOptions() { return this.cognitoOptions; } /** *

* The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana. *

* * @param cognitoOptions * The CognitoOptions for the specified domain. 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 ElasticsearchDomainStatus withCognitoOptions(CognitoOptions cognitoOptions) { setCognitoOptions(cognitoOptions); return this; } /** *

* Specifies the status of the EncryptionAtRestOptions. *

* * @param encryptionAtRestOptions * Specifies the status of the EncryptionAtRestOptions. */ public void setEncryptionAtRestOptions(EncryptionAtRestOptions encryptionAtRestOptions) { this.encryptionAtRestOptions = encryptionAtRestOptions; } /** *

* Specifies the status of the EncryptionAtRestOptions. *

* * @return Specifies the status of the EncryptionAtRestOptions. */ public EncryptionAtRestOptions getEncryptionAtRestOptions() { return this.encryptionAtRestOptions; } /** *

* Specifies the status of the EncryptionAtRestOptions. *

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

* Specifies the status of the NodeToNodeEncryptionOptions. *

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

* Specifies the status of the NodeToNodeEncryptionOptions. *

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

* Specifies the status of the NodeToNodeEncryptionOptions. *

* * @param nodeToNodeEncryptionOptions * Specifies the status of the NodeToNodeEncryptionOptions. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptions nodeToNodeEncryptionOptions) { setNodeToNodeEncryptionOptions(nodeToNodeEncryptionOptions); 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; } /** * Add a single AdvancedOptions entry * * @see ElasticsearchDomainStatus#withAdvancedOptions * @returns a reference to this object so that method calls can be chained together. */ 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. * * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus clearAdvancedOptionsEntries() { this.advancedOptions = null; return this; } /** *

* Log publishing options for the given domain. *

* * @return Log publishing options for the given domain. */ public java.util.Map getLogPublishingOptions() { return logPublishingOptions; } /** *

* Log publishing options for the given domain. *

* * @param logPublishingOptions * Log publishing options for the given domain. */ public void setLogPublishingOptions(java.util.Map logPublishingOptions) { this.logPublishingOptions = logPublishingOptions; } /** *

* Log publishing options for the given domain. *

* * @param logPublishingOptions * Log publishing options for the given domain. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withLogPublishingOptions(java.util.Map logPublishingOptions) { setLogPublishingOptions(logPublishingOptions); return this; } /** * Add a single LogPublishingOptions entry * * @see ElasticsearchDomainStatus#withLogPublishingOptions * @returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus 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 ElasticsearchDomainStatus clearLogPublishingOptionsEntries() { this.logPublishingOptions = null; return this; } /** *

* The current status of the Elasticsearch domain's service software. *

* * @param serviceSoftwareOptions * The current status of the Elasticsearch domain's service software. */ public void setServiceSoftwareOptions(ServiceSoftwareOptions serviceSoftwareOptions) { this.serviceSoftwareOptions = serviceSoftwareOptions; } /** *

* The current status of the Elasticsearch domain's service software. *

* * @return The current status of the Elasticsearch domain's service software. */ public ServiceSoftwareOptions getServiceSoftwareOptions() { return this.serviceSoftwareOptions; } /** *

* The current status of the Elasticsearch domain's service software. *

* * @param serviceSoftwareOptions * The current status of the Elasticsearch domain's service software. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withServiceSoftwareOptions(ServiceSoftwareOptions serviceSoftwareOptions) { setServiceSoftwareOptions(serviceSoftwareOptions); return this; } /** *

* The current status of the Elasticsearch domain's endpoint options. *

* * @param domainEndpointOptions * The current status of the Elasticsearch domain's endpoint options. */ public void setDomainEndpointOptions(DomainEndpointOptions domainEndpointOptions) { this.domainEndpointOptions = domainEndpointOptions; } /** *

* The current status of the Elasticsearch domain's endpoint options. *

* * @return The current status of the Elasticsearch domain's endpoint options. */ public DomainEndpointOptions getDomainEndpointOptions() { return this.domainEndpointOptions; } /** *

* The current status of the Elasticsearch domain's endpoint options. *

* * @param domainEndpointOptions * The current status of the Elasticsearch domain's endpoint options. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withDomainEndpointOptions(DomainEndpointOptions domainEndpointOptions) { setDomainEndpointOptions(domainEndpointOptions); return this; } /** *

* The current status of the Elasticsearch domain's advanced security options. *

* * @param advancedSecurityOptions * The current status of the Elasticsearch domain's advanced security options. */ public void setAdvancedSecurityOptions(AdvancedSecurityOptions advancedSecurityOptions) { this.advancedSecurityOptions = advancedSecurityOptions; } /** *

* The current status of the Elasticsearch domain's advanced security options. *

* * @return The current status of the Elasticsearch domain's advanced security options. */ public AdvancedSecurityOptions getAdvancedSecurityOptions() { return this.advancedSecurityOptions; } /** *

* The current status of the Elasticsearch domain's advanced security options. *

* * @param advancedSecurityOptions * The current status of the Elasticsearch domain's advanced security options. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withAdvancedSecurityOptions(AdvancedSecurityOptions advancedSecurityOptions) { setAdvancedSecurityOptions(advancedSecurityOptions); return this; } /** *

* The current status of the Elasticsearch domain's Auto-Tune options. *

* * @param autoTuneOptions * The current status of the Elasticsearch domain's Auto-Tune options. */ public void setAutoTuneOptions(AutoTuneOptionsOutput autoTuneOptions) { this.autoTuneOptions = autoTuneOptions; } /** *

* The current status of the Elasticsearch domain's Auto-Tune options. *

* * @return The current status of the Elasticsearch domain's Auto-Tune options. */ public AutoTuneOptionsOutput getAutoTuneOptions() { return this.autoTuneOptions; } /** *

* The current status of the Elasticsearch domain's Auto-Tune options. *

* * @param autoTuneOptions * The current status of the Elasticsearch domain's Auto-Tune options. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withAutoTuneOptions(AutoTuneOptionsOutput autoTuneOptions) { setAutoTuneOptions(autoTuneOptions); return this; } /** *

* Specifies change details of the domain configuration change. *

* * @param changeProgressDetails * Specifies change details of the domain configuration change. */ public void setChangeProgressDetails(ChangeProgressDetails changeProgressDetails) { this.changeProgressDetails = changeProgressDetails; } /** *

* Specifies change details of the domain configuration change. *

* * @return Specifies change details of the domain configuration change. */ public ChangeProgressDetails getChangeProgressDetails() { return this.changeProgressDetails; } /** *

* Specifies change details of the domain configuration change. *

* * @param changeProgressDetails * Specifies change details of the domain configuration change. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withChangeProgressDetails(ChangeProgressDetails changeProgressDetails) { setChangeProgressDetails(changeProgressDetails); return this; } /** *

* The status of any changes that are currently in progress for the domain. *

* * @param domainProcessingStatus * The status of any changes that are currently in progress for the domain. * @see DomainProcessingStatusType */ public void setDomainProcessingStatus(String domainProcessingStatus) { this.domainProcessingStatus = domainProcessingStatus; } /** *

* The status of any changes that are currently in progress for the domain. *

* * @return The status of any changes that are currently in progress for the domain. * @see DomainProcessingStatusType */ public String getDomainProcessingStatus() { return this.domainProcessingStatus; } /** *

* The status of any changes that are currently in progress for the domain. *

* * @param domainProcessingStatus * The status of any changes that are currently in progress for the domain. * @return Returns a reference to this object so that method calls can be chained together. * @see DomainProcessingStatusType */ public ElasticsearchDomainStatus withDomainProcessingStatus(String domainProcessingStatus) { setDomainProcessingStatus(domainProcessingStatus); return this; } /** *

* The status of any changes that are currently in progress for the domain. *

* * @param domainProcessingStatus * The status of any changes that are currently in progress for the domain. * @return Returns a reference to this object so that method calls can be chained together. * @see DomainProcessingStatusType */ public ElasticsearchDomainStatus withDomainProcessingStatus(DomainProcessingStatusType domainProcessingStatus) { this.domainProcessingStatus = domainProcessingStatus.toString(); return this; } /** *

* Information about the domain properties that are currently being modified. *

* * @return Information about the domain properties that are currently being modified. */ public java.util.List getModifyingProperties() { return modifyingProperties; } /** *

* Information about the domain properties that are currently being modified. *

* * @param modifyingProperties * Information about the domain properties that are currently being modified. */ public void setModifyingProperties(java.util.Collection modifyingProperties) { if (modifyingProperties == null) { this.modifyingProperties = null; return; } this.modifyingProperties = new java.util.ArrayList(modifyingProperties); } /** *

* Information about the domain properties that are currently being modified. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setModifyingProperties(java.util.Collection)} or {@link #withModifyingProperties(java.util.Collection)} * if you want to override the existing values. *

* * @param modifyingProperties * Information about the domain properties that are currently being modified. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withModifyingProperties(ModifyingProperties... modifyingProperties) { if (this.modifyingProperties == null) { setModifyingProperties(new java.util.ArrayList(modifyingProperties.length)); } for (ModifyingProperties ele : modifyingProperties) { this.modifyingProperties.add(ele); } return this; } /** *

* Information about the domain properties that are currently being modified. *

* * @param modifyingProperties * Information about the domain properties that are currently being modified. * @return Returns a reference to this object so that method calls can be chained together. */ public ElasticsearchDomainStatus withModifyingProperties(java.util.Collection modifyingProperties) { setModifyingProperties(modifyingProperties); 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 (getDomainId() != null) sb.append("DomainId: ").append(getDomainId()).append(","); if (getDomainName() != null) sb.append("DomainName: ").append(getDomainName()).append(","); if (getARN() != null) sb.append("ARN: ").append(getARN()).append(","); if (getCreated() != null) sb.append("Created: ").append(getCreated()).append(","); if (getDeleted() != null) sb.append("Deleted: ").append(getDeleted()).append(","); if (getEndpoint() != null) sb.append("Endpoint: ").append(getEndpoint()).append(","); if (getEndpoints() != null) sb.append("Endpoints: ").append(getEndpoints()).append(","); if (getProcessing() != null) sb.append("Processing: ").append(getProcessing()).append(","); if (getUpgradeProcessing() != null) sb.append("UpgradeProcessing: ").append(getUpgradeProcessing()).append(","); if (getElasticsearchVersion() != null) sb.append("ElasticsearchVersion: ").append(getElasticsearchVersion()).append(","); if (getElasticsearchClusterConfig() != null) sb.append("ElasticsearchClusterConfig: ").append(getElasticsearchClusterConfig()).append(","); if (getEBSOptions() != null) sb.append("EBSOptions: ").append(getEBSOptions()).append(","); if (getAccessPolicies() != null) sb.append("AccessPolicies: ").append(getAccessPolicies()).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 (getEncryptionAtRestOptions() != null) sb.append("EncryptionAtRestOptions: ").append(getEncryptionAtRestOptions()).append(","); if (getNodeToNodeEncryptionOptions() != null) sb.append("NodeToNodeEncryptionOptions: ").append(getNodeToNodeEncryptionOptions()).append(","); if (getAdvancedOptions() != null) sb.append("AdvancedOptions: ").append(getAdvancedOptions()).append(","); if (getLogPublishingOptions() != null) sb.append("LogPublishingOptions: ").append(getLogPublishingOptions()).append(","); if (getServiceSoftwareOptions() != null) sb.append("ServiceSoftwareOptions: ").append(getServiceSoftwareOptions()).append(","); if (getDomainEndpointOptions() != null) sb.append("DomainEndpointOptions: ").append(getDomainEndpointOptions()).append(","); if (getAdvancedSecurityOptions() != null) sb.append("AdvancedSecurityOptions: ").append(getAdvancedSecurityOptions()).append(","); if (getAutoTuneOptions() != null) sb.append("AutoTuneOptions: ").append(getAutoTuneOptions()).append(","); if (getChangeProgressDetails() != null) sb.append("ChangeProgressDetails: ").append(getChangeProgressDetails()).append(","); if (getDomainProcessingStatus() != null) sb.append("DomainProcessingStatus: ").append(getDomainProcessingStatus()).append(","); if (getModifyingProperties() != null) sb.append("ModifyingProperties: ").append(getModifyingProperties()); 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.getEndpoints() == null ^ this.getEndpoints() == null) return false; if (other.getEndpoints() != null && other.getEndpoints().equals(this.getEndpoints()) == 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.getUpgradeProcessing() == null ^ this.getUpgradeProcessing() == null) return false; if (other.getUpgradeProcessing() != null && other.getUpgradeProcessing().equals(this.getUpgradeProcessing()) == false) return false; if (other.getElasticsearchVersion() == null ^ this.getElasticsearchVersion() == null) return false; if (other.getElasticsearchVersion() != null && other.getElasticsearchVersion().equals(this.getElasticsearchVersion()) == 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.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.getEncryptionAtRestOptions() == null ^ this.getEncryptionAtRestOptions() == null) return false; if (other.getEncryptionAtRestOptions() != null && other.getEncryptionAtRestOptions().equals(this.getEncryptionAtRestOptions()) == 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.getAdvancedOptions() == null ^ this.getAdvancedOptions() == null) return false; if (other.getAdvancedOptions() != null && other.getAdvancedOptions().equals(this.getAdvancedOptions()) == 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.getServiceSoftwareOptions() == null ^ this.getServiceSoftwareOptions() == null) return false; if (other.getServiceSoftwareOptions() != null && other.getServiceSoftwareOptions().equals(this.getServiceSoftwareOptions()) == 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.getAutoTuneOptions() == null ^ this.getAutoTuneOptions() == null) return false; if (other.getAutoTuneOptions() != null && other.getAutoTuneOptions().equals(this.getAutoTuneOptions()) == false) return false; if (other.getChangeProgressDetails() == null ^ this.getChangeProgressDetails() == null) return false; if (other.getChangeProgressDetails() != null && other.getChangeProgressDetails().equals(this.getChangeProgressDetails()) == false) return false; if (other.getDomainProcessingStatus() == null ^ this.getDomainProcessingStatus() == null) return false; if (other.getDomainProcessingStatus() != null && other.getDomainProcessingStatus().equals(this.getDomainProcessingStatus()) == false) return false; if (other.getModifyingProperties() == null ^ this.getModifyingProperties() == null) return false; if (other.getModifyingProperties() != null && other.getModifyingProperties().equals(this.getModifyingProperties()) == 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 + ((getEndpoints() == null) ? 0 : getEndpoints().hashCode()); hashCode = prime * hashCode + ((getProcessing() == null) ? 0 : getProcessing().hashCode()); hashCode = prime * hashCode + ((getUpgradeProcessing() == null) ? 0 : getUpgradeProcessing().hashCode()); hashCode = prime * hashCode + ((getElasticsearchVersion() == null) ? 0 : getElasticsearchVersion().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 + ((getVPCOptions() == null) ? 0 : getVPCOptions().hashCode()); hashCode = prime * hashCode + ((getCognitoOptions() == null) ? 0 : getCognitoOptions().hashCode()); hashCode = prime * hashCode + ((getEncryptionAtRestOptions() == null) ? 0 : getEncryptionAtRestOptions().hashCode()); hashCode = prime * hashCode + ((getNodeToNodeEncryptionOptions() == null) ? 0 : getNodeToNodeEncryptionOptions().hashCode()); hashCode = prime * hashCode + ((getAdvancedOptions() == null) ? 0 : getAdvancedOptions().hashCode()); hashCode = prime * hashCode + ((getLogPublishingOptions() == null) ? 0 : getLogPublishingOptions().hashCode()); hashCode = prime * hashCode + ((getServiceSoftwareOptions() == null) ? 0 : getServiceSoftwareOptions().hashCode()); hashCode = prime * hashCode + ((getDomainEndpointOptions() == null) ? 0 : getDomainEndpointOptions().hashCode()); hashCode = prime * hashCode + ((getAdvancedSecurityOptions() == null) ? 0 : getAdvancedSecurityOptions().hashCode()); hashCode = prime * hashCode + ((getAutoTuneOptions() == null) ? 0 : getAutoTuneOptions().hashCode()); hashCode = prime * hashCode + ((getChangeProgressDetails() == null) ? 0 : getChangeProgressDetails().hashCode()); hashCode = prime * hashCode + ((getDomainProcessingStatus() == null) ? 0 : getDomainProcessingStatus().hashCode()); hashCode = prime * hashCode + ((getModifyingProperties() == null) ? 0 : getModifyingProperties().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); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.elasticsearch.model.transform.ElasticsearchDomainStatusMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy