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

com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs 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.workloadssap.inputs;

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


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

    public static final ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs Empty = new ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs();

    /**
     * A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="backendPoolNames")
    private @Nullable Output> backendPoolNames;

    /**
     * @return A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     * 
     */
    public Optional>> backendPoolNames() {
        return Optional.ofNullable(this.backendPoolNames);
    }

    /**
     * A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="frontendIpConfigurationNames")
    private @Nullable Output> frontendIpConfigurationNames;

    /**
     * @return A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     * 
     */
    public Optional>> frontendIpConfigurationNames() {
        return Optional.ofNullable(this.frontendIpConfigurationNames);
    }

    /**
     * A list of Health Probe names. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="healthProbeNames")
    private @Nullable Output> healthProbeNames;

    /**
     * @return A list of Health Probe names. Changing this forces a new resource to be created.
     * 
     */
    public Optional>> healthProbeNames() {
        return Optional.ofNullable(this.healthProbeNames);
    }

    /**
     * The full resource name of the Load Balancer. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The full resource name of the Load Balancer. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs() {}

    private ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs(ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs $) {
        this.backendPoolNames = $.backendPoolNames;
        this.frontendIpConfigurationNames = $.frontendIpConfigurationNames;
        this.healthProbeNames = $.healthProbeNames;
        this.name = $.name;
    }

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

    public static final class Builder {
        private ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs $;

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

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

        /**
         * @param backendPoolNames A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder backendPoolNames(@Nullable Output> backendPoolNames) {
            $.backendPoolNames = backendPoolNames;
            return this;
        }

        /**
         * @param backendPoolNames A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder backendPoolNames(List backendPoolNames) {
            return backendPoolNames(Output.of(backendPoolNames));
        }

        /**
         * @param backendPoolNames A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder backendPoolNames(String... backendPoolNames) {
            return backendPoolNames(List.of(backendPoolNames));
        }

        /**
         * @param frontendIpConfigurationNames A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder frontendIpConfigurationNames(@Nullable Output> frontendIpConfigurationNames) {
            $.frontendIpConfigurationNames = frontendIpConfigurationNames;
            return this;
        }

        /**
         * @param frontendIpConfigurationNames A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder frontendIpConfigurationNames(List frontendIpConfigurationNames) {
            return frontendIpConfigurationNames(Output.of(frontendIpConfigurationNames));
        }

        /**
         * @param frontendIpConfigurationNames A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder frontendIpConfigurationNames(String... frontendIpConfigurationNames) {
            return frontendIpConfigurationNames(List.of(frontendIpConfigurationNames));
        }

        /**
         * @param healthProbeNames A list of Health Probe names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder healthProbeNames(@Nullable Output> healthProbeNames) {
            $.healthProbeNames = healthProbeNames;
            return this;
        }

        /**
         * @param healthProbeNames A list of Health Probe names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder healthProbeNames(List healthProbeNames) {
            return healthProbeNames(Output.of(healthProbeNames));
        }

        /**
         * @param healthProbeNames A list of Health Probe names. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder healthProbeNames(String... healthProbeNames) {
            return healthProbeNames(List.of(healthProbeNames));
        }

        /**
         * @param name The full resource name of the Load Balancer. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The full resource name of the Load Balancer. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy