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

com.aliyun.ros.cdk.cloudfw.RosAddressBookProps 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.4.0
Show newest version
package com.aliyun.ros.cdk.cloudfw;

/**
 * Properties for defining a ALIYUN::CLOUDFW::AddressBook.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2023-07-18T08:28:00.187Z")
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.cloudfw.$Module.class, fqn = "@alicloud/ros-cdk-cloudfw.RosAddressBookProps")
@software.amazon.jsii.Jsii.Proxy(RosAddressBookProps.Jsii$Proxy.class)
public interface RosAddressBookProps extends software.amazon.jsii.JsiiSerializable {

    /**
     */
    @org.jetbrains.annotations.NotNull java.lang.Object getDescription();

    /**
     */
    @org.jetbrains.annotations.NotNull java.lang.Object getGroupName();

    /**
     */
    @org.jetbrains.annotations.NotNull java.lang.Object getGroupType();

    /**
     */
    default @org.jetbrains.annotations.Nullable java.lang.Object getAddressList() {
        return null;
    }

    /**
     */
    default @org.jetbrains.annotations.Nullable java.lang.Object getAutoAddTagEcs() {
        return null;
    }

    /**
     */
    default @org.jetbrains.annotations.Nullable java.lang.Object getRegionId() {
        return null;
    }

    /**
     */
    default @org.jetbrains.annotations.Nullable java.lang.Object getTagList() {
        return null;
    }

    /**
     */
    default @org.jetbrains.annotations.Nullable java.lang.Object getTagRelation() {
        return null;
    }

    /**
     * @return a {@link Builder} of {@link RosAddressBookProps}
     */
    static Builder builder() {
        return new Builder();
    }
    /**
     * A builder for {@link RosAddressBookProps}
     */
    public static final class Builder implements software.amazon.jsii.Builder {
        java.lang.Object description;
        java.lang.Object groupName;
        java.lang.Object groupType;
        java.lang.Object addressList;
        java.lang.Object autoAddTagEcs;
        java.lang.Object regionId;
        java.lang.Object tagList;
        java.lang.Object tagRelation;

        /**
         * Sets the value of {@link RosAddressBookProps#getDescription}
         * @param description the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder description(java.lang.String description) {
            this.description = description;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getDescription}
         * @param description the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder description(com.aliyun.ros.cdk.core.IResolvable description) {
            this.description = description;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getGroupName}
         * @param groupName the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder groupName(java.lang.String groupName) {
            this.groupName = groupName;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getGroupName}
         * @param groupName the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder groupName(com.aliyun.ros.cdk.core.IResolvable groupName) {
            this.groupName = groupName;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getGroupType}
         * @param groupType the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder groupType(java.lang.String groupType) {
            this.groupType = groupType;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getGroupType}
         * @param groupType the value to be set. This parameter is required.
         * @return {@code this}
         */
        public Builder groupType(com.aliyun.ros.cdk.core.IResolvable groupType) {
            this.groupType = groupType;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getAddressList}
         * @param addressList the value to be set.
         * @return {@code this}
         */
        public Builder addressList(java.lang.String addressList) {
            this.addressList = addressList;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getAddressList}
         * @param addressList the value to be set.
         * @return {@code this}
         */
        public Builder addressList(com.aliyun.ros.cdk.core.IResolvable addressList) {
            this.addressList = addressList;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getAutoAddTagEcs}
         * @param autoAddTagEcs the value to be set.
         * @return {@code this}
         */
        public Builder autoAddTagEcs(java.lang.Boolean autoAddTagEcs) {
            this.autoAddTagEcs = autoAddTagEcs;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getAutoAddTagEcs}
         * @param autoAddTagEcs the value to be set.
         * @return {@code this}
         */
        public Builder autoAddTagEcs(com.aliyun.ros.cdk.core.IResolvable autoAddTagEcs) {
            this.autoAddTagEcs = autoAddTagEcs;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getRegionId}
         * @param regionId the value to be set.
         * @return {@code this}
         */
        public Builder regionId(java.lang.String regionId) {
            this.regionId = regionId;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getRegionId}
         * @param regionId the value to be set.
         * @return {@code this}
         */
        public Builder regionId(com.aliyun.ros.cdk.core.IResolvable regionId) {
            this.regionId = regionId;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getTagList}
         * @param tagList the value to be set.
         * @return {@code this}
         */
        public Builder tagList(com.aliyun.ros.cdk.core.IResolvable tagList) {
            this.tagList = tagList;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getTagList}
         * @param tagList the value to be set.
         * @return {@code this}
         */
        public Builder tagList(java.util.List tagList) {
            this.tagList = tagList;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getTagRelation}
         * @param tagRelation the value to be set.
         * @return {@code this}
         */
        public Builder tagRelation(java.lang.String tagRelation) {
            this.tagRelation = tagRelation;
            return this;
        }

        /**
         * Sets the value of {@link RosAddressBookProps#getTagRelation}
         * @param tagRelation the value to be set.
         * @return {@code this}
         */
        public Builder tagRelation(com.aliyun.ros.cdk.core.IResolvable tagRelation) {
            this.tagRelation = tagRelation;
            return this;
        }

        /**
         * Builds the configured instance.
         * @return a new instance of {@link RosAddressBookProps}
         * @throws NullPointerException if any required attribute was not provided
         */
        @Override
        public RosAddressBookProps build() {
            return new Jsii$Proxy(this);
        }
    }

    /**
     * An implementation for {@link RosAddressBookProps}
     */
    @software.amazon.jsii.Internal
    final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RosAddressBookProps {
        private final java.lang.Object description;
        private final java.lang.Object groupName;
        private final java.lang.Object groupType;
        private final java.lang.Object addressList;
        private final java.lang.Object autoAddTagEcs;
        private final java.lang.Object regionId;
        private final java.lang.Object tagList;
        private final java.lang.Object tagRelation;

        /**
         * 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.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.groupName = software.amazon.jsii.Kernel.get(this, "groupName", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.groupType = software.amazon.jsii.Kernel.get(this, "groupType", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.addressList = software.amazon.jsii.Kernel.get(this, "addressList", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.autoAddTagEcs = software.amazon.jsii.Kernel.get(this, "autoAddTagEcs", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.regionId = software.amazon.jsii.Kernel.get(this, "regionId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.tagList = software.amazon.jsii.Kernel.get(this, "tagList", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
            this.tagRelation = software.amazon.jsii.Kernel.get(this, "tagRelation", 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.description = java.util.Objects.requireNonNull(builder.description, "description is required");
            this.groupName = java.util.Objects.requireNonNull(builder.groupName, "groupName is required");
            this.groupType = java.util.Objects.requireNonNull(builder.groupType, "groupType is required");
            this.addressList = builder.addressList;
            this.autoAddTagEcs = builder.autoAddTagEcs;
            this.regionId = builder.regionId;
            this.tagList = builder.tagList;
            this.tagRelation = builder.tagRelation;
        }

        @Override
        public final java.lang.Object getDescription() {
            return this.description;
        }

        @Override
        public final java.lang.Object getGroupName() {
            return this.groupName;
        }

        @Override
        public final java.lang.Object getGroupType() {
            return this.groupType;
        }

        @Override
        public final java.lang.Object getAddressList() {
            return this.addressList;
        }

        @Override
        public final java.lang.Object getAutoAddTagEcs() {
            return this.autoAddTagEcs;
        }

        @Override
        public final java.lang.Object getRegionId() {
            return this.regionId;
        }

        @Override
        public final java.lang.Object getTagList() {
            return this.tagList;
        }

        @Override
        public final java.lang.Object getTagRelation() {
            return this.tagRelation;
        }

        @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("description", om.valueToTree(this.getDescription()));
            data.set("groupName", om.valueToTree(this.getGroupName()));
            data.set("groupType", om.valueToTree(this.getGroupType()));
            if (this.getAddressList() != null) {
                data.set("addressList", om.valueToTree(this.getAddressList()));
            }
            if (this.getAutoAddTagEcs() != null) {
                data.set("autoAddTagEcs", om.valueToTree(this.getAutoAddTagEcs()));
            }
            if (this.getRegionId() != null) {
                data.set("regionId", om.valueToTree(this.getRegionId()));
            }
            if (this.getTagList() != null) {
                data.set("tagList", om.valueToTree(this.getTagList()));
            }
            if (this.getTagRelation() != null) {
                data.set("tagRelation", om.valueToTree(this.getTagRelation()));
            }

            final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
            struct.set("fqn", om.valueToTree("@alicloud/ros-cdk-cloudfw.RosAddressBookProps"));
            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;

            RosAddressBookProps.Jsii$Proxy that = (RosAddressBookProps.Jsii$Proxy) o;

            if (!description.equals(that.description)) return false;
            if (!groupName.equals(that.groupName)) return false;
            if (!groupType.equals(that.groupType)) return false;
            if (this.addressList != null ? !this.addressList.equals(that.addressList) : that.addressList != null) return false;
            if (this.autoAddTagEcs != null ? !this.autoAddTagEcs.equals(that.autoAddTagEcs) : that.autoAddTagEcs != null) return false;
            if (this.regionId != null ? !this.regionId.equals(that.regionId) : that.regionId != null) return false;
            if (this.tagList != null ? !this.tagList.equals(that.tagList) : that.tagList != null) return false;
            return this.tagRelation != null ? this.tagRelation.equals(that.tagRelation) : that.tagRelation == null;
        }

        @Override
        public final int hashCode() {
            int result = this.description.hashCode();
            result = 31 * result + (this.groupName.hashCode());
            result = 31 * result + (this.groupType.hashCode());
            result = 31 * result + (this.addressList != null ? this.addressList.hashCode() : 0);
            result = 31 * result + (this.autoAddTagEcs != null ? this.autoAddTagEcs.hashCode() : 0);
            result = 31 * result + (this.regionId != null ? this.regionId.hashCode() : 0);
            result = 31 * result + (this.tagList != null ? this.tagList.hashCode() : 0);
            result = 31 * result + (this.tagRelation != null ? this.tagRelation.hashCode() : 0);
            return result;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy