![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.lb.kotlin.BackendAddressPool.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.lb.kotlin
import com.pulumi.azure.lb.kotlin.outputs.BackendAddressPoolTunnelInterface
import com.pulumi.azure.lb.kotlin.outputs.BackendAddressPoolTunnelInterface.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
/**
* Builder for [BackendAddressPool].
*/
@PulumiTagMarker
public class BackendAddressPoolResourceBuilder internal constructor() {
public var name: String? = null
public var args: BackendAddressPoolArgs = BackendAddressPoolArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend BackendAddressPoolArgsBuilder.() -> Unit) {
val builder = BackendAddressPoolArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): BackendAddressPool {
val builtJavaResource = com.pulumi.azure.lb.BackendAddressPool(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return BackendAddressPool(builtJavaResource)
}
}
/**
* Manages a Load Balancer Backend Address Pool.
* > **NOTE:** When using this resource, the Load Balancer needs to have a FrontEnd IP Configuration Attached
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "LoadBalancerRG",
* location: "West Europe",
* });
* const examplePublicIp = new azure.network.PublicIp("example", {
* name: "PublicIPForLB",
* location: example.location,
* resourceGroupName: example.name,
* allocationMethod: "Static",
* });
* const exampleLoadBalancer = new azure.lb.LoadBalancer("example", {
* name: "TestLoadBalancer",
* location: example.location,
* resourceGroupName: example.name,
* frontendIpConfigurations: [{
* name: "PublicIPAddress",
* publicIpAddressId: examplePublicIp.id,
* }],
* });
* const exampleBackendAddressPool = new azure.lb.BackendAddressPool("example", {
* loadbalancerId: exampleLoadBalancer.id,
* name: "BackEndAddressPool",
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="LoadBalancerRG",
* location="West Europe")
* example_public_ip = azure.network.PublicIp("example",
* name="PublicIPForLB",
* location=example.location,
* resource_group_name=example.name,
* allocation_method="Static")
* example_load_balancer = azure.lb.LoadBalancer("example",
* name="TestLoadBalancer",
* location=example.location,
* resource_group_name=example.name,
* frontend_ip_configurations=[{
* "name": "PublicIPAddress",
* "public_ip_address_id": example_public_ip.id,
* }])
* example_backend_address_pool = azure.lb.BackendAddressPool("example",
* loadbalancer_id=example_load_balancer.id,
* name="BackEndAddressPool")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "LoadBalancerRG",
* Location = "West Europe",
* });
* var examplePublicIp = new Azure.Network.PublicIp("example", new()
* {
* Name = "PublicIPForLB",
* Location = example.Location,
* ResourceGroupName = example.Name,
* AllocationMethod = "Static",
* });
* var exampleLoadBalancer = new Azure.Lb.LoadBalancer("example", new()
* {
* Name = "TestLoadBalancer",
* Location = example.Location,
* ResourceGroupName = example.Name,
* FrontendIpConfigurations = new[]
* {
* new Azure.Lb.Inputs.LoadBalancerFrontendIpConfigurationArgs
* {
* Name = "PublicIPAddress",
* PublicIpAddressId = examplePublicIp.Id,
* },
* },
* });
* var exampleBackendAddressPool = new Azure.Lb.BackendAddressPool("example", new()
* {
* LoadbalancerId = exampleLoadBalancer.Id,
* Name = "BackEndAddressPool",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/lb"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("LoadBalancerRG"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
* Name: pulumi.String("PublicIPForLB"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* AllocationMethod: pulumi.String("Static"),
* })
* if err != nil {
* return err
* }
* exampleLoadBalancer, err := lb.NewLoadBalancer(ctx, "example", &lb.LoadBalancerArgs{
* Name: pulumi.String("TestLoadBalancer"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* FrontendIpConfigurations: lb.LoadBalancerFrontendIpConfigurationArray{
* &lb.LoadBalancerFrontendIpConfigurationArgs{
* Name: pulumi.String("PublicIPAddress"),
* PublicIpAddressId: examplePublicIp.ID(),
* },
* },
* })
* if err != nil {
* return err
* }
* _, err = lb.NewBackendAddressPool(ctx, "example", &lb.BackendAddressPoolArgs{
* LoadbalancerId: exampleLoadBalancer.ID(),
* Name: pulumi.String("BackEndAddressPool"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.network.PublicIp;
* import com.pulumi.azure.network.PublicIpArgs;
* import com.pulumi.azure.lb.LoadBalancer;
* import com.pulumi.azure.lb.LoadBalancerArgs;
* import com.pulumi.azure.lb.inputs.LoadBalancerFrontendIpConfigurationArgs;
* import com.pulumi.azure.lb.BackendAddressPool;
* import com.pulumi.azure.lb.BackendAddressPoolArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("LoadBalancerRG")
* .location("West Europe")
* .build());
* var examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()
* .name("PublicIPForLB")
* .location(example.location())
* .resourceGroupName(example.name())
* .allocationMethod("Static")
* .build());
* var exampleLoadBalancer = new LoadBalancer("exampleLoadBalancer", LoadBalancerArgs.builder()
* .name("TestLoadBalancer")
* .location(example.location())
* .resourceGroupName(example.name())
* .frontendIpConfigurations(LoadBalancerFrontendIpConfigurationArgs.builder()
* .name("PublicIPAddress")
* .publicIpAddressId(examplePublicIp.id())
* .build())
* .build());
* var exampleBackendAddressPool = new BackendAddressPool("exampleBackendAddressPool", BackendAddressPoolArgs.builder()
* .loadbalancerId(exampleLoadBalancer.id())
* .name("BackEndAddressPool")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: LoadBalancerRG
* location: West Europe
* examplePublicIp:
* type: azure:network:PublicIp
* name: example
* properties:
* name: PublicIPForLB
* location: ${example.location}
* resourceGroupName: ${example.name}
* allocationMethod: Static
* exampleLoadBalancer:
* type: azure:lb:LoadBalancer
* name: example
* properties:
* name: TestLoadBalancer
* location: ${example.location}
* resourceGroupName: ${example.name}
* frontendIpConfigurations:
* - name: PublicIPAddress
* publicIpAddressId: ${examplePublicIp.id}
* exampleBackendAddressPool:
* type: azure:lb:BackendAddressPool
* name: example
* properties:
* loadbalancerId: ${exampleLoadBalancer.id}
* name: BackEndAddressPool
* ```
*
* ## Import
* Load Balancer Backend Address Pools can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:lb/backendAddressPool:BackendAddressPool example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/pool1
* ```
*/
public class BackendAddressPool internal constructor(
override val javaResource: com.pulumi.azure.lb.BackendAddressPool,
) : KotlinCustomResource(javaResource, BackendAddressPoolMapper) {
/**
* The Backend IP Configurations associated with this Backend Address Pool.
*/
public val backendIpConfigurations: Output>
get() = javaResource.backendIpConfigurations().applyValue({ args0 ->
args0.map({ args0 ->
args0
})
})
/**
* An array of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.
*/
public val inboundNatRules: Output>
get() = javaResource.inboundNatRules().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The Load Balancing Rules associated with this Backend Address Pool.
*/
public val loadBalancingRules: Output>
get() = javaResource.loadBalancingRules().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The ID of the Load Balancer in which to create the Backend Address Pool. Changing this forces a new resource to be created.
*/
public val loadbalancerId: Output
get() = javaResource.loadbalancerId().applyValue({ args0 -> args0 })
/**
* Specifies the name of the Backend Address Pool. Changing this forces a new resource to be created.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* An array of the Load Balancing Outbound Rules associated with this Backend Address Pool.
*/
public val outboundRules: Output>
get() = javaResource.outboundRules().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The backend address synchronous mode for the Backend Address Pool. Possible values are `Automatic` and `Manual`. This is required with `virtual_network_id`. Changing this forces a new resource to be created.
* > **NOTE:** The `synchronous_mode` can set only for Load Balancer with `Standard` SKU.
*/
public val synchronousMode: Output?
get() = javaResource.synchronousMode().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* One or more `tunnel_interface` blocks as defined below.
*/
public val tunnelInterfaces: Output>?
get() = javaResource.tunnelInterfaces().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })
}).orElse(null)
})
/**
* The ID of the Virtual Network within which the Backend Address Pool should exist.
*/
public val virtualNetworkId: Output?
get() = javaResource.virtualNetworkId().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
}
public object BackendAddressPoolMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.lb.BackendAddressPool::class == javaResource::class
override fun map(javaResource: Resource): BackendAddressPool = BackendAddressPool(
javaResource as
com.pulumi.azure.lb.BackendAddressPool,
)
}
/**
* @see [BackendAddressPool].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [BackendAddressPool].
*/
public suspend fun backendAddressPool(
name: String,
block: suspend BackendAddressPoolResourceBuilder.() -> Unit,
): BackendAddressPool {
val builder = BackendAddressPoolResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [BackendAddressPool].
* @param name The _unique_ name of the resulting resource.
*/
public fun backendAddressPool(name: String): BackendAddressPool {
val builder = BackendAddressPoolResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy