com.aliyun.ros.cdk.alb.RosBackendServerAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ros-cdk-alb Show documentation
Show all versions of ros-cdk-alb Show documentation
Aliyun SDK Copyright (C) Alibaba Cloud Computing All rights reserved. http://www.aliyun.com
The newest version!
package com.aliyun.ros.cdk.alb;
/**
* This class is a base encapsulation around the ROS resource type ALIYUN::ALB::BackendServerAttachment
, which is used to add backend servers to a server group.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2024-12-13T06:45:03.955Z")
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.alb.$Module.class, fqn = "@alicloud/ros-cdk-alb.RosBackendServerAttachment")
public class RosBackendServerAttachment extends com.aliyun.ros.cdk.core.RosResource {
protected RosBackendServerAttachment(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected RosBackendServerAttachment(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
static {
ROS_RESOURCE_TYPE_NAME = software.amazon.jsii.JsiiObject.jsiiStaticGet(com.aliyun.ros.cdk.alb.RosBackendServerAttachment.class, "ROS_RESOURCE_TYPE_NAME", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* @param scope - scope in which this resource is defined.
This parameter is required.
* @param id - scoped id of the resource.
This parameter is required.
* @param props - resource properties.
This parameter is required.
* @param enableResourcePropertyConstraint This parameter is required.
*/
public RosBackendServerAttachment(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id, final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.alb.RosBackendServerAttachmentProps props, final @org.jetbrains.annotations.NotNull java.lang.Boolean enableResourcePropertyConstraint) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required"), java.util.Objects.requireNonNull(props, "props is required"), java.util.Objects.requireNonNull(enableResourcePropertyConstraint, "enableResourcePropertyConstraint is required") });
}
@Override
protected @org.jetbrains.annotations.NotNull java.util.Map renderProperties(final @org.jetbrains.annotations.NotNull java.util.Map props) {
return java.util.Collections.unmodifiableMap(software.amazon.jsii.Kernel.call(this, "renderProperties", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(java.lang.Object.class)), new Object[] { java.util.Objects.requireNonNull(props, "props is required") }));
}
/**
* The resource type name for this resource class.
*/
public final static java.lang.String ROS_RESOURCE_TYPE_NAME;
/**
*/
public @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.IResolvable getAttrServerGroupId() {
return software.amazon.jsii.Kernel.get(this, "attrServerGroupId", software.amazon.jsii.NativeType.forClass(com.aliyun.ros.cdk.core.IResolvable.class));
}
@Override
protected @org.jetbrains.annotations.NotNull java.util.Map getRosProperties() {
return java.util.Collections.unmodifiableMap(software.amazon.jsii.Kernel.get(this, "rosProperties", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(java.lang.Object.class))));
}
public @org.jetbrains.annotations.NotNull java.lang.Boolean getEnableResourcePropertyConstraint() {
return software.amazon.jsii.Kernel.get(this, "enableResourcePropertyConstraint", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
}
public void setEnableResourcePropertyConstraint(final @org.jetbrains.annotations.NotNull java.lang.Boolean value) {
software.amazon.jsii.Kernel.set(this, "enableResourcePropertyConstraint", java.util.Objects.requireNonNull(value, "enableResourcePropertyConstraint is required"));
}
/**
*/
public @org.jetbrains.annotations.NotNull java.lang.Object getServerGroupId() {
return software.amazon.jsii.Kernel.get(this, "serverGroupId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
}
/**
*/
public void setServerGroupId(final @org.jetbrains.annotations.NotNull java.lang.String value) {
software.amazon.jsii.Kernel.set(this, "serverGroupId", java.util.Objects.requireNonNull(value, "serverGroupId is required"));
}
/**
*/
public void setServerGroupId(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.IResolvable value) {
software.amazon.jsii.Kernel.set(this, "serverGroupId", java.util.Objects.requireNonNull(value, "serverGroupId is required"));
}
/**
*/
public @org.jetbrains.annotations.NotNull java.lang.Object getServers() {
return software.amazon.jsii.Kernel.get(this, "servers", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
}
/**
*/
public void setServers(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.IResolvable value) {
software.amazon.jsii.Kernel.set(this, "servers", java.util.Objects.requireNonNull(value, "servers is required"));
}
/**
*/
public void setServers(final @org.jetbrains.annotations.NotNull java.util.List value) {
if (software.amazon.jsii.Configuration.getRuntimeTypeChecking()) {
for (int __idx_ac66f0 = 0; __idx_ac66f0 < value.size(); __idx_ac66f0++) {
final java.lang.Object __val_ac66f0 = value.get(__idx_ac66f0);
if (
!(__val_ac66f0 instanceof com.aliyun.ros.cdk.core.IResolvable)
&& !(__val_ac66f0 instanceof com.aliyun.ros.cdk.alb.RosBackendServerAttachment.ServersProperty)
&& !(__val_ac66f0.getClass().equals(software.amazon.jsii.JsiiObject.class))
) {
throw new IllegalArgumentException(
new java.lang.StringBuilder("Expected ")
.append("value").append(".get(").append(__idx_ac66f0).append(")")
.append(" to be one of: com.aliyun.ros.cdk.core.IResolvable, com.aliyun.ros.cdk.alb.RosBackendServerAttachment.ServersProperty; received ")
.append(__val_ac66f0.getClass()).toString());
}
}
}
software.amazon.jsii.Kernel.set(this, "servers", java.util.Objects.requireNonNull(value, "servers is required"));
}
/**
*/
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.alb.$Module.class, fqn = "@alicloud/ros-cdk-alb.RosBackendServerAttachment.ServersProperty")
@software.amazon.jsii.Jsii.Proxy(ServersProperty.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static interface ServersProperty extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.lang.Object getServerId();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.lang.Object getServerType();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Object getDescription() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Object getPort() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Object getRemoteIpEnabled() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Object getServerIp() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Object getWeight() {
return null;
}
/**
* @return a {@link Builder} of {@link ServersProperty}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ServersProperty}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.Object serverId;
java.lang.Object serverType;
java.lang.Object description;
java.lang.Object port;
java.lang.Object remoteIpEnabled;
java.lang.Object serverIp;
java.lang.Object weight;
/**
* Sets the value of {@link ServersProperty#getServerId}
* @param serverId the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverId(java.lang.String serverId) {
this.serverId = serverId;
return this;
}
/**
* Sets the value of {@link ServersProperty#getServerId}
* @param serverId the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverId(com.aliyun.ros.cdk.core.IResolvable serverId) {
this.serverId = serverId;
return this;
}
/**
* Sets the value of {@link ServersProperty#getServerType}
* @param serverType the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverType(java.lang.String serverType) {
this.serverType = serverType;
return this;
}
/**
* Sets the value of {@link ServersProperty#getServerType}
* @param serverType the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverType(com.aliyun.ros.cdk.core.IResolvable serverType) {
this.serverType = serverType;
return this;
}
/**
* Sets the value of {@link ServersProperty#getDescription}
* @param description the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder description(java.lang.String description) {
this.description = description;
return this;
}
/**
* Sets the value of {@link ServersProperty#getDescription}
* @param description the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder description(com.aliyun.ros.cdk.core.IResolvable description) {
this.description = description;
return this;
}
/**
* Sets the value of {@link ServersProperty#getPort}
* @param port the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder port(java.lang.Number port) {
this.port = port;
return this;
}
/**
* Sets the value of {@link ServersProperty#getPort}
* @param port the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder port(com.aliyun.ros.cdk.core.IResolvable port) {
this.port = port;
return this;
}
/**
* Sets the value of {@link ServersProperty#getRemoteIpEnabled}
* @param remoteIpEnabled the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder remoteIpEnabled(java.lang.Boolean remoteIpEnabled) {
this.remoteIpEnabled = remoteIpEnabled;
return this;
}
/**
* Sets the value of {@link ServersProperty#getRemoteIpEnabled}
* @param remoteIpEnabled the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder remoteIpEnabled(com.aliyun.ros.cdk.core.IResolvable remoteIpEnabled) {
this.remoteIpEnabled = remoteIpEnabled;
return this;
}
/**
* Sets the value of {@link ServersProperty#getServerIp}
* @param serverIp the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverIp(java.lang.String serverIp) {
this.serverIp = serverIp;
return this;
}
/**
* Sets the value of {@link ServersProperty#getServerIp}
* @param serverIp the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder serverIp(com.aliyun.ros.cdk.core.IResolvable serverIp) {
this.serverIp = serverIp;
return this;
}
/**
* Sets the value of {@link ServersProperty#getWeight}
* @param weight the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder weight(java.lang.Number weight) {
this.weight = weight;
return this;
}
/**
* Sets the value of {@link ServersProperty#getWeight}
* @param weight the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder weight(com.aliyun.ros.cdk.core.IResolvable weight) {
this.weight = weight;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ServersProperty}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public ServersProperty build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ServersProperty}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ServersProperty {
private final java.lang.Object serverId;
private final java.lang.Object serverType;
private final java.lang.Object description;
private final java.lang.Object port;
private final java.lang.Object remoteIpEnabled;
private final java.lang.Object serverIp;
private final java.lang.Object weight;
/**
* 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.serverId = software.amazon.jsii.Kernel.get(this, "serverId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.serverType = software.amazon.jsii.Kernel.get(this, "serverType", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.port = software.amazon.jsii.Kernel.get(this, "port", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.remoteIpEnabled = software.amazon.jsii.Kernel.get(this, "remoteIpEnabled", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.serverIp = software.amazon.jsii.Kernel.get(this, "serverIp", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.weight = software.amazon.jsii.Kernel.get(this, "weight", software.amazon.jsii.NativeType.forClass(java.lang.Object.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.serverId = java.util.Objects.requireNonNull(builder.serverId, "serverId is required");
this.serverType = java.util.Objects.requireNonNull(builder.serverType, "serverType is required");
this.description = builder.description;
this.port = builder.port;
this.remoteIpEnabled = builder.remoteIpEnabled;
this.serverIp = builder.serverIp;
this.weight = builder.weight;
}
@Override
public final java.lang.Object getServerId() {
return this.serverId;
}
@Override
public final java.lang.Object getServerType() {
return this.serverType;
}
@Override
public final java.lang.Object getDescription() {
return this.description;
}
@Override
public final java.lang.Object getPort() {
return this.port;
}
@Override
public final java.lang.Object getRemoteIpEnabled() {
return this.remoteIpEnabled;
}
@Override
public final java.lang.Object getServerIp() {
return this.serverIp;
}
@Override
public final java.lang.Object getWeight() {
return this.weight;
}
@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("serverId", om.valueToTree(this.getServerId()));
data.set("serverType", om.valueToTree(this.getServerType()));
if (this.getDescription() != null) {
data.set("description", om.valueToTree(this.getDescription()));
}
if (this.getPort() != null) {
data.set("port", om.valueToTree(this.getPort()));
}
if (this.getRemoteIpEnabled() != null) {
data.set("remoteIpEnabled", om.valueToTree(this.getRemoteIpEnabled()));
}
if (this.getServerIp() != null) {
data.set("serverIp", om.valueToTree(this.getServerIp()));
}
if (this.getWeight() != null) {
data.set("weight", om.valueToTree(this.getWeight()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@alicloud/ros-cdk-alb.RosBackendServerAttachment.ServersProperty"));
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;
ServersProperty.Jsii$Proxy that = (ServersProperty.Jsii$Proxy) o;
if (!serverId.equals(that.serverId)) return false;
if (!serverType.equals(that.serverType)) return false;
if (this.description != null ? !this.description.equals(that.description) : that.description != null) return false;
if (this.port != null ? !this.port.equals(that.port) : that.port != null) return false;
if (this.remoteIpEnabled != null ? !this.remoteIpEnabled.equals(that.remoteIpEnabled) : that.remoteIpEnabled != null) return false;
if (this.serverIp != null ? !this.serverIp.equals(that.serverIp) : that.serverIp != null) return false;
return this.weight != null ? this.weight.equals(that.weight) : that.weight == null;
}
@Override
public final int hashCode() {
int result = this.serverId.hashCode();
result = 31 * result + (this.serverType.hashCode());
result = 31 * result + (this.description != null ? this.description.hashCode() : 0);
result = 31 * result + (this.port != null ? this.port.hashCode() : 0);
result = 31 * result + (this.remoteIpEnabled != null ? this.remoteIpEnabled.hashCode() : 0);
result = 31 * result + (this.serverIp != null ? this.serverIp.hashCode() : 0);
result = 31 * result + (this.weight != null ? this.weight.hashCode() : 0);
return result;
}
}
}
/**
* A fluent builder for {@link com.aliyun.ros.cdk.alb.RosBackendServerAttachment}.
*/
public static final class Builder implements software.amazon.jsii.Builder {
/**
* @return a new instance of {@link Builder}.
* @param scope - scope in which this resource is defined.
This parameter is required.
* @param id - scoped id of the resource.
This parameter is required.
* @param enableResourcePropertyConstraint This parameter is required.
*/
public static Builder create(final com.aliyun.ros.cdk.core.Construct scope, final java.lang.String id, final java.lang.Boolean enableResourcePropertyConstraint) {
return new Builder(scope, id, enableResourcePropertyConstraint);
}
private final com.aliyun.ros.cdk.core.Construct scope;
private final java.lang.String id;
private final java.lang.Boolean enableResourcePropertyConstraint;
private final com.aliyun.ros.cdk.alb.RosBackendServerAttachmentProps.Builder props;
private Builder(final com.aliyun.ros.cdk.core.Construct scope, final java.lang.String id, final java.lang.Boolean enableResourcePropertyConstraint) {
this.scope = scope;
this.id = id;
this.enableResourcePropertyConstraint = enableResourcePropertyConstraint;
this.props = new com.aliyun.ros.cdk.alb.RosBackendServerAttachmentProps.Builder();
}
/**
* @return {@code this}
* @param serverGroupId This parameter is required.
*/
public Builder serverGroupId(final java.lang.String serverGroupId) {
this.props.serverGroupId(serverGroupId);
return this;
}
/**
* @return {@code this}
* @param serverGroupId This parameter is required.
*/
public Builder serverGroupId(final com.aliyun.ros.cdk.core.IResolvable serverGroupId) {
this.props.serverGroupId(serverGroupId);
return this;
}
/**
* @return {@code this}
* @param servers This parameter is required.
*/
public Builder servers(final com.aliyun.ros.cdk.core.IResolvable servers) {
this.props.servers(servers);
return this;
}
/**
* @return {@code this}
* @param servers This parameter is required.
*/
public Builder servers(final java.util.List extends java.lang.Object> servers) {
this.props.servers(servers);
return this;
}
/**
* @return a newly built instance of {@link com.aliyun.ros.cdk.alb.RosBackendServerAttachment}.
*/
@Override
public com.aliyun.ros.cdk.alb.RosBackendServerAttachment build() {
return new com.aliyun.ros.cdk.alb.RosBackendServerAttachment(
this.scope,
this.id,
this.props.build(),
this.enableResourcePropertyConstraint
);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy