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

com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.paloalto.inputs;

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


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

    public static final NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs Empty = new NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs();

    /**
     * Specifies a list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
     * 
     */
    @Import(name="egressNatIpAddressIds")
    private @Nullable Output> egressNatIpAddressIds;

    /**
     * @return Specifies a list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
     * 
     */
    public Optional>> egressNatIpAddressIds() {
        return Optional.ofNullable(this.egressNatIpAddressIds);
    }

    @Import(name="egressNatIpAddresses")
    private @Nullable Output> egressNatIpAddresses;

    public Optional>> egressNatIpAddresses() {
        return Optional.ofNullable(this.egressNatIpAddresses);
    }

    /**
     * Specifies a list of Azure Public IP Address IDs.
     * 
     */
    @Import(name="publicIpAddressIds", required=true)
    private Output> publicIpAddressIds;

    /**
     * @return Specifies a list of Azure Public IP Address IDs.
     * 
     */
    public Output> publicIpAddressIds() {
        return this.publicIpAddressIds;
    }

    @Import(name="publicIpAddresses")
    private @Nullable Output> publicIpAddresses;

    public Optional>> publicIpAddresses() {
        return Optional.ofNullable(this.publicIpAddresses);
    }

    /**
     * Specifies a list of trusted ranges to use for the Network.
     * 
     */
    @Import(name="trustedAddressRanges")
    private @Nullable Output> trustedAddressRanges;

    /**
     * @return Specifies a list of trusted ranges to use for the Network.
     * 
     */
    public Optional>> trustedAddressRanges() {
        return Optional.ofNullable(this.trustedAddressRanges);
    }

    /**
     * A `vnet_configuration` block as defined below.
     * 
     */
    @Import(name="vnetConfiguration", required=true)
    private Output vnetConfiguration;

    /**
     * @return A `vnet_configuration` block as defined below.
     * 
     */
    public Output vnetConfiguration() {
        return this.vnetConfiguration;
    }

    private NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs() {}

    private NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs(NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs $) {
        this.egressNatIpAddressIds = $.egressNatIpAddressIds;
        this.egressNatIpAddresses = $.egressNatIpAddresses;
        this.publicIpAddressIds = $.publicIpAddressIds;
        this.publicIpAddresses = $.publicIpAddresses;
        this.trustedAddressRanges = $.trustedAddressRanges;
        this.vnetConfiguration = $.vnetConfiguration;
    }

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

    public static final class Builder {
        private NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs $;

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

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

        /**
         * @param egressNatIpAddressIds Specifies a list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
         * 
         * @return builder
         * 
         */
        public Builder egressNatIpAddressIds(@Nullable Output> egressNatIpAddressIds) {
            $.egressNatIpAddressIds = egressNatIpAddressIds;
            return this;
        }

        /**
         * @param egressNatIpAddressIds Specifies a list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
         * 
         * @return builder
         * 
         */
        public Builder egressNatIpAddressIds(List egressNatIpAddressIds) {
            return egressNatIpAddressIds(Output.of(egressNatIpAddressIds));
        }

        /**
         * @param egressNatIpAddressIds Specifies a list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
         * 
         * @return builder
         * 
         */
        public Builder egressNatIpAddressIds(String... egressNatIpAddressIds) {
            return egressNatIpAddressIds(List.of(egressNatIpAddressIds));
        }

        public Builder egressNatIpAddresses(@Nullable Output> egressNatIpAddresses) {
            $.egressNatIpAddresses = egressNatIpAddresses;
            return this;
        }

        public Builder egressNatIpAddresses(List egressNatIpAddresses) {
            return egressNatIpAddresses(Output.of(egressNatIpAddresses));
        }

        public Builder egressNatIpAddresses(String... egressNatIpAddresses) {
            return egressNatIpAddresses(List.of(egressNatIpAddresses));
        }

        /**
         * @param publicIpAddressIds Specifies a list of Azure Public IP Address IDs.
         * 
         * @return builder
         * 
         */
        public Builder publicIpAddressIds(Output> publicIpAddressIds) {
            $.publicIpAddressIds = publicIpAddressIds;
            return this;
        }

        /**
         * @param publicIpAddressIds Specifies a list of Azure Public IP Address IDs.
         * 
         * @return builder
         * 
         */
        public Builder publicIpAddressIds(List publicIpAddressIds) {
            return publicIpAddressIds(Output.of(publicIpAddressIds));
        }

        /**
         * @param publicIpAddressIds Specifies a list of Azure Public IP Address IDs.
         * 
         * @return builder
         * 
         */
        public Builder publicIpAddressIds(String... publicIpAddressIds) {
            return publicIpAddressIds(List.of(publicIpAddressIds));
        }

        public Builder publicIpAddresses(@Nullable Output> publicIpAddresses) {
            $.publicIpAddresses = publicIpAddresses;
            return this;
        }

        public Builder publicIpAddresses(List publicIpAddresses) {
            return publicIpAddresses(Output.of(publicIpAddresses));
        }

        public Builder publicIpAddresses(String... publicIpAddresses) {
            return publicIpAddresses(List.of(publicIpAddresses));
        }

        /**
         * @param trustedAddressRanges Specifies a list of trusted ranges to use for the Network.
         * 
         * @return builder
         * 
         */
        public Builder trustedAddressRanges(@Nullable Output> trustedAddressRanges) {
            $.trustedAddressRanges = trustedAddressRanges;
            return this;
        }

        /**
         * @param trustedAddressRanges Specifies a list of trusted ranges to use for the Network.
         * 
         * @return builder
         * 
         */
        public Builder trustedAddressRanges(List trustedAddressRanges) {
            return trustedAddressRanges(Output.of(trustedAddressRanges));
        }

        /**
         * @param trustedAddressRanges Specifies a list of trusted ranges to use for the Network.
         * 
         * @return builder
         * 
         */
        public Builder trustedAddressRanges(String... trustedAddressRanges) {
            return trustedAddressRanges(List.of(trustedAddressRanges));
        }

        /**
         * @param vnetConfiguration A `vnet_configuration` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder vnetConfiguration(Output vnetConfiguration) {
            $.vnetConfiguration = vnetConfiguration;
            return this;
        }

        /**
         * @param vnetConfiguration A `vnet_configuration` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder vnetConfiguration(NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileVnetConfigurationArgs vnetConfiguration) {
            return vnetConfiguration(Output.of(vnetConfiguration));
        }

        public NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs build() {
            if ($.publicIpAddressIds == null) {
                throw new MissingRequiredPropertyException("NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs", "publicIpAddressIds");
            }
            if ($.vnetConfiguration == null) {
                throw new MissingRequiredPropertyException("NextGenerationFirewallVirtualNetworkLocalRulestackNetworkProfileArgs", "vnetConfiguration");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy