1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. LocalNetworkGateway
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.network.LocalNetworkGateway

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    A common class for general resource information. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

    Other available API versions: 2016-06-01, 2016-09-01, 2019-08-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01.

    Example Usage

    CreateLocalNetworkGateway

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var localNetworkGateway = new AzureNative.Network.LocalNetworkGateway("localNetworkGateway", new()
        {
            Fqdn = "site1.contoso.com",
            GatewayIpAddress = "11.12.13.14",
            LocalNetworkAddressSpace = new AzureNative.Network.Inputs.AddressSpaceArgs
            {
                AddressPrefixes = new[]
                {
                    "10.1.0.0/16",
                },
            },
            LocalNetworkGatewayName = "localgw",
            Location = "Central US",
            ResourceGroupName = "rg1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/network/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := network.NewLocalNetworkGateway(ctx, "localNetworkGateway", &network.LocalNetworkGatewayArgs{
    			Fqdn:             pulumi.String("site1.contoso.com"),
    			GatewayIpAddress: pulumi.String("11.12.13.14"),
    			LocalNetworkAddressSpace: &network.AddressSpaceArgs{
    				AddressPrefixes: pulumi.StringArray{
    					pulumi.String("10.1.0.0/16"),
    				},
    			},
    			LocalNetworkGatewayName: pulumi.String("localgw"),
    			Location:                pulumi.String("Central US"),
    			ResourceGroupName:       pulumi.String("rg1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.network.LocalNetworkGateway;
    import com.pulumi.azurenative.network.LocalNetworkGatewayArgs;
    import com.pulumi.azurenative.network.inputs.AddressSpaceArgs;
    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 localNetworkGateway = new LocalNetworkGateway("localNetworkGateway", LocalNetworkGatewayArgs.builder()        
                .fqdn("site1.contoso.com")
                .gatewayIpAddress("11.12.13.14")
                .localNetworkAddressSpace(AddressSpaceArgs.builder()
                    .addressPrefixes("10.1.0.0/16")
                    .build())
                .localNetworkGatewayName("localgw")
                .location("Central US")
                .resourceGroupName("rg1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    local_network_gateway = azure_native.network.LocalNetworkGateway("localNetworkGateway",
        fqdn="site1.contoso.com",
        gateway_ip_address="11.12.13.14",
        local_network_address_space=azure_native.network.AddressSpaceArgs(
            address_prefixes=["10.1.0.0/16"],
        ),
        local_network_gateway_name="localgw",
        location="Central US",
        resource_group_name="rg1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const localNetworkGateway = new azure_native.network.LocalNetworkGateway("localNetworkGateway", {
        fqdn: "site1.contoso.com",
        gatewayIpAddress: "11.12.13.14",
        localNetworkAddressSpace: {
            addressPrefixes: ["10.1.0.0/16"],
        },
        localNetworkGatewayName: "localgw",
        location: "Central US",
        resourceGroupName: "rg1",
    });
    
    resources:
      localNetworkGateway:
        type: azure-native:network:LocalNetworkGateway
        properties:
          fqdn: site1.contoso.com
          gatewayIpAddress: 11.12.13.14
          localNetworkAddressSpace:
            addressPrefixes:
              - 10.1.0.0/16
          localNetworkGatewayName: localgw
          location: Central US
          resourceGroupName: rg1
    

    Create LocalNetworkGateway Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new LocalNetworkGateway(name: string, args: LocalNetworkGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def LocalNetworkGateway(resource_name: str,
                            args: LocalNetworkGatewayInitArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def LocalNetworkGateway(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            bgp_settings: Optional[BgpSettingsArgs] = None,
                            fqdn: Optional[str] = None,
                            gateway_ip_address: Optional[str] = None,
                            id: Optional[str] = None,
                            local_network_address_space: Optional[AddressSpaceArgs] = None,
                            local_network_gateway_name: Optional[str] = None,
                            location: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None)
    func NewLocalNetworkGateway(ctx *Context, name string, args LocalNetworkGatewayArgs, opts ...ResourceOption) (*LocalNetworkGateway, error)
    public LocalNetworkGateway(string name, LocalNetworkGatewayArgs args, CustomResourceOptions? opts = null)
    public LocalNetworkGateway(String name, LocalNetworkGatewayArgs args)
    public LocalNetworkGateway(String name, LocalNetworkGatewayArgs args, CustomResourceOptions options)
    
    type: azure-native:network:LocalNetworkGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LocalNetworkGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args LocalNetworkGatewayInitArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args LocalNetworkGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LocalNetworkGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LocalNetworkGatewayArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var localNetworkGatewayResource = new AzureNative.Network.LocalNetworkGateway("localNetworkGatewayResource", new()
    {
        ResourceGroupName = "string",
        BgpSettings = new AzureNative.Network.Inputs.BgpSettingsArgs
        {
            Asn = 0,
            BgpPeeringAddress = "string",
            BgpPeeringAddresses = new[]
            {
                new AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressArgs
                {
                    CustomBgpIpAddresses = new[]
                    {
                        "string",
                    },
                    IpconfigurationId = "string",
                },
            },
            PeerWeight = 0,
        },
        Fqdn = "string",
        GatewayIpAddress = "string",
        Id = "string",
        LocalNetworkAddressSpace = new AzureNative.Network.Inputs.AddressSpaceArgs
        {
            AddressPrefixes = new[]
            {
                "string",
            },
        },
        LocalNetworkGatewayName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := network.NewLocalNetworkGateway(ctx, "localNetworkGatewayResource", &network.LocalNetworkGatewayArgs{
    ResourceGroupName: pulumi.String("string"),
    BgpSettings: &network.BgpSettingsArgs{
    Asn: pulumi.Float64(0),
    BgpPeeringAddress: pulumi.String("string"),
    BgpPeeringAddresses: network.IPConfigurationBgpPeeringAddressArray{
    &network.IPConfigurationBgpPeeringAddressArgs{
    CustomBgpIpAddresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    IpconfigurationId: pulumi.String("string"),
    },
    },
    PeerWeight: pulumi.Int(0),
    },
    Fqdn: pulumi.String("string"),
    GatewayIpAddress: pulumi.String("string"),
    Id: pulumi.String("string"),
    LocalNetworkAddressSpace: &network.AddressSpaceArgs{
    AddressPrefixes: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    LocalNetworkGatewayName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var localNetworkGatewayResource = new LocalNetworkGateway("localNetworkGatewayResource", LocalNetworkGatewayArgs.builder()        
        .resourceGroupName("string")
        .bgpSettings(BgpSettingsArgs.builder()
            .asn(0)
            .bgpPeeringAddress("string")
            .bgpPeeringAddresses(IPConfigurationBgpPeeringAddressArgs.builder()
                .customBgpIpAddresses("string")
                .ipconfigurationId("string")
                .build())
            .peerWeight(0)
            .build())
        .fqdn("string")
        .gatewayIpAddress("string")
        .id("string")
        .localNetworkAddressSpace(AddressSpaceArgs.builder()
            .addressPrefixes("string")
            .build())
        .localNetworkGatewayName("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    local_network_gateway_resource = azure_native.network.LocalNetworkGateway("localNetworkGatewayResource",
        resource_group_name="string",
        bgp_settings=azure_native.network.BgpSettingsArgs(
            asn=0,
            bgp_peering_address="string",
            bgp_peering_addresses=[azure_native.network.IPConfigurationBgpPeeringAddressArgs(
                custom_bgp_ip_addresses=["string"],
                ipconfiguration_id="string",
            )],
            peer_weight=0,
        ),
        fqdn="string",
        gateway_ip_address="string",
        id="string",
        local_network_address_space=azure_native.network.AddressSpaceArgs(
            address_prefixes=["string"],
        ),
        local_network_gateway_name="string",
        location="string",
        tags={
            "string": "string",
        })
    
    const localNetworkGatewayResource = new azure_native.network.LocalNetworkGateway("localNetworkGatewayResource", {
        resourceGroupName: "string",
        bgpSettings: {
            asn: 0,
            bgpPeeringAddress: "string",
            bgpPeeringAddresses: [{
                customBgpIpAddresses: ["string"],
                ipconfigurationId: "string",
            }],
            peerWeight: 0,
        },
        fqdn: "string",
        gatewayIpAddress: "string",
        id: "string",
        localNetworkAddressSpace: {
            addressPrefixes: ["string"],
        },
        localNetworkGatewayName: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:network:LocalNetworkGateway
    properties:
        bgpSettings:
            asn: 0
            bgpPeeringAddress: string
            bgpPeeringAddresses:
                - customBgpIpAddresses:
                    - string
                  ipconfigurationId: string
            peerWeight: 0
        fqdn: string
        gatewayIpAddress: string
        id: string
        localNetworkAddressSpace:
            addressPrefixes:
                - string
        localNetworkGatewayName: string
        location: string
        resourceGroupName: string
        tags:
            string: string
    

    LocalNetworkGateway Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The LocalNetworkGateway resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group.
    BgpSettings Pulumi.AzureNative.Network.Inputs.BgpSettings
    Local network gateway's BGP speaker settings.
    Fqdn string
    FQDN of local network gateway.
    GatewayIpAddress string
    IP address of local network gateway.
    Id string
    Resource ID.
    LocalNetworkAddressSpace Pulumi.AzureNative.Network.Inputs.AddressSpace
    Local network site address space.
    LocalNetworkGatewayName string
    The name of the local network gateway.
    Location string
    Resource location.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group.
    BgpSettings BgpSettingsArgs
    Local network gateway's BGP speaker settings.
    Fqdn string
    FQDN of local network gateway.
    GatewayIpAddress string
    IP address of local network gateway.
    Id string
    Resource ID.
    LocalNetworkAddressSpace AddressSpaceArgs
    Local network site address space.
    LocalNetworkGatewayName string
    The name of the local network gateway.
    Location string
    Resource location.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group.
    bgpSettings BgpSettings
    Local network gateway's BGP speaker settings.
    fqdn String
    FQDN of local network gateway.
    gatewayIpAddress String
    IP address of local network gateway.
    id String
    Resource ID.
    localNetworkAddressSpace AddressSpace
    Local network site address space.
    localNetworkGatewayName String
    The name of the local network gateway.
    location String
    Resource location.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group.
    bgpSettings BgpSettings
    Local network gateway's BGP speaker settings.
    fqdn string
    FQDN of local network gateway.
    gatewayIpAddress string
    IP address of local network gateway.
    id string
    Resource ID.
    localNetworkAddressSpace AddressSpace
    Local network site address space.
    localNetworkGatewayName string
    The name of the local network gateway.
    location string
    Resource location.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group.
    bgp_settings BgpSettingsArgs
    Local network gateway's BGP speaker settings.
    fqdn str
    FQDN of local network gateway.
    gateway_ip_address str
    IP address of local network gateway.
    id str
    Resource ID.
    local_network_address_space AddressSpaceArgs
    Local network site address space.
    local_network_gateway_name str
    The name of the local network gateway.
    location str
    Resource location.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group.
    bgpSettings Property Map
    Local network gateway's BGP speaker settings.
    fqdn String
    FQDN of local network gateway.
    gatewayIpAddress String
    IP address of local network gateway.
    id String
    Resource ID.
    localNetworkAddressSpace Property Map
    Local network site address space.
    localNetworkGatewayName String
    The name of the local network gateway.
    location String
    Resource location.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LocalNetworkGateway resource produces the following output properties:

    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The provisioning state of the local network gateway resource.
    ResourceGuid string
    The resource GUID property of the local network gateway resource.
    Type string
    Resource type.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The provisioning state of the local network gateway resource.
    ResourceGuid string
    The resource GUID property of the local network gateway resource.
    Type string
    Resource type.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The provisioning state of the local network gateway resource.
    resourceGuid String
    The resource GUID property of the local network gateway resource.
    type String
    Resource type.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name.
    provisioningState string
    The provisioning state of the local network gateway resource.
    resourceGuid string
    The resource GUID property of the local network gateway resource.
    type string
    Resource type.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name.
    provisioning_state str
    The provisioning state of the local network gateway resource.
    resource_guid str
    The resource GUID property of the local network gateway resource.
    type str
    Resource type.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The provisioning state of the local network gateway resource.
    resourceGuid String
    The resource GUID property of the local network gateway resource.
    type String
    Resource type.

    Supporting Types

    AddressSpace, AddressSpaceArgs

    AddressPrefixes List<string>
    A list of address blocks reserved for this virtual network in CIDR notation.
    AddressPrefixes []string
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes List<String>
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes string[]
    A list of address blocks reserved for this virtual network in CIDR notation.
    address_prefixes Sequence[str]
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes List<String>
    A list of address blocks reserved for this virtual network in CIDR notation.

    AddressSpaceResponse, AddressSpaceResponseArgs

    AddressPrefixes List<string>
    A list of address blocks reserved for this virtual network in CIDR notation.
    AddressPrefixes []string
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes List<String>
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes string[]
    A list of address blocks reserved for this virtual network in CIDR notation.
    address_prefixes Sequence[str]
    A list of address blocks reserved for this virtual network in CIDR notation.
    addressPrefixes List<String>
    A list of address blocks reserved for this virtual network in CIDR notation.

    BgpSettings, BgpSettingsArgs

    Asn double
    The BGP speaker's ASN.
    BgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    BgpPeeringAddresses List<Pulumi.AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddress>
    BGP peering address with IP configuration ID for virtual network gateway.
    PeerWeight int
    The weight added to routes learned from this BGP speaker.
    Asn float64
    The BGP speaker's ASN.
    BgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    BgpPeeringAddresses []IPConfigurationBgpPeeringAddress
    BGP peering address with IP configuration ID for virtual network gateway.
    PeerWeight int
    The weight added to routes learned from this BGP speaker.
    asn Double
    The BGP speaker's ASN.
    bgpPeeringAddress String
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses List<IPConfigurationBgpPeeringAddress>
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight Integer
    The weight added to routes learned from this BGP speaker.
    asn number
    The BGP speaker's ASN.
    bgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses IPConfigurationBgpPeeringAddress[]
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight number
    The weight added to routes learned from this BGP speaker.
    asn float
    The BGP speaker's ASN.
    bgp_peering_address str
    The BGP peering address and BGP identifier of this BGP speaker.
    bgp_peering_addresses Sequence[IPConfigurationBgpPeeringAddress]
    BGP peering address with IP configuration ID for virtual network gateway.
    peer_weight int
    The weight added to routes learned from this BGP speaker.
    asn Number
    The BGP speaker's ASN.
    bgpPeeringAddress String
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses List<Property Map>
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight Number
    The weight added to routes learned from this BGP speaker.

    BgpSettingsResponse, BgpSettingsResponseArgs

    Asn double
    The BGP speaker's ASN.
    BgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    BgpPeeringAddresses List<Pulumi.AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressResponse>
    BGP peering address with IP configuration ID for virtual network gateway.
    PeerWeight int
    The weight added to routes learned from this BGP speaker.
    Asn float64
    The BGP speaker's ASN.
    BgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    BgpPeeringAddresses []IPConfigurationBgpPeeringAddressResponse
    BGP peering address with IP configuration ID for virtual network gateway.
    PeerWeight int
    The weight added to routes learned from this BGP speaker.
    asn Double
    The BGP speaker's ASN.
    bgpPeeringAddress String
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses List<IPConfigurationBgpPeeringAddressResponse>
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight Integer
    The weight added to routes learned from this BGP speaker.
    asn number
    The BGP speaker's ASN.
    bgpPeeringAddress string
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses IPConfigurationBgpPeeringAddressResponse[]
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight number
    The weight added to routes learned from this BGP speaker.
    asn float
    The BGP speaker's ASN.
    bgp_peering_address str
    The BGP peering address and BGP identifier of this BGP speaker.
    bgp_peering_addresses Sequence[IPConfigurationBgpPeeringAddressResponse]
    BGP peering address with IP configuration ID for virtual network gateway.
    peer_weight int
    The weight added to routes learned from this BGP speaker.
    asn Number
    The BGP speaker's ASN.
    bgpPeeringAddress String
    The BGP peering address and BGP identifier of this BGP speaker.
    bgpPeeringAddresses List<Property Map>
    BGP peering address with IP configuration ID for virtual network gateway.
    peerWeight Number
    The weight added to routes learned from this BGP speaker.

    IPConfigurationBgpPeeringAddress, IPConfigurationBgpPeeringAddressArgs

    CustomBgpIpAddresses List<string>
    The list of custom BGP peering addresses which belong to IP configuration.
    IpconfigurationId string
    The ID of IP configuration which belongs to gateway.
    CustomBgpIpAddresses []string
    The list of custom BGP peering addresses which belong to IP configuration.
    IpconfigurationId string
    The ID of IP configuration which belongs to gateway.
    customBgpIpAddresses List<String>
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId String
    The ID of IP configuration which belongs to gateway.
    customBgpIpAddresses string[]
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId string
    The ID of IP configuration which belongs to gateway.
    custom_bgp_ip_addresses Sequence[str]
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfiguration_id str
    The ID of IP configuration which belongs to gateway.
    customBgpIpAddresses List<String>
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId String
    The ID of IP configuration which belongs to gateway.

    IPConfigurationBgpPeeringAddressResponse, IPConfigurationBgpPeeringAddressResponseArgs

    DefaultBgpIpAddresses List<string>
    The list of default BGP peering addresses which belong to IP configuration.
    TunnelIpAddresses List<string>
    The list of tunnel public IP addresses which belong to IP configuration.
    CustomBgpIpAddresses List<string>
    The list of custom BGP peering addresses which belong to IP configuration.
    IpconfigurationId string
    The ID of IP configuration which belongs to gateway.
    DefaultBgpIpAddresses []string
    The list of default BGP peering addresses which belong to IP configuration.
    TunnelIpAddresses []string
    The list of tunnel public IP addresses which belong to IP configuration.
    CustomBgpIpAddresses []string
    The list of custom BGP peering addresses which belong to IP configuration.
    IpconfigurationId string
    The ID of IP configuration which belongs to gateway.
    defaultBgpIpAddresses List<String>
    The list of default BGP peering addresses which belong to IP configuration.
    tunnelIpAddresses List<String>
    The list of tunnel public IP addresses which belong to IP configuration.
    customBgpIpAddresses List<String>
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId String
    The ID of IP configuration which belongs to gateway.
    defaultBgpIpAddresses string[]
    The list of default BGP peering addresses which belong to IP configuration.
    tunnelIpAddresses string[]
    The list of tunnel public IP addresses which belong to IP configuration.
    customBgpIpAddresses string[]
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId string
    The ID of IP configuration which belongs to gateway.
    default_bgp_ip_addresses Sequence[str]
    The list of default BGP peering addresses which belong to IP configuration.
    tunnel_ip_addresses Sequence[str]
    The list of tunnel public IP addresses which belong to IP configuration.
    custom_bgp_ip_addresses Sequence[str]
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfiguration_id str
    The ID of IP configuration which belongs to gateway.
    defaultBgpIpAddresses List<String>
    The list of default BGP peering addresses which belong to IP configuration.
    tunnelIpAddresses List<String>
    The list of tunnel public IP addresses which belong to IP configuration.
    customBgpIpAddresses List<String>
    The list of custom BGP peering addresses which belong to IP configuration.
    ipconfigurationId String
    The ID of IP configuration which belongs to gateway.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:network:LocalNetworkGateway localgw /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi