com.pulumi.azure.workloadssap.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
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.
// *** 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.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer {
/**
* @return A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
*
*/
private @Nullable List backendPoolNames;
/**
* @return A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
*
*/
private @Nullable List frontendIpConfigurationNames;
/**
* @return A list of Health Probe names. Changing this forces a new resource to be created.
*
*/
private @Nullable List healthProbeNames;
/**
* @return The full resource name of the Load Balancer. Changing this forces a new resource to be created.
*
*/
private @Nullable String name;
private ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer() {}
/**
* @return A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
*
*/
public List backendPoolNames() {
return this.backendPoolNames == null ? List.of() : this.backendPoolNames;
}
/**
* @return A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
*
*/
public List frontendIpConfigurationNames() {
return this.frontendIpConfigurationNames == null ? List.of() : this.frontendIpConfigurationNames;
}
/**
* @return A list of Health Probe names. Changing this forces a new resource to be created.
*
*/
public List healthProbeNames() {
return this.healthProbeNames == null ? List.of() : this.healthProbeNames;
}
/**
* @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);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List backendPoolNames;
private @Nullable List frontendIpConfigurationNames;
private @Nullable List healthProbeNames;
private @Nullable String name;
public Builder() {}
public Builder(ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer defaults) {
Objects.requireNonNull(defaults);
this.backendPoolNames = defaults.backendPoolNames;
this.frontendIpConfigurationNames = defaults.frontendIpConfigurationNames;
this.healthProbeNames = defaults.healthProbeNames;
this.name = defaults.name;
}
@CustomType.Setter
public Builder backendPoolNames(@Nullable List backendPoolNames) {
this.backendPoolNames = backendPoolNames;
return this;
}
public Builder backendPoolNames(String... backendPoolNames) {
return backendPoolNames(List.of(backendPoolNames));
}
@CustomType.Setter
public Builder frontendIpConfigurationNames(@Nullable List frontendIpConfigurationNames) {
this.frontendIpConfigurationNames = frontendIpConfigurationNames;
return this;
}
public Builder frontendIpConfigurationNames(String... frontendIpConfigurationNames) {
return frontendIpConfigurationNames(List.of(frontendIpConfigurationNames));
}
@CustomType.Setter
public Builder healthProbeNames(@Nullable List healthProbeNames) {
this.healthProbeNames = healthProbeNames;
return this;
}
public Builder healthProbeNames(String... healthProbeNames) {
return healthProbeNames(List.of(healthProbeNames));
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer build() {
final var _resultValue = new ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer();
_resultValue.backendPoolNames = backendPoolNames;
_resultValue.frontendIpConfigurationNames = frontendIpConfigurationNames;
_resultValue.healthProbeNames = healthProbeNames;
_resultValue.name = name;
return _resultValue;
}
}
}