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

com.pulumi.azurenative.documentdb.MongoClusterFirewallRuleArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.documentdb;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class MongoClusterFirewallRuleArgs extends com.pulumi.resources.ResourceArgs {

    public static final MongoClusterFirewallRuleArgs Empty = new MongoClusterFirewallRuleArgs();

    /**
     * The end IP address of the mongo cluster firewall rule. Must be IPv4 format.
     * 
     */
    @Import(name="endIpAddress", required=true)
    private Output endIpAddress;

    /**
     * @return The end IP address of the mongo cluster firewall rule. Must be IPv4 format.
     * 
     */
    public Output endIpAddress() {
        return this.endIpAddress;
    }

    /**
     * The name of the mongo cluster firewall rule.
     * 
     */
    @Import(name="firewallRuleName")
    private @Nullable Output firewallRuleName;

    /**
     * @return The name of the mongo cluster firewall rule.
     * 
     */
    public Optional> firewallRuleName() {
        return Optional.ofNullable(this.firewallRuleName);
    }

    /**
     * The name of the mongo cluster.
     * 
     */
    @Import(name="mongoClusterName", required=true)
    private Output mongoClusterName;

    /**
     * @return The name of the mongo cluster.
     * 
     */
    public Output mongoClusterName() {
        return this.mongoClusterName;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The start IP address of the mongo cluster firewall rule. Must be IPv4 format.
     * 
     */
    @Import(name="startIpAddress", required=true)
    private Output startIpAddress;

    /**
     * @return The start IP address of the mongo cluster firewall rule. Must be IPv4 format.
     * 
     */
    public Output startIpAddress() {
        return this.startIpAddress;
    }

    private MongoClusterFirewallRuleArgs() {}

    private MongoClusterFirewallRuleArgs(MongoClusterFirewallRuleArgs $) {
        this.endIpAddress = $.endIpAddress;
        this.firewallRuleName = $.firewallRuleName;
        this.mongoClusterName = $.mongoClusterName;
        this.resourceGroupName = $.resourceGroupName;
        this.startIpAddress = $.startIpAddress;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(MongoClusterFirewallRuleArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private MongoClusterFirewallRuleArgs $;

        public Builder() {
            $ = new MongoClusterFirewallRuleArgs();
        }

        public Builder(MongoClusterFirewallRuleArgs defaults) {
            $ = new MongoClusterFirewallRuleArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param endIpAddress The end IP address of the mongo cluster firewall rule. Must be IPv4 format.
         * 
         * @return builder
         * 
         */
        public Builder endIpAddress(Output endIpAddress) {
            $.endIpAddress = endIpAddress;
            return this;
        }

        /**
         * @param endIpAddress The end IP address of the mongo cluster firewall rule. Must be IPv4 format.
         * 
         * @return builder
         * 
         */
        public Builder endIpAddress(String endIpAddress) {
            return endIpAddress(Output.of(endIpAddress));
        }

        /**
         * @param firewallRuleName The name of the mongo cluster firewall rule.
         * 
         * @return builder
         * 
         */
        public Builder firewallRuleName(@Nullable Output firewallRuleName) {
            $.firewallRuleName = firewallRuleName;
            return this;
        }

        /**
         * @param firewallRuleName The name of the mongo cluster firewall rule.
         * 
         * @return builder
         * 
         */
        public Builder firewallRuleName(String firewallRuleName) {
            return firewallRuleName(Output.of(firewallRuleName));
        }

        /**
         * @param mongoClusterName The name of the mongo cluster.
         * 
         * @return builder
         * 
         */
        public Builder mongoClusterName(Output mongoClusterName) {
            $.mongoClusterName = mongoClusterName;
            return this;
        }

        /**
         * @param mongoClusterName The name of the mongo cluster.
         * 
         * @return builder
         * 
         */
        public Builder mongoClusterName(String mongoClusterName) {
            return mongoClusterName(Output.of(mongoClusterName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param startIpAddress The start IP address of the mongo cluster firewall rule. Must be IPv4 format.
         * 
         * @return builder
         * 
         */
        public Builder startIpAddress(Output startIpAddress) {
            $.startIpAddress = startIpAddress;
            return this;
        }

        /**
         * @param startIpAddress The start IP address of the mongo cluster firewall rule. Must be IPv4 format.
         * 
         * @return builder
         * 
         */
        public Builder startIpAddress(String startIpAddress) {
            return startIpAddress(Output.of(startIpAddress));
        }

        public MongoClusterFirewallRuleArgs build() {
            if ($.endIpAddress == null) {
                throw new MissingRequiredPropertyException("MongoClusterFirewallRuleArgs", "endIpAddress");
            }
            if ($.mongoClusterName == null) {
                throw new MissingRequiredPropertyException("MongoClusterFirewallRuleArgs", "mongoClusterName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("MongoClusterFirewallRuleArgs", "resourceGroupName");
            }
            if ($.startIpAddress == null) {
                throw new MissingRequiredPropertyException("MongoClusterFirewallRuleArgs", "startIpAddress");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy