org.mongodb.awscdk.resources.mongodbatlas.ApiSearchDeploymentSpec Maven / Gradle / Ivy
Show all versions of awscdk-resources-mongodbatlas Show documentation
package org.mongodb.awscdk.resources.mongodbatlas;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.101.0 (build b95fe5d)", date = "2024-07-30T09:54:28.867Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.ApiSearchDeploymentSpec")
@software.amazon.jsii.Jsii.Proxy(ApiSearchDeploymentSpec.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface ApiSearchDeploymentSpec extends software.amazon.jsii.JsiiSerializable {
/**
* Hardware specification for the search node instance sizes.
*
* The MongoDB Atlas API describes the valid values. More details can also be found in the Search Node Documentation.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.lang.String getInstanceSize();
/**
* Number of search nodes in the cluster.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.lang.Number getNodeCount();
/**
* @return a {@link Builder} of {@link ApiSearchDeploymentSpec}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ApiSearchDeploymentSpec}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String instanceSize;
java.lang.Number nodeCount;
/**
* Sets the value of {@link ApiSearchDeploymentSpec#getInstanceSize}
* @param instanceSize Hardware specification for the search node instance sizes. This parameter is required.
* The MongoDB Atlas API describes the valid values. More details can also be found in the Search Node Documentation.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder instanceSize(java.lang.String instanceSize) {
this.instanceSize = instanceSize;
return this;
}
/**
* Sets the value of {@link ApiSearchDeploymentSpec#getNodeCount}
* @param nodeCount Number of search nodes in the cluster. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder nodeCount(java.lang.Number nodeCount) {
this.nodeCount = nodeCount;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ApiSearchDeploymentSpec}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public ApiSearchDeploymentSpec build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ApiSearchDeploymentSpec}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ApiSearchDeploymentSpec {
private final java.lang.String instanceSize;
private final java.lang.Number nodeCount;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.instanceSize = software.amazon.jsii.Kernel.get(this, "instanceSize", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.nodeCount = software.amazon.jsii.Kernel.get(this, "nodeCount", software.amazon.jsii.NativeType.forClass(java.lang.Number.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.instanceSize = java.util.Objects.requireNonNull(builder.instanceSize, "instanceSize is required");
this.nodeCount = java.util.Objects.requireNonNull(builder.nodeCount, "nodeCount is required");
}
@Override
public final java.lang.String getInstanceSize() {
return this.instanceSize;
}
@Override
public final java.lang.Number getNodeCount() {
return this.nodeCount;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("instanceSize", om.valueToTree(this.getInstanceSize()));
data.set("nodeCount", om.valueToTree(this.getNodeCount()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.ApiSearchDeploymentSpec"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ApiSearchDeploymentSpec.Jsii$Proxy that = (ApiSearchDeploymentSpec.Jsii$Proxy) o;
if (!instanceSize.equals(that.instanceSize)) return false;
return this.nodeCount.equals(that.nodeCount);
}
@Override
public final int hashCode() {
int result = this.instanceSize.hashCode();
result = 31 * result + (this.nodeCount.hashCode());
return result;
}
}
}