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

com.aliyun.ros.cdk.alb.RosLoadBalancerProps Maven / Gradle / Ivy

Go to download

Aliyun SDK Copyright (C) Alibaba Cloud Computing All rights reserved. http://www.aliyun.com

There is a newer version: 1.2.0
Show newest version
package com.aliyun.ros.cdk.alb;

/**
 * Properties for defining a RosLoadBalancer.
 * 

* See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-alb-loadbalancer */ @javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2024-08-22T08:56:17.555Z") @software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.alb.$Module.class, fqn = "@alicloud/ros-cdk-alb.RosLoadBalancerProps") @software.amazon.jsii.Jsii.Proxy(RosLoadBalancerProps.Jsii$Proxy.class) public interface RosLoadBalancerProps extends software.amazon.jsii.JsiiSerializable { /** */ @org.jetbrains.annotations.NotNull java.lang.Object getAddressType(); /** */ @org.jetbrains.annotations.NotNull java.lang.Object getLoadBalancerBillingConfig(); /** */ @org.jetbrains.annotations.NotNull java.lang.Object getLoadBalancerEdition(); /** */ @org.jetbrains.annotations.NotNull java.lang.Object getLoadBalancerName(); /** */ @org.jetbrains.annotations.NotNull java.lang.Object getVpcId(); /** */ @org.jetbrains.annotations.NotNull java.lang.Object getZoneMappings(); /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getAccessLogConfig() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getAddressAllocatedMode() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getAddressIpVersion() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getBandwidthPackageId() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getDeletionProtectionEnabled() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getModificationProtectionConfig() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getResourceGroupId() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.lang.Object getSecurityGroupIds() { return null; } /** */ default @org.jetbrains.annotations.Nullable java.util.List getTags() { return null; } /** * @return a {@link Builder} of {@link RosLoadBalancerProps} */ static Builder builder() { return new Builder(); } /** * A builder for {@link RosLoadBalancerProps} */ public static final class Builder implements software.amazon.jsii.Builder { java.lang.Object addressType; java.lang.Object loadBalancerBillingConfig; java.lang.Object loadBalancerEdition; java.lang.Object loadBalancerName; java.lang.Object vpcId; java.lang.Object zoneMappings; java.lang.Object accessLogConfig; java.lang.Object addressAllocatedMode; java.lang.Object addressIpVersion; java.lang.Object bandwidthPackageId; java.lang.Object deletionProtectionEnabled; java.lang.Object modificationProtectionConfig; java.lang.Object resourceGroupId; java.lang.Object securityGroupIds; java.util.List tags; /** * Sets the value of {@link RosLoadBalancerProps#getAddressType} * @param addressType the value to be set. This parameter is required. * @return {@code this} */ public Builder addressType(java.lang.String addressType) { this.addressType = addressType; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAddressType} * @param addressType the value to be set. This parameter is required. * @return {@code this} */ public Builder addressType(com.aliyun.ros.cdk.core.IResolvable addressType) { this.addressType = addressType; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerBillingConfig} * @param loadBalancerBillingConfig the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerBillingConfig(com.aliyun.ros.cdk.core.IResolvable loadBalancerBillingConfig) { this.loadBalancerBillingConfig = loadBalancerBillingConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerBillingConfig} * @param loadBalancerBillingConfig the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerBillingConfig(com.aliyun.ros.cdk.alb.RosLoadBalancer.LoadBalancerBillingConfigProperty loadBalancerBillingConfig) { this.loadBalancerBillingConfig = loadBalancerBillingConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerEdition} * @param loadBalancerEdition the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerEdition(java.lang.String loadBalancerEdition) { this.loadBalancerEdition = loadBalancerEdition; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerEdition} * @param loadBalancerEdition the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerEdition(com.aliyun.ros.cdk.core.IResolvable loadBalancerEdition) { this.loadBalancerEdition = loadBalancerEdition; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerName} * @param loadBalancerName the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerName(java.lang.String loadBalancerName) { this.loadBalancerName = loadBalancerName; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getLoadBalancerName} * @param loadBalancerName the value to be set. This parameter is required. * @return {@code this} */ public Builder loadBalancerName(com.aliyun.ros.cdk.core.IResolvable loadBalancerName) { this.loadBalancerName = loadBalancerName; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getVpcId} * @param vpcId the value to be set. This parameter is required. * @return {@code this} */ public Builder vpcId(java.lang.String vpcId) { this.vpcId = vpcId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getVpcId} * @param vpcId the value to be set. This parameter is required. * @return {@code this} */ public Builder vpcId(com.aliyun.ros.cdk.core.IResolvable vpcId) { this.vpcId = vpcId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getZoneMappings} * @param zoneMappings the value to be set. This parameter is required. * @return {@code this} */ public Builder zoneMappings(com.aliyun.ros.cdk.core.IResolvable zoneMappings) { this.zoneMappings = zoneMappings; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getZoneMappings} * @param zoneMappings the value to be set. This parameter is required. * @return {@code this} */ public Builder zoneMappings(java.util.List zoneMappings) { this.zoneMappings = zoneMappings; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAccessLogConfig} * @param accessLogConfig the value to be set. * @return {@code this} */ public Builder accessLogConfig(com.aliyun.ros.cdk.core.IResolvable accessLogConfig) { this.accessLogConfig = accessLogConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAccessLogConfig} * @param accessLogConfig the value to be set. * @return {@code this} */ public Builder accessLogConfig(com.aliyun.ros.cdk.alb.RosLoadBalancer.AccessLogConfigProperty accessLogConfig) { this.accessLogConfig = accessLogConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAddressAllocatedMode} * @param addressAllocatedMode the value to be set. * @return {@code this} */ public Builder addressAllocatedMode(java.lang.String addressAllocatedMode) { this.addressAllocatedMode = addressAllocatedMode; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAddressAllocatedMode} * @param addressAllocatedMode the value to be set. * @return {@code this} */ public Builder addressAllocatedMode(com.aliyun.ros.cdk.core.IResolvable addressAllocatedMode) { this.addressAllocatedMode = addressAllocatedMode; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAddressIpVersion} * @param addressIpVersion the value to be set. * @return {@code this} */ public Builder addressIpVersion(java.lang.String addressIpVersion) { this.addressIpVersion = addressIpVersion; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getAddressIpVersion} * @param addressIpVersion the value to be set. * @return {@code this} */ public Builder addressIpVersion(com.aliyun.ros.cdk.core.IResolvable addressIpVersion) { this.addressIpVersion = addressIpVersion; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getBandwidthPackageId} * @param bandwidthPackageId the value to be set. * @return {@code this} */ public Builder bandwidthPackageId(java.lang.String bandwidthPackageId) { this.bandwidthPackageId = bandwidthPackageId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getBandwidthPackageId} * @param bandwidthPackageId the value to be set. * @return {@code this} */ public Builder bandwidthPackageId(com.aliyun.ros.cdk.core.IResolvable bandwidthPackageId) { this.bandwidthPackageId = bandwidthPackageId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getDeletionProtectionEnabled} * @param deletionProtectionEnabled the value to be set. * @return {@code this} */ public Builder deletionProtectionEnabled(java.lang.Boolean deletionProtectionEnabled) { this.deletionProtectionEnabled = deletionProtectionEnabled; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getDeletionProtectionEnabled} * @param deletionProtectionEnabled the value to be set. * @return {@code this} */ public Builder deletionProtectionEnabled(com.aliyun.ros.cdk.core.IResolvable deletionProtectionEnabled) { this.deletionProtectionEnabled = deletionProtectionEnabled; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getModificationProtectionConfig} * @param modificationProtectionConfig the value to be set. * @return {@code this} */ public Builder modificationProtectionConfig(com.aliyun.ros.cdk.core.IResolvable modificationProtectionConfig) { this.modificationProtectionConfig = modificationProtectionConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getModificationProtectionConfig} * @param modificationProtectionConfig the value to be set. * @return {@code this} */ public Builder modificationProtectionConfig(com.aliyun.ros.cdk.alb.RosLoadBalancer.ModificationProtectionConfigProperty modificationProtectionConfig) { this.modificationProtectionConfig = modificationProtectionConfig; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getResourceGroupId} * @param resourceGroupId the value to be set. * @return {@code this} */ public Builder resourceGroupId(java.lang.String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getResourceGroupId} * @param resourceGroupId the value to be set. * @return {@code this} */ public Builder resourceGroupId(com.aliyun.ros.cdk.core.IResolvable resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getSecurityGroupIds} * @param securityGroupIds the value to be set. * @return {@code this} */ public Builder securityGroupIds(com.aliyun.ros.cdk.core.IResolvable securityGroupIds) { this.securityGroupIds = securityGroupIds; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getSecurityGroupIds} * @param securityGroupIds the value to be set. * @return {@code this} */ public Builder securityGroupIds(java.util.List securityGroupIds) { this.securityGroupIds = securityGroupIds; return this; } /** * Sets the value of {@link RosLoadBalancerProps#getTags} * @param tags the value to be set. * @return {@code this} */ @SuppressWarnings("unchecked") public Builder tags(java.util.List tags) { this.tags = (java.util.List)tags; return this; } /** * Builds the configured instance. * @return a new instance of {@link RosLoadBalancerProps} * @throws NullPointerException if any required attribute was not provided */ @Override public RosLoadBalancerProps build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link RosLoadBalancerProps} */ @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RosLoadBalancerProps { private final java.lang.Object addressType; private final java.lang.Object loadBalancerBillingConfig; private final java.lang.Object loadBalancerEdition; private final java.lang.Object loadBalancerName; private final java.lang.Object vpcId; private final java.lang.Object zoneMappings; private final java.lang.Object accessLogConfig; private final java.lang.Object addressAllocatedMode; private final java.lang.Object addressIpVersion; private final java.lang.Object bandwidthPackageId; private final java.lang.Object deletionProtectionEnabled; private final java.lang.Object modificationProtectionConfig; private final java.lang.Object resourceGroupId; private final java.lang.Object securityGroupIds; private final java.util.List tags; /** * 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.addressType = software.amazon.jsii.Kernel.get(this, "addressType", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.loadBalancerBillingConfig = software.amazon.jsii.Kernel.get(this, "loadBalancerBillingConfig", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.loadBalancerEdition = software.amazon.jsii.Kernel.get(this, "loadBalancerEdition", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.loadBalancerName = software.amazon.jsii.Kernel.get(this, "loadBalancerName", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.vpcId = software.amazon.jsii.Kernel.get(this, "vpcId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.zoneMappings = software.amazon.jsii.Kernel.get(this, "zoneMappings", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.accessLogConfig = software.amazon.jsii.Kernel.get(this, "accessLogConfig", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.addressAllocatedMode = software.amazon.jsii.Kernel.get(this, "addressAllocatedMode", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.addressIpVersion = software.amazon.jsii.Kernel.get(this, "addressIpVersion", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.bandwidthPackageId = software.amazon.jsii.Kernel.get(this, "bandwidthPackageId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.deletionProtectionEnabled = software.amazon.jsii.Kernel.get(this, "deletionProtectionEnabled", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.modificationProtectionConfig = software.amazon.jsii.Kernel.get(this, "modificationProtectionConfig", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.resourceGroupId = software.amazon.jsii.Kernel.get(this, "resourceGroupId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.securityGroupIds = software.amazon.jsii.Kernel.get(this, "securityGroupIds", software.amazon.jsii.NativeType.forClass(java.lang.Object.class)); this.tags = software.amazon.jsii.Kernel.get(this, "tags", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(com.aliyun.ros.cdk.alb.RosLoadBalancer.TagsProperty.class))); } /** * Constructor that initializes the object based on literal property values passed by the {@link Builder}. */ @SuppressWarnings("unchecked") protected Jsii$Proxy(final Builder builder) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); this.addressType = java.util.Objects.requireNonNull(builder.addressType, "addressType is required"); this.loadBalancerBillingConfig = java.util.Objects.requireNonNull(builder.loadBalancerBillingConfig, "loadBalancerBillingConfig is required"); this.loadBalancerEdition = java.util.Objects.requireNonNull(builder.loadBalancerEdition, "loadBalancerEdition is required"); this.loadBalancerName = java.util.Objects.requireNonNull(builder.loadBalancerName, "loadBalancerName is required"); this.vpcId = java.util.Objects.requireNonNull(builder.vpcId, "vpcId is required"); this.zoneMappings = java.util.Objects.requireNonNull(builder.zoneMappings, "zoneMappings is required"); this.accessLogConfig = builder.accessLogConfig; this.addressAllocatedMode = builder.addressAllocatedMode; this.addressIpVersion = builder.addressIpVersion; this.bandwidthPackageId = builder.bandwidthPackageId; this.deletionProtectionEnabled = builder.deletionProtectionEnabled; this.modificationProtectionConfig = builder.modificationProtectionConfig; this.resourceGroupId = builder.resourceGroupId; this.securityGroupIds = builder.securityGroupIds; this.tags = (java.util.List)builder.tags; } @Override public final java.lang.Object getAddressType() { return this.addressType; } @Override public final java.lang.Object getLoadBalancerBillingConfig() { return this.loadBalancerBillingConfig; } @Override public final java.lang.Object getLoadBalancerEdition() { return this.loadBalancerEdition; } @Override public final java.lang.Object getLoadBalancerName() { return this.loadBalancerName; } @Override public final java.lang.Object getVpcId() { return this.vpcId; } @Override public final java.lang.Object getZoneMappings() { return this.zoneMappings; } @Override public final java.lang.Object getAccessLogConfig() { return this.accessLogConfig; } @Override public final java.lang.Object getAddressAllocatedMode() { return this.addressAllocatedMode; } @Override public final java.lang.Object getAddressIpVersion() { return this.addressIpVersion; } @Override public final java.lang.Object getBandwidthPackageId() { return this.bandwidthPackageId; } @Override public final java.lang.Object getDeletionProtectionEnabled() { return this.deletionProtectionEnabled; } @Override public final java.lang.Object getModificationProtectionConfig() { return this.modificationProtectionConfig; } @Override public final java.lang.Object getResourceGroupId() { return this.resourceGroupId; } @Override public final java.lang.Object getSecurityGroupIds() { return this.securityGroupIds; } @Override public final java.util.List getTags() { return this.tags; } @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("addressType", om.valueToTree(this.getAddressType())); data.set("loadBalancerBillingConfig", om.valueToTree(this.getLoadBalancerBillingConfig())); data.set("loadBalancerEdition", om.valueToTree(this.getLoadBalancerEdition())); data.set("loadBalancerName", om.valueToTree(this.getLoadBalancerName())); data.set("vpcId", om.valueToTree(this.getVpcId())); data.set("zoneMappings", om.valueToTree(this.getZoneMappings())); if (this.getAccessLogConfig() != null) { data.set("accessLogConfig", om.valueToTree(this.getAccessLogConfig())); } if (this.getAddressAllocatedMode() != null) { data.set("addressAllocatedMode", om.valueToTree(this.getAddressAllocatedMode())); } if (this.getAddressIpVersion() != null) { data.set("addressIpVersion", om.valueToTree(this.getAddressIpVersion())); } if (this.getBandwidthPackageId() != null) { data.set("bandwidthPackageId", om.valueToTree(this.getBandwidthPackageId())); } if (this.getDeletionProtectionEnabled() != null) { data.set("deletionProtectionEnabled", om.valueToTree(this.getDeletionProtectionEnabled())); } if (this.getModificationProtectionConfig() != null) { data.set("modificationProtectionConfig", om.valueToTree(this.getModificationProtectionConfig())); } if (this.getResourceGroupId() != null) { data.set("resourceGroupId", om.valueToTree(this.getResourceGroupId())); } if (this.getSecurityGroupIds() != null) { data.set("securityGroupIds", om.valueToTree(this.getSecurityGroupIds())); } if (this.getTags() != null) { data.set("tags", om.valueToTree(this.getTags())); } 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.RosLoadBalancerProps")); 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; RosLoadBalancerProps.Jsii$Proxy that = (RosLoadBalancerProps.Jsii$Proxy) o; if (!addressType.equals(that.addressType)) return false; if (!loadBalancerBillingConfig.equals(that.loadBalancerBillingConfig)) return false; if (!loadBalancerEdition.equals(that.loadBalancerEdition)) return false; if (!loadBalancerName.equals(that.loadBalancerName)) return false; if (!vpcId.equals(that.vpcId)) return false; if (!zoneMappings.equals(that.zoneMappings)) return false; if (this.accessLogConfig != null ? !this.accessLogConfig.equals(that.accessLogConfig) : that.accessLogConfig != null) return false; if (this.addressAllocatedMode != null ? !this.addressAllocatedMode.equals(that.addressAllocatedMode) : that.addressAllocatedMode != null) return false; if (this.addressIpVersion != null ? !this.addressIpVersion.equals(that.addressIpVersion) : that.addressIpVersion != null) return false; if (this.bandwidthPackageId != null ? !this.bandwidthPackageId.equals(that.bandwidthPackageId) : that.bandwidthPackageId != null) return false; if (this.deletionProtectionEnabled != null ? !this.deletionProtectionEnabled.equals(that.deletionProtectionEnabled) : that.deletionProtectionEnabled != null) return false; if (this.modificationProtectionConfig != null ? !this.modificationProtectionConfig.equals(that.modificationProtectionConfig) : that.modificationProtectionConfig != null) return false; if (this.resourceGroupId != null ? !this.resourceGroupId.equals(that.resourceGroupId) : that.resourceGroupId != null) return false; if (this.securityGroupIds != null ? !this.securityGroupIds.equals(that.securityGroupIds) : that.securityGroupIds != null) return false; return this.tags != null ? this.tags.equals(that.tags) : that.tags == null; } @Override public final int hashCode() { int result = this.addressType.hashCode(); result = 31 * result + (this.loadBalancerBillingConfig.hashCode()); result = 31 * result + (this.loadBalancerEdition.hashCode()); result = 31 * result + (this.loadBalancerName.hashCode()); result = 31 * result + (this.vpcId.hashCode()); result = 31 * result + (this.zoneMappings.hashCode()); result = 31 * result + (this.accessLogConfig != null ? this.accessLogConfig.hashCode() : 0); result = 31 * result + (this.addressAllocatedMode != null ? this.addressAllocatedMode.hashCode() : 0); result = 31 * result + (this.addressIpVersion != null ? this.addressIpVersion.hashCode() : 0); result = 31 * result + (this.bandwidthPackageId != null ? this.bandwidthPackageId.hashCode() : 0); result = 31 * result + (this.deletionProtectionEnabled != null ? this.deletionProtectionEnabled.hashCode() : 0); result = 31 * result + (this.modificationProtectionConfig != null ? this.modificationProtectionConfig.hashCode() : 0); result = 31 * result + (this.resourceGroupId != null ? this.resourceGroupId.hashCode() : 0); result = 31 * result + (this.securityGroupIds != null ? this.securityGroupIds.hashCode() : 0); result = 31 * result + (this.tags != null ? this.tags.hashCode() : 0); return result; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy