com.aliyun.ros.cdk.slb.RuleProps Maven / Gradle / Ivy
package com.aliyun.ros.cdk.slb;
/**
* Properties for defining a Rule
.
*
* See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-slb-rule
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2024-09-29T07:52:42.650Z")
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.slb.$Module.class, fqn = "@alicloud/ros-cdk-slb.RuleProps")
@software.amazon.jsii.Jsii.Proxy(RuleProps.Jsii$Proxy.class)
public interface RuleProps extends software.amazon.jsii.JsiiSerializable {
/**
* Property listenerPort: The front-end HTTPS listener port of the Server Load Balancer instance.
*
* Valid value:
* 1-65535
*/
@org.jetbrains.annotations.NotNull java.lang.Object getListenerPort();
/**
* Property loadBalancerId: The ID of Server Load Balancer instance.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getLoadBalancerId();
/**
* Property ruleList: The forwarding rules to add.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getRuleList();
/**
* Property listenerProtocol: The frontend protocol that is used by the SLB instance.
*/
default @org.jetbrains.annotations.Nullable java.lang.Object getListenerProtocol() {
return null;
}
/**
* @return a {@link Builder} of {@link RuleProps}
*/
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link RuleProps}
*/
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.Object listenerPort;
java.lang.Object loadBalancerId;
java.lang.Object ruleList;
java.lang.Object listenerProtocol;
/**
* Sets the value of {@link RuleProps#getListenerPort}
* @param listenerPort Property listenerPort: The front-end HTTPS listener port of the Server Load Balancer instance. This parameter is required.
* Valid value:
* 1-65535
* @return {@code this}
*/
public Builder listenerPort(java.lang.Number listenerPort) {
this.listenerPort = listenerPort;
return this;
}
/**
* Sets the value of {@link RuleProps#getListenerPort}
* @param listenerPort Property listenerPort: The front-end HTTPS listener port of the Server Load Balancer instance. This parameter is required.
* Valid value:
* 1-65535
* @return {@code this}
*/
public Builder listenerPort(com.aliyun.ros.cdk.core.IResolvable listenerPort) {
this.listenerPort = listenerPort;
return this;
}
/**
* Sets the value of {@link RuleProps#getLoadBalancerId}
* @param loadBalancerId Property loadBalancerId: The ID of Server Load Balancer instance. This parameter is required.
* @return {@code this}
*/
public Builder loadBalancerId(java.lang.String loadBalancerId) {
this.loadBalancerId = loadBalancerId;
return this;
}
/**
* Sets the value of {@link RuleProps#getLoadBalancerId}
* @param loadBalancerId Property loadBalancerId: The ID of Server Load Balancer instance. This parameter is required.
* @return {@code this}
*/
public Builder loadBalancerId(com.aliyun.ros.cdk.core.IResolvable loadBalancerId) {
this.loadBalancerId = loadBalancerId;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleList}
* @param ruleList Property ruleList: The forwarding rules to add. This parameter is required.
* @return {@code this}
*/
public Builder ruleList(com.aliyun.ros.cdk.core.IResolvable ruleList) {
this.ruleList = ruleList;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleList}
* @param ruleList Property ruleList: The forwarding rules to add. This parameter is required.
* @return {@code this}
*/
public Builder ruleList(java.util.List extends java.lang.Object> ruleList) {
this.ruleList = ruleList;
return this;
}
/**
* Sets the value of {@link RuleProps#getListenerProtocol}
* @param listenerProtocol Property listenerProtocol: The frontend protocol that is used by the SLB instance.
* @return {@code this}
*/
public Builder listenerProtocol(java.lang.String listenerProtocol) {
this.listenerProtocol = listenerProtocol;
return this;
}
/**
* Sets the value of {@link RuleProps#getListenerProtocol}
* @param listenerProtocol Property listenerProtocol: The frontend protocol that is used by the SLB instance.
* @return {@code this}
*/
public Builder listenerProtocol(com.aliyun.ros.cdk.core.IResolvable listenerProtocol) {
this.listenerProtocol = listenerProtocol;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link RuleProps}
* @throws NullPointerException if any required attribute was not provided
*/
@Override
public RuleProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link RuleProps}
*/
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RuleProps {
private final java.lang.Object listenerPort;
private final java.lang.Object loadBalancerId;
private final java.lang.Object ruleList;
private final java.lang.Object listenerProtocol;
/**
* 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.listenerPort = software.amazon.jsii.Kernel.get(this, "listenerPort", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.loadBalancerId = software.amazon.jsii.Kernel.get(this, "loadBalancerId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.ruleList = software.amazon.jsii.Kernel.get(this, "ruleList", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.listenerProtocol = software.amazon.jsii.Kernel.get(this, "listenerProtocol", 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.listenerPort = java.util.Objects.requireNonNull(builder.listenerPort, "listenerPort is required");
this.loadBalancerId = java.util.Objects.requireNonNull(builder.loadBalancerId, "loadBalancerId is required");
this.ruleList = java.util.Objects.requireNonNull(builder.ruleList, "ruleList is required");
this.listenerProtocol = builder.listenerProtocol;
}
@Override
public final java.lang.Object getListenerPort() {
return this.listenerPort;
}
@Override
public final java.lang.Object getLoadBalancerId() {
return this.loadBalancerId;
}
@Override
public final java.lang.Object getRuleList() {
return this.ruleList;
}
@Override
public final java.lang.Object getListenerProtocol() {
return this.listenerProtocol;
}
@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("listenerPort", om.valueToTree(this.getListenerPort()));
data.set("loadBalancerId", om.valueToTree(this.getLoadBalancerId()));
data.set("ruleList", om.valueToTree(this.getRuleList()));
if (this.getListenerProtocol() != null) {
data.set("listenerProtocol", om.valueToTree(this.getListenerProtocol()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@alicloud/ros-cdk-slb.RuleProps"));
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;
RuleProps.Jsii$Proxy that = (RuleProps.Jsii$Proxy) o;
if (!listenerPort.equals(that.listenerPort)) return false;
if (!loadBalancerId.equals(that.loadBalancerId)) return false;
if (!ruleList.equals(that.ruleList)) return false;
return this.listenerProtocol != null ? this.listenerProtocol.equals(that.listenerProtocol) : that.listenerProtocol == null;
}
@Override
public final int hashCode() {
int result = this.listenerPort.hashCode();
result = 31 * result + (this.loadBalancerId.hashCode());
result = 31 * result + (this.ruleList.hashCode());
result = 31 * result + (this.listenerProtocol != null ? this.listenerProtocol.hashCode() : 0);
return result;
}
}
}