1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. NetworkVirtualApplianceConnection
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.network.NetworkVirtualApplianceConnection

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    NetworkVirtualApplianceConnection resource.

    Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2023-06-01.

    Other available API versions: 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native network [ApiVersion]. See the version guide for details.

    Example Usage

    NetworkVirtualApplianceConnectionPut

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var networkVirtualApplianceConnection = new AzureNative.Network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnection", new()
        {
            ConnectionName = "connection1",
            NetworkVirtualApplianceName = "nva1",
            Properties = new AzureNative.Network.Inputs.NetworkVirtualApplianceConnectionPropertiesArgs
            {
                Asn = 64512,
                BgpPeerAddress = new[]
                {
                    "169.254.16.13",
                    "169.254.16.14",
                },
                EnableInternetSecurity = false,
                Name = "connection1",
                RoutingConfiguration = new AzureNative.Network.Inputs.RoutingConfigurationArgs
                {
                    AssociatedRouteTable = new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                    },
                    InboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1",
                    },
                    OutboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2",
                    },
                    PropagatedRouteTables = new AzureNative.Network.Inputs.PropagatedRouteTableArgs
                    {
                        Ids = new[]
                        {
                            new AzureNative.Network.Inputs.SubResourceArgs
                            {
                                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                            },
                        },
                        Labels = new[]
                        {
                            "label1",
                        },
                    },
                },
                TunnelIdentifier = 0,
            },
            ResourceGroupName = "rg1",
        });
    
    });
    
    package main
    
    import (
    	network "github.com/pulumi/pulumi-azure-native-sdk/network/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := network.NewNetworkVirtualApplianceConnection(ctx, "networkVirtualApplianceConnection", &network.NetworkVirtualApplianceConnectionArgs{
    			ConnectionName:              pulumi.String("connection1"),
    			NetworkVirtualApplianceName: pulumi.String("nva1"),
    			Properties: &network.NetworkVirtualApplianceConnectionPropertiesArgs{
    				Asn: pulumi.Float64(64512),
    				BgpPeerAddress: pulumi.StringArray{
    					pulumi.String("169.254.16.13"),
    					pulumi.String("169.254.16.14"),
    				},
    				EnableInternetSecurity: pulumi.Bool(false),
    				Name:                   pulumi.String("connection1"),
    				RoutingConfiguration: &network.RoutingConfigurationArgs{
    					AssociatedRouteTable: &network.SubResourceArgs{
    						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1"),
    					},
    					InboundRouteMap: &network.SubResourceArgs{
    						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1"),
    					},
    					OutboundRouteMap: &network.SubResourceArgs{
    						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2"),
    					},
    					PropagatedRouteTables: &network.PropagatedRouteTableArgs{
    						Ids: network.SubResourceArray{
    							&network.SubResourceArgs{
    								Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1"),
    							},
    						},
    						Labels: pulumi.StringArray{
    							pulumi.String("label1"),
    						},
    					},
    				},
    				TunnelIdentifier: pulumi.Float64(0),
    			},
    			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.NetworkVirtualApplianceConnection;
    import com.pulumi.azurenative.network.NetworkVirtualApplianceConnectionArgs;
    import com.pulumi.azurenative.network.inputs.NetworkVirtualApplianceConnectionPropertiesArgs;
    import com.pulumi.azurenative.network.inputs.RoutingConfigurationArgs;
    import com.pulumi.azurenative.network.inputs.SubResourceArgs;
    import com.pulumi.azurenative.network.inputs.PropagatedRouteTableArgs;
    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 networkVirtualApplianceConnection = new NetworkVirtualApplianceConnection("networkVirtualApplianceConnection", NetworkVirtualApplianceConnectionArgs.builder()
                .connectionName("connection1")
                .networkVirtualApplianceName("nva1")
                .properties(NetworkVirtualApplianceConnectionPropertiesArgs.builder()
                    .asn(64512.0)
                    .bgpPeerAddress(                
                        "169.254.16.13",
                        "169.254.16.14")
                    .enableInternetSecurity(false)
                    .name("connection1")
                    .routingConfiguration(RoutingConfigurationArgs.builder()
                        .associatedRouteTable(SubResourceArgs.builder()
                            .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1")
                            .build())
                        .inboundRouteMap(SubResourceArgs.builder()
                            .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1")
                            .build())
                        .outboundRouteMap(SubResourceArgs.builder()
                            .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2")
                            .build())
                        .propagatedRouteTables(PropagatedRouteTableArgs.builder()
                            .ids(SubResourceArgs.builder()
                                .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1")
                                .build())
                            .labels("label1")
                            .build())
                        .build())
                    .tunnelIdentifier(0.0)
                    .build())
                .resourceGroupName("rg1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const networkVirtualApplianceConnection = new azure_native.network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnection", {
        connectionName: "connection1",
        networkVirtualApplianceName: "nva1",
        properties: {
            asn: 64512,
            bgpPeerAddress: [
                "169.254.16.13",
                "169.254.16.14",
            ],
            enableInternetSecurity: false,
            name: "connection1",
            routingConfiguration: {
                associatedRouteTable: {
                    id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                },
                inboundRouteMap: {
                    id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1",
                },
                outboundRouteMap: {
                    id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2",
                },
                propagatedRouteTables: {
                    ids: [{
                        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                    }],
                    labels: ["label1"],
                },
            },
            tunnelIdentifier: 0,
        },
        resourceGroupName: "rg1",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    network_virtual_appliance_connection = azure_native.network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnection",
        connection_name="connection1",
        network_virtual_appliance_name="nva1",
        properties={
            "asn": 64512,
            "bgp_peer_address": [
                "169.254.16.13",
                "169.254.16.14",
            ],
            "enable_internet_security": False,
            "name": "connection1",
            "routing_configuration": {
                "associated_route_table": {
                    "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                },
                "inbound_route_map": {
                    "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1",
                },
                "outbound_route_map": {
                    "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2",
                },
                "propagated_route_tables": {
                    "ids": [{
                        "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
                    }],
                    "labels": ["label1"],
                },
            },
            "tunnel_identifier": 0,
        },
        resource_group_name="rg1")
    
    resources:
      networkVirtualApplianceConnection:
        type: azure-native:network:NetworkVirtualApplianceConnection
        properties:
          connectionName: connection1
          networkVirtualApplianceName: nva1
          properties:
            asn: 64512
            bgpPeerAddress:
              - 169.254.16.13
              - 169.254.16.14
            enableInternetSecurity: false
            name: connection1
            routingConfiguration:
              associatedRouteTable:
                id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1
              inboundRouteMap:
                id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap1
              outboundRouteMap:
                id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/routeMaps/routeMap2
              propagatedRouteTables:
                ids:
                  - id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1
                labels:
                  - label1
            tunnelIdentifier: 0
          resourceGroupName: rg1
    

    Create NetworkVirtualApplianceConnection Resource

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

    Constructor syntax

    new NetworkVirtualApplianceConnection(name: string, args: NetworkVirtualApplianceConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkVirtualApplianceConnection(resource_name: str,
                                          args: NetworkVirtualApplianceConnectionArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkVirtualApplianceConnection(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          network_virtual_appliance_name: Optional[str] = None,
                                          resource_group_name: Optional[str] = None,
                                          connection_name: Optional[str] = None,
                                          id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          properties: Optional[NetworkVirtualApplianceConnectionPropertiesArgs] = None)
    func NewNetworkVirtualApplianceConnection(ctx *Context, name string, args NetworkVirtualApplianceConnectionArgs, opts ...ResourceOption) (*NetworkVirtualApplianceConnection, error)
    public NetworkVirtualApplianceConnection(string name, NetworkVirtualApplianceConnectionArgs args, CustomResourceOptions? opts = null)
    public NetworkVirtualApplianceConnection(String name, NetworkVirtualApplianceConnectionArgs args)
    public NetworkVirtualApplianceConnection(String name, NetworkVirtualApplianceConnectionArgs args, CustomResourceOptions options)
    
    type: azure-native:network:NetworkVirtualApplianceConnection
    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 NetworkVirtualApplianceConnectionArgs
    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 NetworkVirtualApplianceConnectionArgs
    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 NetworkVirtualApplianceConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkVirtualApplianceConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkVirtualApplianceConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var networkVirtualApplianceConnectionResource = new AzureNative.Network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnectionResource", new()
    {
        NetworkVirtualApplianceName = "string",
        ResourceGroupName = "string",
        ConnectionName = "string",
        Id = "string",
        Name = "string",
        Properties = new AzureNative.Network.Inputs.NetworkVirtualApplianceConnectionPropertiesArgs
        {
            Asn = 0,
            BgpPeerAddress = new[]
            {
                "string",
            },
            EnableInternetSecurity = false,
            Name = "string",
            RoutingConfiguration = new AzureNative.Network.Inputs.RoutingConfigurationArgs
            {
                AssociatedRouteTable = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                InboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                OutboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                PropagatedRouteTables = new AzureNative.Network.Inputs.PropagatedRouteTableArgs
                {
                    Ids = new[]
                    {
                        new AzureNative.Network.Inputs.SubResourceArgs
                        {
                            Id = "string",
                        },
                    },
                    Labels = new[]
                    {
                        "string",
                    },
                },
                VnetRoutes = new AzureNative.Network.Inputs.VnetRouteArgs
                {
                    StaticRoutes = new[]
                    {
                        new AzureNative.Network.Inputs.StaticRouteArgs
                        {
                            AddressPrefixes = new[]
                            {
                                "string",
                            },
                            Name = "string",
                            NextHopIpAddress = "string",
                        },
                    },
                    StaticRoutesConfig = new AzureNative.Network.Inputs.StaticRoutesConfigArgs
                    {
                        VnetLocalRouteOverrideCriteria = "string",
                    },
                },
            },
            TunnelIdentifier = 0,
        },
    });
    
    example, err := network.NewNetworkVirtualApplianceConnection(ctx, "networkVirtualApplianceConnectionResource", &network.NetworkVirtualApplianceConnectionArgs{
    	NetworkVirtualApplianceName: pulumi.String("string"),
    	ResourceGroupName:           pulumi.String("string"),
    	ConnectionName:              pulumi.String("string"),
    	Id:                          pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	Properties: &network.NetworkVirtualApplianceConnectionPropertiesArgs{
    		Asn: pulumi.Float64(0),
    		BgpPeerAddress: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		EnableInternetSecurity: pulumi.Bool(false),
    		Name:                   pulumi.String("string"),
    		RoutingConfiguration: &network.RoutingConfigurationArgs{
    			AssociatedRouteTable: &network.SubResourceArgs{
    				Id: pulumi.String("string"),
    			},
    			InboundRouteMap: &network.SubResourceArgs{
    				Id: pulumi.String("string"),
    			},
    			OutboundRouteMap: &network.SubResourceArgs{
    				Id: pulumi.String("string"),
    			},
    			PropagatedRouteTables: &network.PropagatedRouteTableArgs{
    				Ids: network.SubResourceArray{
    					&network.SubResourceArgs{
    						Id: pulumi.String("string"),
    					},
    				},
    				Labels: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    			VnetRoutes: &network.VnetRouteArgs{
    				StaticRoutes: network.StaticRouteArray{
    					&network.StaticRouteArgs{
    						AddressPrefixes: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Name:             pulumi.String("string"),
    						NextHopIpAddress: pulumi.String("string"),
    					},
    				},
    				StaticRoutesConfig: &network.StaticRoutesConfigArgs{
    					VnetLocalRouteOverrideCriteria: pulumi.String("string"),
    				},
    			},
    		},
    		TunnelIdentifier: pulumi.Float64(0),
    	},
    })
    
    var networkVirtualApplianceConnectionResource = new NetworkVirtualApplianceConnection("networkVirtualApplianceConnectionResource", NetworkVirtualApplianceConnectionArgs.builder()
        .networkVirtualApplianceName("string")
        .resourceGroupName("string")
        .connectionName("string")
        .id("string")
        .name("string")
        .properties(NetworkVirtualApplianceConnectionPropertiesArgs.builder()
            .asn(0)
            .bgpPeerAddress("string")
            .enableInternetSecurity(false)
            .name("string")
            .routingConfiguration(RoutingConfigurationArgs.builder()
                .associatedRouteTable(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .inboundRouteMap(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .outboundRouteMap(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .propagatedRouteTables(PropagatedRouteTableArgs.builder()
                    .ids(SubResourceArgs.builder()
                        .id("string")
                        .build())
                    .labels("string")
                    .build())
                .vnetRoutes(VnetRouteArgs.builder()
                    .staticRoutes(StaticRouteArgs.builder()
                        .addressPrefixes("string")
                        .name("string")
                        .nextHopIpAddress("string")
                        .build())
                    .staticRoutesConfig(StaticRoutesConfigArgs.builder()
                        .vnetLocalRouteOverrideCriteria("string")
                        .build())
                    .build())
                .build())
            .tunnelIdentifier(0)
            .build())
        .build());
    
    network_virtual_appliance_connection_resource = azure_native.network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnectionResource",
        network_virtual_appliance_name="string",
        resource_group_name="string",
        connection_name="string",
        id="string",
        name="string",
        properties={
            "asn": 0,
            "bgp_peer_address": ["string"],
            "enable_internet_security": False,
            "name": "string",
            "routing_configuration": {
                "associated_route_table": {
                    "id": "string",
                },
                "inbound_route_map": {
                    "id": "string",
                },
                "outbound_route_map": {
                    "id": "string",
                },
                "propagated_route_tables": {
                    "ids": [{
                        "id": "string",
                    }],
                    "labels": ["string"],
                },
                "vnet_routes": {
                    "static_routes": [{
                        "address_prefixes": ["string"],
                        "name": "string",
                        "next_hop_ip_address": "string",
                    }],
                    "static_routes_config": {
                        "vnet_local_route_override_criteria": "string",
                    },
                },
            },
            "tunnel_identifier": 0,
        })
    
    const networkVirtualApplianceConnectionResource = new azure_native.network.NetworkVirtualApplianceConnection("networkVirtualApplianceConnectionResource", {
        networkVirtualApplianceName: "string",
        resourceGroupName: "string",
        connectionName: "string",
        id: "string",
        name: "string",
        properties: {
            asn: 0,
            bgpPeerAddress: ["string"],
            enableInternetSecurity: false,
            name: "string",
            routingConfiguration: {
                associatedRouteTable: {
                    id: "string",
                },
                inboundRouteMap: {
                    id: "string",
                },
                outboundRouteMap: {
                    id: "string",
                },
                propagatedRouteTables: {
                    ids: [{
                        id: "string",
                    }],
                    labels: ["string"],
                },
                vnetRoutes: {
                    staticRoutes: [{
                        addressPrefixes: ["string"],
                        name: "string",
                        nextHopIpAddress: "string",
                    }],
                    staticRoutesConfig: {
                        vnetLocalRouteOverrideCriteria: "string",
                    },
                },
            },
            tunnelIdentifier: 0,
        },
    });
    
    type: azure-native:network:NetworkVirtualApplianceConnection
    properties:
        connectionName: string
        id: string
        name: string
        networkVirtualApplianceName: string
        properties:
            asn: 0
            bgpPeerAddress:
                - string
            enableInternetSecurity: false
            name: string
            routingConfiguration:
                associatedRouteTable:
                    id: string
                inboundRouteMap:
                    id: string
                outboundRouteMap:
                    id: string
                propagatedRouteTables:
                    ids:
                        - id: string
                    labels:
                        - string
                vnetRoutes:
                    staticRoutes:
                        - addressPrefixes:
                            - string
                          name: string
                          nextHopIpAddress: string
                    staticRoutesConfig:
                        vnetLocalRouteOverrideCriteria: string
            tunnelIdentifier: 0
        resourceGroupName: string
    

    NetworkVirtualApplianceConnection Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NetworkVirtualApplianceConnection resource accepts the following input properties:

    NetworkVirtualApplianceName string
    The name of the Network Virtual Appliance.
    ResourceGroupName string
    The name of the resource group.
    ConnectionName string
    The name of the NVA connection.
    Id string
    Resource ID.
    Name string
    The name of the resource.
    Properties Pulumi.AzureNative.Network.Inputs.NetworkVirtualApplianceConnectionProperties
    Properties of the express route connection.
    NetworkVirtualApplianceName string
    The name of the Network Virtual Appliance.
    ResourceGroupName string
    The name of the resource group.
    ConnectionName string
    The name of the NVA connection.
    Id string
    Resource ID.
    Name string
    The name of the resource.
    Properties NetworkVirtualApplianceConnectionPropertiesArgs
    Properties of the express route connection.
    networkVirtualApplianceName String
    The name of the Network Virtual Appliance.
    resourceGroupName String
    The name of the resource group.
    connectionName String
    The name of the NVA connection.
    id String
    Resource ID.
    name String
    The name of the resource.
    properties NetworkVirtualApplianceConnectionProperties
    Properties of the express route connection.
    networkVirtualApplianceName string
    The name of the Network Virtual Appliance.
    resourceGroupName string
    The name of the resource group.
    connectionName string
    The name of the NVA connection.
    id string
    Resource ID.
    name string
    The name of the resource.
    properties NetworkVirtualApplianceConnectionProperties
    Properties of the express route connection.
    network_virtual_appliance_name str
    The name of the Network Virtual Appliance.
    resource_group_name str
    The name of the resource group.
    connection_name str
    The name of the NVA connection.
    id str
    Resource ID.
    name str
    The name of the resource.
    properties NetworkVirtualApplianceConnectionPropertiesArgs
    Properties of the express route connection.
    networkVirtualApplianceName String
    The name of the Network Virtual Appliance.
    resourceGroupName String
    The name of the resource group.
    connectionName String
    The name of the NVA connection.
    id String
    Resource ID.
    name String
    The name of the resource.
    properties Property Map
    Properties of the express route connection.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    NetworkVirtualApplianceConnectionProperties, NetworkVirtualApplianceConnectionPropertiesArgs

    Asn double
    Network Virtual Appliance ASN.
    BgpPeerAddress List<string>
    List of bgpPeerAddresses for the NVA instances
    EnableInternetSecurity bool
    Enable internet security.
    Name string
    The name of the resource.
    RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfiguration
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    TunnelIdentifier double
    Unique identifier for the connection.
    Asn float64
    Network Virtual Appliance ASN.
    BgpPeerAddress []string
    List of bgpPeerAddresses for the NVA instances
    EnableInternetSecurity bool
    Enable internet security.
    Name string
    The name of the resource.
    RoutingConfiguration RoutingConfiguration
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    TunnelIdentifier float64
    Unique identifier for the connection.
    asn Double
    Network Virtual Appliance ASN.
    bgpPeerAddress List<String>
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity Boolean
    Enable internet security.
    name String
    The name of the resource.
    routingConfiguration RoutingConfiguration
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier Double
    Unique identifier for the connection.
    asn number
    Network Virtual Appliance ASN.
    bgpPeerAddress string[]
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity boolean
    Enable internet security.
    name string
    The name of the resource.
    routingConfiguration RoutingConfiguration
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier number
    Unique identifier for the connection.
    asn float
    Network Virtual Appliance ASN.
    bgp_peer_address Sequence[str]
    List of bgpPeerAddresses for the NVA instances
    enable_internet_security bool
    Enable internet security.
    name str
    The name of the resource.
    routing_configuration RoutingConfiguration
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnel_identifier float
    Unique identifier for the connection.
    asn Number
    Network Virtual Appliance ASN.
    bgpPeerAddress List<String>
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity Boolean
    Enable internet security.
    name String
    The name of the resource.
    routingConfiguration Property Map
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier Number
    Unique identifier for the connection.

    NetworkVirtualApplianceConnectionPropertiesResponse, NetworkVirtualApplianceConnectionPropertiesResponseArgs

    ProvisioningState string
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    Asn double
    Network Virtual Appliance ASN.
    BgpPeerAddress List<string>
    List of bgpPeerAddresses for the NVA instances
    EnableInternetSecurity bool
    Enable internet security.
    Name string
    The name of the resource.
    RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfigurationResponse
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    TunnelIdentifier double
    Unique identifier for the connection.
    ProvisioningState string
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    Asn float64
    Network Virtual Appliance ASN.
    BgpPeerAddress []string
    List of bgpPeerAddresses for the NVA instances
    EnableInternetSecurity bool
    Enable internet security.
    Name string
    The name of the resource.
    RoutingConfiguration RoutingConfigurationResponse
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    TunnelIdentifier float64
    Unique identifier for the connection.
    provisioningState String
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    asn Double
    Network Virtual Appliance ASN.
    bgpPeerAddress List<String>
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity Boolean
    Enable internet security.
    name String
    The name of the resource.
    routingConfiguration RoutingConfigurationResponse
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier Double
    Unique identifier for the connection.
    provisioningState string
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    asn number
    Network Virtual Appliance ASN.
    bgpPeerAddress string[]
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity boolean
    Enable internet security.
    name string
    The name of the resource.
    routingConfiguration RoutingConfigurationResponse
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier number
    Unique identifier for the connection.
    provisioning_state str
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    asn float
    Network Virtual Appliance ASN.
    bgp_peer_address Sequence[str]
    List of bgpPeerAddresses for the NVA instances
    enable_internet_security bool
    Enable internet security.
    name str
    The name of the resource.
    routing_configuration RoutingConfigurationResponse
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnel_identifier float
    Unique identifier for the connection.
    provisioningState String
    The provisioning state of the NetworkVirtualApplianceConnection resource.
    asn Number
    Network Virtual Appliance ASN.
    bgpPeerAddress List<String>
    List of bgpPeerAddresses for the NVA instances
    enableInternetSecurity Boolean
    Enable internet security.
    name String
    The name of the resource.
    routingConfiguration Property Map
    The Routing Configuration indicating the associated and propagated route tables on this connection.
    tunnelIdentifier Number
    Unique identifier for the connection.

    PropagatedRouteTable, PropagatedRouteTableArgs

    Ids List<Pulumi.AzureNative.Network.Inputs.SubResource>
    The list of resource ids of all the RouteTables.
    Labels List<string>
    The list of labels.
    Ids []SubResource
    The list of resource ids of all the RouteTables.
    Labels []string
    The list of labels.
    ids List<SubResource>
    The list of resource ids of all the RouteTables.
    labels List<String>
    The list of labels.
    ids SubResource[]
    The list of resource ids of all the RouteTables.
    labels string[]
    The list of labels.
    ids Sequence[SubResource]
    The list of resource ids of all the RouteTables.
    labels Sequence[str]
    The list of labels.
    ids List<Property Map>
    The list of resource ids of all the RouteTables.
    labels List<String>
    The list of labels.

    PropagatedRouteTableResponse, PropagatedRouteTableResponseArgs

    Ids List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
    The list of resource ids of all the RouteTables.
    Labels List<string>
    The list of labels.
    Ids []SubResourceResponse
    The list of resource ids of all the RouteTables.
    Labels []string
    The list of labels.
    ids List<SubResourceResponse>
    The list of resource ids of all the RouteTables.
    labels List<String>
    The list of labels.
    ids SubResourceResponse[]
    The list of resource ids of all the RouteTables.
    labels string[]
    The list of labels.
    ids Sequence[SubResourceResponse]
    The list of resource ids of all the RouteTables.
    labels Sequence[str]
    The list of labels.
    ids List<Property Map>
    The list of resource ids of all the RouteTables.
    labels List<String>
    The list of labels.

    RoutingConfiguration, RoutingConfigurationArgs

    AssociatedRouteTable Pulumi.AzureNative.Network.Inputs.SubResource
    The resource id RouteTable associated with this RoutingConfiguration.
    InboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResource
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    OutboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResource
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    PropagatedRouteTables Pulumi.AzureNative.Network.Inputs.PropagatedRouteTable
    The list of RouteTables to advertise the routes to.
    VnetRoutes Pulumi.AzureNative.Network.Inputs.VnetRoute
    List of routes that control routing from VirtualHub into a virtual network connection.
    AssociatedRouteTable SubResource
    The resource id RouteTable associated with this RoutingConfiguration.
    InboundRouteMap SubResource
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    OutboundRouteMap SubResource
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    PropagatedRouteTables PropagatedRouteTable
    The list of RouteTables to advertise the routes to.
    VnetRoutes VnetRoute
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable SubResource
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap SubResource
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap SubResource
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables PropagatedRouteTable
    The list of RouteTables to advertise the routes to.
    vnetRoutes VnetRoute
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable SubResource
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap SubResource
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap SubResource
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables PropagatedRouteTable
    The list of RouteTables to advertise the routes to.
    vnetRoutes VnetRoute
    List of routes that control routing from VirtualHub into a virtual network connection.
    associated_route_table SubResource
    The resource id RouteTable associated with this RoutingConfiguration.
    inbound_route_map SubResource
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outbound_route_map SubResource
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagated_route_tables PropagatedRouteTable
    The list of RouteTables to advertise the routes to.
    vnet_routes VnetRoute
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable Property Map
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap Property Map
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap Property Map
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables Property Map
    The list of RouteTables to advertise the routes to.
    vnetRoutes Property Map
    List of routes that control routing from VirtualHub into a virtual network connection.

    RoutingConfigurationResponse, RoutingConfigurationResponseArgs

    AssociatedRouteTable Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    The resource id RouteTable associated with this RoutingConfiguration.
    InboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    OutboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    PropagatedRouteTables Pulumi.AzureNative.Network.Inputs.PropagatedRouteTableResponse
    The list of RouteTables to advertise the routes to.
    VnetRoutes Pulumi.AzureNative.Network.Inputs.VnetRouteResponse
    List of routes that control routing from VirtualHub into a virtual network connection.
    AssociatedRouteTable SubResourceResponse
    The resource id RouteTable associated with this RoutingConfiguration.
    InboundRouteMap SubResourceResponse
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    OutboundRouteMap SubResourceResponse
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    PropagatedRouteTables PropagatedRouteTableResponse
    The list of RouteTables to advertise the routes to.
    VnetRoutes VnetRouteResponse
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable SubResourceResponse
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap SubResourceResponse
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap SubResourceResponse
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables PropagatedRouteTableResponse
    The list of RouteTables to advertise the routes to.
    vnetRoutes VnetRouteResponse
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable SubResourceResponse
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap SubResourceResponse
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap SubResourceResponse
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables PropagatedRouteTableResponse
    The list of RouteTables to advertise the routes to.
    vnetRoutes VnetRouteResponse
    List of routes that control routing from VirtualHub into a virtual network connection.
    associated_route_table SubResourceResponse
    The resource id RouteTable associated with this RoutingConfiguration.
    inbound_route_map SubResourceResponse
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outbound_route_map SubResourceResponse
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagated_route_tables PropagatedRouteTableResponse
    The list of RouteTables to advertise the routes to.
    vnet_routes VnetRouteResponse
    List of routes that control routing from VirtualHub into a virtual network connection.
    associatedRouteTable Property Map
    The resource id RouteTable associated with this RoutingConfiguration.
    inboundRouteMap Property Map
    The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
    outboundRouteMap Property Map
    The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
    propagatedRouteTables Property Map
    The list of RouteTables to advertise the routes to.
    vnetRoutes Property Map
    List of routes that control routing from VirtualHub into a virtual network connection.

    StaticRoute, StaticRouteArgs

    AddressPrefixes List<string>
    List of all address prefixes.
    Name string
    The name of the StaticRoute that is unique within a VnetRoute.
    NextHopIpAddress string
    The ip address of the next hop.
    AddressPrefixes []string
    List of all address prefixes.
    Name string
    The name of the StaticRoute that is unique within a VnetRoute.
    NextHopIpAddress string
    The ip address of the next hop.
    addressPrefixes List<String>
    List of all address prefixes.
    name String
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress String
    The ip address of the next hop.
    addressPrefixes string[]
    List of all address prefixes.
    name string
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress string
    The ip address of the next hop.
    address_prefixes Sequence[str]
    List of all address prefixes.
    name str
    The name of the StaticRoute that is unique within a VnetRoute.
    next_hop_ip_address str
    The ip address of the next hop.
    addressPrefixes List<String>
    List of all address prefixes.
    name String
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress String
    The ip address of the next hop.

    StaticRouteResponse, StaticRouteResponseArgs

    AddressPrefixes List<string>
    List of all address prefixes.
    Name string
    The name of the StaticRoute that is unique within a VnetRoute.
    NextHopIpAddress string
    The ip address of the next hop.
    AddressPrefixes []string
    List of all address prefixes.
    Name string
    The name of the StaticRoute that is unique within a VnetRoute.
    NextHopIpAddress string
    The ip address of the next hop.
    addressPrefixes List<String>
    List of all address prefixes.
    name String
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress String
    The ip address of the next hop.
    addressPrefixes string[]
    List of all address prefixes.
    name string
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress string
    The ip address of the next hop.
    address_prefixes Sequence[str]
    List of all address prefixes.
    name str
    The name of the StaticRoute that is unique within a VnetRoute.
    next_hop_ip_address str
    The ip address of the next hop.
    addressPrefixes List<String>
    List of all address prefixes.
    name String
    The name of the StaticRoute that is unique within a VnetRoute.
    nextHopIpAddress String
    The ip address of the next hop.

    StaticRoutesConfig, StaticRoutesConfigArgs

    VnetLocalRouteOverrideCriteria string | Pulumi.AzureNative.Network.VnetLocalRouteOverrideCriteria
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    VnetLocalRouteOverrideCriteria string | VnetLocalRouteOverrideCriteria
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    vnetLocalRouteOverrideCriteria String | VnetLocalRouteOverrideCriteria
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    vnetLocalRouteOverrideCriteria string | VnetLocalRouteOverrideCriteria
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    vnet_local_route_override_criteria str | VnetLocalRouteOverrideCriteria
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    vnetLocalRouteOverrideCriteria String | "Contains" | "Equal"
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.

    StaticRoutesConfigResponse, StaticRoutesConfigResponseArgs

    PropagateStaticRoutes bool
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    VnetLocalRouteOverrideCriteria string
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    PropagateStaticRoutes bool
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    VnetLocalRouteOverrideCriteria string
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    propagateStaticRoutes Boolean
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    vnetLocalRouteOverrideCriteria String
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    propagateStaticRoutes boolean
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    vnetLocalRouteOverrideCriteria string
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    propagate_static_routes bool
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    vnet_local_route_override_criteria str
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
    propagateStaticRoutes Boolean
    Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
    vnetLocalRouteOverrideCriteria String
    Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.

    SubResource, SubResourceArgs

    Id string
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
    Id string
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
    id String
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
    id string
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
    id str
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
    id String
    Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.

    SubResourceResponse, SubResourceResponseArgs

    Id string
    Resource ID.
    Id string
    Resource ID.
    id String
    Resource ID.
    id string
    Resource ID.
    id str
    Resource ID.
    id String
    Resource ID.

    VnetLocalRouteOverrideCriteria, VnetLocalRouteOverrideCriteriaArgs

    Contains
    Contains
    Equal
    Equal
    VnetLocalRouteOverrideCriteriaContains
    Contains
    VnetLocalRouteOverrideCriteriaEqual
    Equal
    Contains
    Contains
    Equal
    Equal
    Contains
    Contains
    Equal
    Equal
    CONTAINS
    Contains
    EQUAL
    Equal
    "Contains"
    Contains
    "Equal"
    Equal

    VnetRoute, VnetRouteArgs

    StaticRoutes []StaticRoute
    List of all Static Routes.
    StaticRoutesConfig StaticRoutesConfig
    Configuration for static routes on this HubVnetConnection.
    staticRoutes List<StaticRoute>
    List of all Static Routes.
    staticRoutesConfig StaticRoutesConfig
    Configuration for static routes on this HubVnetConnection.
    staticRoutes StaticRoute[]
    List of all Static Routes.
    staticRoutesConfig StaticRoutesConfig
    Configuration for static routes on this HubVnetConnection.
    static_routes Sequence[StaticRoute]
    List of all Static Routes.
    static_routes_config StaticRoutesConfig
    Configuration for static routes on this HubVnetConnection.
    staticRoutes List<Property Map>
    List of all Static Routes.
    staticRoutesConfig Property Map
    Configuration for static routes on this HubVnetConnection.

    VnetRouteResponse, VnetRouteResponseArgs

    BgpConnections []SubResourceResponse
    The list of references to HubBgpConnection objects.
    StaticRoutes []StaticRouteResponse
    List of all Static Routes.
    StaticRoutesConfig StaticRoutesConfigResponse
    Configuration for static routes on this HubVnetConnection.
    bgpConnections List<SubResourceResponse>
    The list of references to HubBgpConnection objects.
    staticRoutes List<StaticRouteResponse>
    List of all Static Routes.
    staticRoutesConfig StaticRoutesConfigResponse
    Configuration for static routes on this HubVnetConnection.
    bgpConnections SubResourceResponse[]
    The list of references to HubBgpConnection objects.
    staticRoutes StaticRouteResponse[]
    List of all Static Routes.
    staticRoutesConfig StaticRoutesConfigResponse
    Configuration for static routes on this HubVnetConnection.
    bgp_connections Sequence[SubResourceResponse]
    The list of references to HubBgpConnection objects.
    static_routes Sequence[StaticRouteResponse]
    List of all Static Routes.
    static_routes_config StaticRoutesConfigResponse
    Configuration for static routes on this HubVnetConnection.
    bgpConnections List<Property Map>
    The list of references to HubBgpConnection objects.
    staticRoutes List<Property Map>
    List of all Static Routes.
    staticRoutesConfig Property Map
    Configuration for static routes on this HubVnetConnection.

    Import

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

    $ pulumi import azure-native:network:NetworkVirtualApplianceConnection connection1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/networkVirtualApplianceConnections/{connectionName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi