1. Packages
  2. Azure Classic
  3. API Docs
  4. lb
  5. getBackendAddressPool

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.lb.getBackendAddressPool

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Use this data source to access information about an existing Load Balancer’s Backend Address Pool.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.lb.getLB({
        name: "example-lb",
        resourceGroupName: "example-resources",
    });
    const exampleGetBackendAddressPool = example.then(example => azure.lb.getBackendAddressPool({
        name: "first",
        loadbalancerId: example.id,
    }));
    export const backendAddressPoolId = exampleGetBackendAddressPool.then(exampleGetBackendAddressPool => exampleGetBackendAddressPool.id);
    export const backendIpConfigurationIds = beap.backendIpConfigurations.map(__item => __item.id);
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.lb.get_lb(name="example-lb",
        resource_group_name="example-resources")
    example_get_backend_address_pool = azure.lb.get_backend_address_pool(name="first",
        loadbalancer_id=example.id)
    pulumi.export("backendAddressPoolId", example_get_backend_address_pool.id)
    pulumi.export("backendIpConfigurationIds", [__item["id"] for __item in beap["backendIpConfigurations"]])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/lb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := lb.GetLB(ctx, &lb.GetLBArgs{
    			Name:              "example-lb",
    			ResourceGroupName: "example-resources",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleGetBackendAddressPool, err := lb.LookupBackendAddressPool(ctx, &lb.LookupBackendAddressPoolArgs{
    			Name:           "first",
    			LoadbalancerId: example.Id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("backendAddressPoolId", exampleGetBackendAddressPool.Id)
    		var splat0 []interface{}
    		for _, val0 := range beap.BackendIpConfigurations {
    			splat0 = append(splat0, val0.Id)
    		}
    		ctx.Export("backendIpConfigurationIds", splat0)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.Lb.GetLB.Invoke(new()
        {
            Name = "example-lb",
            ResourceGroupName = "example-resources",
        });
    
        var exampleGetBackendAddressPool = Azure.Lb.GetBackendAddressPool.Invoke(new()
        {
            Name = "first",
            LoadbalancerId = example.Apply(getLBResult => getLBResult.Id),
        });
    
        return new Dictionary<string, object?>
        {
            ["backendAddressPoolId"] = exampleGetBackendAddressPool.Apply(getBackendAddressPoolResult => getBackendAddressPoolResult.Id),
            ["backendIpConfigurationIds"] = beap.BackendIpConfigurations.Select(__item => __item.Id).ToList(),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.lb.LbFunctions;
    import com.pulumi.azure.lb.inputs.GetLBArgs;
    import com.pulumi.azure.lb.inputs.GetBackendAddressPoolArgs;
    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) {
            final var example = LbFunctions.getLB(GetLBArgs.builder()
                .name("example-lb")
                .resourceGroupName("example-resources")
                .build());
    
            final var exampleGetBackendAddressPool = LbFunctions.getBackendAddressPool(GetBackendAddressPoolArgs.builder()
                .name("first")
                .loadbalancerId(example.applyValue(getLBResult -> getLBResult.id()))
                .build());
    
            ctx.export("backendAddressPoolId", exampleGetBackendAddressPool.applyValue(getBackendAddressPoolResult -> getBackendAddressPoolResult.id()));
            ctx.export("backendIpConfigurationIds", beap.backendIpConfigurations().stream().map(element -> element.id()).collect(toList()));
        }
    }
    
    Coming soon!```
    </pulumi-choosable>
    </div>
    
    
    
    
    ## Using getBackendAddressPool {#using}
    
    Two invocation forms are available. The direct form accepts plain
    arguments and either blocks until the result value is available, or
    returns a Promise-wrapped result. The output form accepts
    Input-wrapped arguments and returns an Output-wrapped result.
    
    <div>
    <pulumi-chooser type="language" options="typescript,python,go,csharp,java,yaml"></pulumi-chooser>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <div class="highlight"
    ><pre class="chroma"><code class="language-typescript" data-lang="typescript"
    ><span class="k">function </span>getBackendAddressPool<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetBackendAddressPoolArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Promise&lt;<span class="nx"><a href="#result">GetBackendAddressPoolResult</a></span>></span
    ><span class="k">
    function </span>getBackendAddressPoolOutput<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetBackendAddressPoolOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Output&lt;<span class="nx"><a href="#result">GetBackendAddressPoolResult</a></span>></span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="python">
    <div class="highlight"><pre class="chroma"><code class="language-python" data-lang="python"
    ><span class="k">def </span>get_backend_address_pool<span class="p">(</span><span class="nx">loadbalancer_id</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
                                 <span class="nx">name</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
                                 <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>GetBackendAddressPoolResult</span
    ><span class="k">
    def </span>get_backend_address_pool_output<span class="p">(</span><span class="nx">loadbalancer_id</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[str]]</span> = None<span class="p">,</span>
                                 <span class="nx">name</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[str]]</span> = None<span class="p">,</span>
                                 <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>Output[GetBackendAddressPoolResult]</span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="go">
    <div class="highlight"><pre class="chroma"><code class="language-go" data-lang="go"
    ><span class="k">func </span>LookupBackendAddressPool<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">LookupBackendAddressPoolArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) (*<span class="nx"><a href="#result">LookupBackendAddressPoolResult</a></span>, error)</span
    ><span class="k">
    func </span>LookupBackendAddressPoolOutput<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">LookupBackendAddressPoolOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) LookupBackendAddressPoolResultOutput</span
    ></code></pre></div>
    
    &gt; Note: This function is named `LookupBackendAddressPool` in the Go SDK.
    
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <div class="highlight"><pre class="chroma"><code class="language-csharp" data-lang="csharp"><span class="k">public static class </span><span class="nx">GetBackendAddressPool </span><span class="p">
    {</span><span class="k">
        public static </span>Task&lt;<span class="nx"><a href="#result">GetBackendAddressPoolResult</a></span>> <span class="p">InvokeAsync(</span><span class="nx">GetBackendAddressPoolArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="k">
        public static </span>Output&lt;<span class="nx"><a href="#result">GetBackendAddressPoolResult</a></span>> <span class="p">Invoke(</span><span class="nx">GetBackendAddressPoolInvokeArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="p">
    }</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="java">
    <div class="highlight"><pre class="chroma"><code class="language-java" data-lang="java"><span class="k">public static CompletableFuture&lt;<span class="nx"><a href="#result">GetBackendAddressPoolResult</a></span>> </span>getBackendAddressPool<span class="p">(</span><span class="nx">GetBackendAddressPoolArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx">InvokeOptions</span><span class="p"> </span><span class="nx">options<span class="p">)</span>
    <span class="c">// Output-based functions aren't available in Java yet</span>
    </code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <div class="highlight"><pre class="chroma"><code class="language-yaml" data-lang="yaml"><span class="k">fn::invoke:</span>
    <span class="k">&nbsp;&nbsp;function:</span> azure:lb/getBackendAddressPool:getBackendAddressPool
    <span class="k">&nbsp;&nbsp;arguments:</span>
    <span class="c">&nbsp;&nbsp;&nbsp;&nbsp;# arguments dictionary</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    
    The following arguments are supported:
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancerid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_csharp" style="color: inherit; text-decoration: inherit;">Loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_csharp" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancerid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_go" style="color: inherit; text-decoration: inherit;">Loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_go" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancerid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_java" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_java" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancerid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_nodejs" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_nodejs" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancer_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancer_id_python" style="color: inherit; text-decoration: inherit;">loadbalancer_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_python" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="loadbalancerid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_yaml" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Load Balancer in which the Backend Address Pool exists.</dd><dt class="property-required"
                title="Required">
            <span id="name_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_yaml" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## getBackendAddressPool Result {#result}
    
    The following output properties are available:
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backendaddresses_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendaddresses_csharp" style="color: inherit; text-decoration: inherit;">Backend<wbr>Addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">List&lt;Pulumi.<wbr>Azure.<wbr>Lb.<wbr>Outputs.<wbr>Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address&gt;</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backendipconfigurations_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendipconfigurations_csharp" style="color: inherit; text-decoration: inherit;">Backend<wbr>Ip<wbr>Configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">List&lt;Pulumi.<wbr>Azure.<wbr>Lb.<wbr>Outputs.<wbr>Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration&gt;</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inboundnatrules_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrules_csharp" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancingrules_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancingrules_csharp" style="color: inherit; text-decoration: inherit;">Load<wbr>Balancing<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancerid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_csharp" style="color: inherit; text-decoration: inherit;">Loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_csharp" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outboundrules_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outboundrules_csharp" style="color: inherit; text-decoration: inherit;">Outbound<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backendaddresses_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendaddresses_go" style="color: inherit; text-decoration: inherit;">Backend<wbr>Addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">[]Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backendipconfigurations_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendipconfigurations_go" style="color: inherit; text-decoration: inherit;">Backend<wbr>Ip<wbr>Configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">[]Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inboundnatrules_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrules_go" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancingrules_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancingrules_go" style="color: inherit; text-decoration: inherit;">Load<wbr>Balancing<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancerid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_go" style="color: inherit; text-decoration: inherit;">Loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_go" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outboundrules_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outboundrules_go" style="color: inherit; text-decoration: inherit;">Outbound<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backendaddresses_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendaddresses_java" style="color: inherit; text-decoration: inherit;">backend<wbr>Addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">List&lt;Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address&gt;</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backendipconfigurations_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendipconfigurations_java" style="color: inherit; text-decoration: inherit;">backend<wbr>Ip<wbr>Configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">List&lt;Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration&gt;</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inboundnatrules_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrules_java" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancingrules_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancingrules_java" style="color: inherit; text-decoration: inherit;">load<wbr>Balancing<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancerid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_java" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_java" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outboundrules_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outboundrules_java" style="color: inherit; text-decoration: inherit;">outbound<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backendaddresses_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendaddresses_nodejs" style="color: inherit; text-decoration: inherit;">backend<wbr>Addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address[]</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backendipconfigurations_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendipconfigurations_nodejs" style="color: inherit; text-decoration: inherit;">backend<wbr>Ip<wbr>Configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration[]</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inboundnatrules_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrules_nodejs" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancingrules_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancingrules_nodejs" style="color: inherit; text-decoration: inherit;">load<wbr>Balancing<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancerid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_nodejs" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_nodejs" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outboundrules_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outboundrules_nodejs" style="color: inherit; text-decoration: inherit;">outbound<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backend_addresses_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backend_addresses_python" style="color: inherit; text-decoration: inherit;">backend_<wbr>addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">Sequence[Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address]</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backend_ip_configurations_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backend_ip_configurations_python" style="color: inherit; text-decoration: inherit;">backend_<wbr>ip_<wbr>configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">Sequence[Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration]</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inbound_nat_rules_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inbound_nat_rules_python" style="color: inherit; text-decoration: inherit;">inbound_<wbr>nat_<wbr>rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="load_balancing_rules_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#load_balancing_rules_python" style="color: inherit; text-decoration: inherit;">load_<wbr>balancing_<wbr>rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancer_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancer_id_python" style="color: inherit; text-decoration: inherit;">loadbalancer_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_python" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outbound_rules_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outbound_rules_python" style="color: inherit; text-decoration: inherit;">outbound_<wbr>rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="backendaddresses_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendaddresses_yaml" style="color: inherit; text-decoration: inherit;">backend<wbr>Addresses</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddress">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>A list of <code>backend_address</code> block as defined below.</dd><dt class="property-"
                title="">
            <span id="backendipconfigurations_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendipconfigurations_yaml" style="color: inherit; text-decoration: inherit;">backend<wbr>Ip<wbr>Configurations</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendipconfiguration">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>A list of references to IP addresses defined in network interfaces.</dd><dt class="property-"
                title="">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="inboundnatrules_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrules_yaml" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancingrules_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancingrules_yaml" style="color: inherit; text-decoration: inherit;">load<wbr>Balancing<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Rules associated with this Backend Address Pool.</dd><dt class="property-"
                title="">
            <span id="loadbalancerid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#loadbalancerid_yaml" style="color: inherit; text-decoration: inherit;">loadbalancer<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="name_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_yaml" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the Backend Address.</dd><dt class="property-"
                title="">
            <span id="outboundrules_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#outboundrules_yaml" style="color: inherit; text-decoration: inherit;">outbound<wbr>Rules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of the Load Balancing Outbound Rules associated with this Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## Supporting Types
    
    
    <h4 id="getbackendaddresspoolbackendaddress">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inboundnatruleportmappings_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatruleportmappings_csharp" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">List&lt;Pulumi.<wbr>Azure.<wbr>Lb.<wbr>Inputs.<wbr>Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping&gt;</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_csharp" style="color: inherit; text-decoration: inherit;">Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_csharp" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtualnetworkid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtualnetworkid_csharp" style="color: inherit; text-decoration: inherit;">Virtual<wbr>Network<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inboundnatruleportmappings_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatruleportmappings_go" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">[]Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_go" style="color: inherit; text-decoration: inherit;">Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_go" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtualnetworkid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtualnetworkid_go" style="color: inherit; text-decoration: inherit;">Virtual<wbr>Network<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inboundnatruleportmappings_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatruleportmappings_java" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">List&lt;Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping&gt;</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_java" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_java" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtualnetworkid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtualnetworkid_java" style="color: inherit; text-decoration: inherit;">virtual<wbr>Network<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inboundnatruleportmappings_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatruleportmappings_nodejs" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping[]</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_nodejs" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_nodejs" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtualnetworkid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtualnetworkid_nodejs" style="color: inherit; text-decoration: inherit;">virtual<wbr>Network<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inbound_nat_rule_port_mappings_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inbound_nat_rule_port_mappings_python" style="color: inherit; text-decoration: inherit;">inbound_<wbr>nat_<wbr>rule_<wbr>port_<wbr>mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">Sequence[Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping]</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ip_address_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ip_address_python" style="color: inherit; text-decoration: inherit;">ip_<wbr>address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_python" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtual_network_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtual_network_id_python" style="color: inherit; text-decoration: inherit;">virtual_<wbr>network_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="inboundnatruleportmappings_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatruleportmappings_yaml" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mappings</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getbackendaddresspoolbackendaddressinboundnatruleportmapping">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>A list of <code>inbound_nat_rule_port_mapping</code> block as defined below.</dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_yaml" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Static IP address for this Load Balancer within the Virtual Network.</dd><dt class="property-required"
                title="Required">
            <span id="name_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_yaml" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Specifies the name of the Backend Address Pool.</dd><dt class="property-required"
                title="Required">
            <span id="virtualnetworkid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtualnetworkid_yaml" style="color: inherit; text-decoration: inherit;">virtual<wbr>Network<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Virtual Network where the Backend Address of the Load Balancer exists.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getbackendaddresspoolbackendaddressinboundnatruleportmapping">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Address<wbr>Inbound<wbr>Nat<wbr>Rule<wbr>Port<wbr>Mapping</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backendport_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendport_csharp" style="color: inherit; text-decoration: inherit;">Backend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontendport_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontendport_csharp" style="color: inherit; text-decoration: inherit;">Frontend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inboundnatrulename_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrulename_csharp" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rule<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backendport_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendport_go" style="color: inherit; text-decoration: inherit;">Backend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontendport_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontendport_go" style="color: inherit; text-decoration: inherit;">Frontend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inboundnatrulename_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrulename_go" style="color: inherit; text-decoration: inherit;">Inbound<wbr>Nat<wbr>Rule<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backendport_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendport_java" style="color: inherit; text-decoration: inherit;">backend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontendport_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontendport_java" style="color: inherit; text-decoration: inherit;">frontend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inboundnatrulename_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrulename_java" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backendport_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendport_nodejs" style="color: inherit; text-decoration: inherit;">backend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontendport_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontendport_nodejs" style="color: inherit; text-decoration: inherit;">frontend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inboundnatrulename_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrulename_nodejs" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backend_port_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backend_port_python" style="color: inherit; text-decoration: inherit;">backend_<wbr>port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontend_port_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontend_port_python" style="color: inherit; text-decoration: inherit;">frontend_<wbr>port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inbound_nat_rule_name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inbound_nat_rule_name_python" style="color: inherit; text-decoration: inherit;">inbound_<wbr>nat_<wbr>rule_<wbr>name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="backendport_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backendport_yaml" style="color: inherit; text-decoration: inherit;">backend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Backend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="frontendport_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#frontendport_yaml" style="color: inherit; text-decoration: inherit;">frontend<wbr>Port</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Frontend Port of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd><dt class="property-required"
                title="Required">
            <span id="inboundnatrulename_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#inboundnatrulename_yaml" style="color: inherit; text-decoration: inherit;">inbound<wbr>Nat<wbr>Rule<wbr>Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the Load Balancing Inbound NAT Rules associated with this Backend Address Pool Address.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getbackendaddresspoolbackendipconfiguration">Get<wbr>Backend<wbr>Address<wbr>Pool<wbr>Backend<wbr>Ip<wbr>Configuration</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The ID of the Backend Address Pool.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    
    <h2 id="package-details">Package Details</h2>
    <dl class="package-details">
    	<dt>Repository</dt>
    	<dd><a href="https://github.com/pulumi/pulumi-azure">Azure Classic pulumi/pulumi-azure</a></dd>
    	<dt>License</dt>
    	<dd>Apache-2.0</dd>
    	<dt>Notes</dt>
    	<dd>This Pulumi package is based on the <a href="https://github.com/hashicorp/terraform-provider-azurerm"><code>azurerm</code> Terraform Provider</a>.</dd>
    </dl>
    
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi