azure-native.network.ExpressRouteConnection
Explore with Pulumi AI
ExpressRouteConnection resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.
Other available API versions: 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-05-01.
Example Usage
ExpressRouteConnectionCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var expressRouteConnection = new AzureNative.Network.ExpressRouteConnection("expressRouteConnection", new()
    {
        AuthorizationKey = "authorizationKey",
        ConnectionName = "connectionName",
        ExpressRouteCircuitPeering = new AzureNative.Network.Inputs.ExpressRouteCircuitPeeringIdArgs
        {
            Id = "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering",
        },
        ExpressRouteGatewayName = "gateway-2",
        Id = "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName",
        Name = "connectionName",
        ResourceGroupName = "resourceGroupName",
        RoutingConfiguration = new AzureNative.Network.Inputs.RoutingConfigurationArgs
        {
            AssociatedRouteTable = new AzureNative.Network.Inputs.SubResourceArgs
            {
                Id = "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1",
                    },
                    new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2",
                    },
                    new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3",
                    },
                },
                Labels = new[]
                {
                    "label1",
                    "label2",
                },
            },
        },
        RoutingWeight = 2,
    });
});
package main
import (
	network "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.NewExpressRouteConnection(ctx, "expressRouteConnection", &network.ExpressRouteConnectionArgs{
			AuthorizationKey: pulumi.String("authorizationKey"),
			ConnectionName:   pulumi.String("connectionName"),
			ExpressRouteCircuitPeering: &network.ExpressRouteCircuitPeeringIdArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering"),
			},
			ExpressRouteGatewayName: pulumi.String("gateway-2"),
			Id:                      pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName"),
			Name:                    pulumi.String("connectionName"),
			ResourceGroupName:       pulumi.String("resourceGroupName"),
			RoutingConfiguration: &network.RoutingConfigurationArgs{
				AssociatedRouteTable: &network.SubResourceArgs{
					Id: pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1"),
						},
						&network.SubResourceArgs{
							Id: pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2"),
						},
						&network.SubResourceArgs{
							Id: pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3"),
						},
					},
					Labels: pulumi.StringArray{
						pulumi.String("label1"),
						pulumi.String("label2"),
					},
				},
			},
			RoutingWeight: pulumi.Int(2),
		})
		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.ExpressRouteConnection;
import com.pulumi.azurenative.network.ExpressRouteConnectionArgs;
import com.pulumi.azurenative.network.inputs.ExpressRouteCircuitPeeringIdArgs;
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 expressRouteConnection = new ExpressRouteConnection("expressRouteConnection", ExpressRouteConnectionArgs.builder()
            .authorizationKey("authorizationKey")
            .connectionName("connectionName")
            .expressRouteCircuitPeering(ExpressRouteCircuitPeeringIdArgs.builder()
                .id("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering")
                .build())
            .expressRouteGatewayName("gateway-2")
            .id("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName")
            .name("connectionName")
            .resourceGroupName("resourceGroupName")
            .routingConfiguration(RoutingConfigurationArgs.builder()
                .associatedRouteTable(SubResourceArgs.builder()
                    .id("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1")
                            .build(),
                        SubResourceArgs.builder()
                            .id("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2")
                            .build(),
                        SubResourceArgs.builder()
                            .id("/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3")
                            .build())
                    .labels(                    
                        "label1",
                        "label2")
                    .build())
                .build())
            .routingWeight(2)
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const expressRouteConnection = new azure_native.network.ExpressRouteConnection("expressRouteConnection", {
    authorizationKey: "authorizationKey",
    connectionName: "connectionName",
    expressRouteCircuitPeering: {
        id: "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering",
    },
    expressRouteGatewayName: "gateway-2",
    id: "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName",
    name: "connectionName",
    resourceGroupName: "resourceGroupName",
    routingConfiguration: {
        associatedRouteTable: {
            id: "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1",
                },
                {
                    id: "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2",
                },
                {
                    id: "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3",
                },
            ],
            labels: [
                "label1",
                "label2",
            ],
        },
    },
    routingWeight: 2,
});
import pulumi
import pulumi_azure_native as azure_native
express_route_connection = azure_native.network.ExpressRouteConnection("expressRouteConnection",
    authorization_key="authorizationKey",
    connection_name="connectionName",
    express_route_circuit_peering={
        "id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering",
    },
    express_route_gateway_name="gateway-2",
    id="/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName",
    name="connectionName",
    resource_group_name="resourceGroupName",
    routing_configuration={
        "associated_route_table": {
            "id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1",
                },
                {
                    "id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2",
                },
                {
                    "id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3",
                },
            ],
            "labels": [
                "label1",
                "label2",
            ],
        },
    },
    routing_weight=2)
resources:
  expressRouteConnection:
    type: azure-native:network:ExpressRouteConnection
    properties:
      authorizationKey: authorizationKey
      connectionName: connectionName
      expressRouteCircuitPeering:
        id: /subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/circuitName/peerings/AzurePrivatePeering
      expressRouteGatewayName: gateway-2
      id: /subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteGateways/gateway-2/expressRouteConnections/connectionName
      name: connectionName
      resourceGroupName: resourceGroupName
      routingConfiguration:
        associatedRouteTable:
          id: /subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/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/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable1
            - id: /subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable2
            - id: /subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/hub1/hubRouteTables/hubRouteTable3
          labels:
            - label1
            - label2
      routingWeight: 2
Create ExpressRouteConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExpressRouteConnection(name: string, args: ExpressRouteConnectionArgs, opts?: CustomResourceOptions);@overload
def ExpressRouteConnection(resource_name: str,
                           args: ExpressRouteConnectionInitArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def ExpressRouteConnection(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           express_route_circuit_peering: Optional[ExpressRouteCircuitPeeringIdArgs] = None,
                           express_route_gateway_name: Optional[str] = None,
                           name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           authorization_key: Optional[str] = None,
                           connection_name: Optional[str] = None,
                           enable_internet_security: Optional[bool] = None,
                           enable_private_link_fast_path: Optional[bool] = None,
                           express_route_gateway_bypass: Optional[bool] = None,
                           id: Optional[str] = None,
                           routing_configuration: Optional[RoutingConfigurationArgs] = None,
                           routing_weight: Optional[int] = None)func NewExpressRouteConnection(ctx *Context, name string, args ExpressRouteConnectionArgs, opts ...ResourceOption) (*ExpressRouteConnection, error)public ExpressRouteConnection(string name, ExpressRouteConnectionArgs args, CustomResourceOptions? opts = null)
public ExpressRouteConnection(String name, ExpressRouteConnectionArgs args)
public ExpressRouteConnection(String name, ExpressRouteConnectionArgs args, CustomResourceOptions options)
type: azure-native:network:ExpressRouteConnection
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 ExpressRouteConnectionArgs
- 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 ExpressRouteConnectionInitArgs
- 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 ExpressRouteConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExpressRouteConnectionArgs
- 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 expressRouteConnectionResource = new AzureNative.Network.ExpressRouteConnection("expressRouteConnectionResource", new()
{
    ExpressRouteCircuitPeering = new AzureNative.Network.Inputs.ExpressRouteCircuitPeeringIdArgs
    {
        Id = "string",
    },
    ExpressRouteGatewayName = "string",
    Name = "string",
    ResourceGroupName = "string",
    AuthorizationKey = "string",
    ConnectionName = "string",
    EnableInternetSecurity = false,
    EnablePrivateLinkFastPath = false,
    ExpressRouteGatewayBypass = false,
    Id = "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",
            },
        },
    },
    RoutingWeight = 0,
});
example, err := network.NewExpressRouteConnection(ctx, "expressRouteConnectionResource", &network.ExpressRouteConnectionArgs{
	ExpressRouteCircuitPeering: &network.ExpressRouteCircuitPeeringIdArgs{
		Id: pulumi.String("string"),
	},
	ExpressRouteGatewayName:   pulumi.String("string"),
	Name:                      pulumi.String("string"),
	ResourceGroupName:         pulumi.String("string"),
	AuthorizationKey:          pulumi.String("string"),
	ConnectionName:            pulumi.String("string"),
	EnableInternetSecurity:    pulumi.Bool(false),
	EnablePrivateLinkFastPath: pulumi.Bool(false),
	ExpressRouteGatewayBypass: pulumi.Bool(false),
	Id:                        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"),
			},
		},
	},
	RoutingWeight: pulumi.Int(0),
})
var expressRouteConnectionResource = new ExpressRouteConnection("expressRouteConnectionResource", ExpressRouteConnectionArgs.builder()
    .expressRouteCircuitPeering(ExpressRouteCircuitPeeringIdArgs.builder()
        .id("string")
        .build())
    .expressRouteGatewayName("string")
    .name("string")
    .resourceGroupName("string")
    .authorizationKey("string")
    .connectionName("string")
    .enableInternetSecurity(false)
    .enablePrivateLinkFastPath(false)
    .expressRouteGatewayBypass(false)
    .id("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())
    .routingWeight(0)
    .build());
express_route_connection_resource = azure_native.network.ExpressRouteConnection("expressRouteConnectionResource",
    express_route_circuit_peering={
        "id": "string",
    },
    express_route_gateway_name="string",
    name="string",
    resource_group_name="string",
    authorization_key="string",
    connection_name="string",
    enable_internet_security=False,
    enable_private_link_fast_path=False,
    express_route_gateway_bypass=False,
    id="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",
            },
        },
    },
    routing_weight=0)
const expressRouteConnectionResource = new azure_native.network.ExpressRouteConnection("expressRouteConnectionResource", {
    expressRouteCircuitPeering: {
        id: "string",
    },
    expressRouteGatewayName: "string",
    name: "string",
    resourceGroupName: "string",
    authorizationKey: "string",
    connectionName: "string",
    enableInternetSecurity: false,
    enablePrivateLinkFastPath: false,
    expressRouteGatewayBypass: false,
    id: "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",
            },
        },
    },
    routingWeight: 0,
});
type: azure-native:network:ExpressRouteConnection
properties:
    authorizationKey: string
    connectionName: string
    enableInternetSecurity: false
    enablePrivateLinkFastPath: false
    expressRouteCircuitPeering:
        id: string
    expressRouteGatewayBypass: false
    expressRouteGatewayName: string
    id: string
    name: string
    resourceGroupName: 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
    routingWeight: 0
ExpressRouteConnection 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 ExpressRouteConnection resource accepts the following input properties:
- ExpressRoute Pulumi.Circuit Peering Azure Native. Network. Inputs. Express Route Circuit Peering Id 
- The ExpressRoute circuit peering.
- ExpressRoute stringGateway Name 
- The name of the ExpressRoute gateway.
- Name string
- The name of the resource.
- ResourceGroup stringName 
- The name of the resource group.
- string
- Authorization key to establish the connection.
- ConnectionName string
- The name of the connection subresource.
- EnableInternet boolSecurity 
- Enable internet security.
- EnablePrivate boolLink Fast Path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- ExpressRoute boolGateway Bypass 
- Enable FastPath to vWan Firewall hub.
- Id string
- Resource ID.
- RoutingConfiguration Pulumi.Azure Native. Network. Inputs. Routing Configuration 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- RoutingWeight int
- The routing weight associated to the connection.
- ExpressRoute ExpressCircuit Peering Route Circuit Peering Id Args 
- The ExpressRoute circuit peering.
- ExpressRoute stringGateway Name 
- The name of the ExpressRoute gateway.
- Name string
- The name of the resource.
- ResourceGroup stringName 
- The name of the resource group.
- string
- Authorization key to establish the connection.
- ConnectionName string
- The name of the connection subresource.
- EnableInternet boolSecurity 
- Enable internet security.
- EnablePrivate boolLink Fast Path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- ExpressRoute boolGateway Bypass 
- Enable FastPath to vWan Firewall hub.
- Id string
- Resource ID.
- RoutingConfiguration RoutingConfiguration Args 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- RoutingWeight int
- The routing weight associated to the connection.
- expressRoute ExpressCircuit Peering Route Circuit Peering Id 
- The ExpressRoute circuit peering.
- expressRoute StringGateway Name 
- The name of the ExpressRoute gateway.
- name String
- The name of the resource.
- resourceGroup StringName 
- The name of the resource group.
- String
- Authorization key to establish the connection.
- connectionName String
- The name of the connection subresource.
- enableInternet BooleanSecurity 
- Enable internet security.
- enablePrivate BooleanLink Fast Path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- expressRoute BooleanGateway Bypass 
- Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routingConfiguration RoutingConfiguration 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- routingWeight Integer
- The routing weight associated to the connection.
- expressRoute ExpressCircuit Peering Route Circuit Peering Id 
- The ExpressRoute circuit peering.
- expressRoute stringGateway Name 
- The name of the ExpressRoute gateway.
- name string
- The name of the resource.
- resourceGroup stringName 
- The name of the resource group.
- string
- Authorization key to establish the connection.
- connectionName string
- The name of the connection subresource.
- enableInternet booleanSecurity 
- Enable internet security.
- enablePrivate booleanLink Fast Path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- expressRoute booleanGateway Bypass 
- Enable FastPath to vWan Firewall hub.
- id string
- Resource ID.
- routingConfiguration RoutingConfiguration 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- routingWeight number
- The routing weight associated to the connection.
- express_route_ Expresscircuit_ peering Route Circuit Peering Id Args 
- The ExpressRoute circuit peering.
- express_route_ strgateway_ name 
- The name of the ExpressRoute gateway.
- name str
- The name of the resource.
- resource_group_ strname 
- The name of the resource group.
- str
- Authorization key to establish the connection.
- connection_name str
- The name of the connection subresource.
- enable_internet_ boolsecurity 
- Enable internet security.
- enable_private_ boollink_ fast_ path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express_route_ boolgateway_ bypass 
- Enable FastPath to vWan Firewall hub.
- id str
- Resource ID.
- routing_configuration RoutingConfiguration Args 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing_weight int
- The routing weight associated to the connection.
- expressRoute Property MapCircuit Peering 
- The ExpressRoute circuit peering.
- expressRoute StringGateway Name 
- The name of the ExpressRoute gateway.
- name String
- The name of the resource.
- resourceGroup StringName 
- The name of the resource group.
- String
- Authorization key to establish the connection.
- connectionName String
- The name of the connection subresource.
- enableInternet BooleanSecurity 
- Enable internet security.
- enablePrivate BooleanLink Fast Path 
- Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- expressRoute BooleanGateway Bypass 
- Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routingConfiguration Property Map
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- routingWeight Number
- The routing weight associated to the connection.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExpressRouteConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- ProvisioningState string
- The provisioning state of the express route connection resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- ProvisioningState string
- The provisioning state of the express route connection resource.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioningState String
- The provisioning state of the express route connection resource.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioningState string
- The provisioning state of the express route connection resource.
- id str
- The provider-assigned unique ID for this managed resource.
- provisioning_state str
- The provisioning state of the express route connection resource.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioningState String
- The provisioning state of the express route connection resource.
Supporting Types
ExpressRouteCircuitPeeringId, ExpressRouteCircuitPeeringIdArgs          
- Id string
- The ID of the ExpressRoute circuit peering.
- Id string
- The ID of the ExpressRoute circuit peering.
- id String
- The ID of the ExpressRoute circuit peering.
- id string
- The ID of the ExpressRoute circuit peering.
- id str
- The ID of the ExpressRoute circuit peering.
- id String
- The ID of the ExpressRoute circuit peering.
ExpressRouteCircuitPeeringIdResponse, ExpressRouteCircuitPeeringIdResponseArgs            
- Id string
- The ID of the ExpressRoute circuit peering.
- Id string
- The ID of the ExpressRoute circuit peering.
- id String
- The ID of the ExpressRoute circuit peering.
- id string
- The ID of the ExpressRoute circuit peering.
- id str
- The ID of the ExpressRoute circuit peering.
- id String
- The ID of the ExpressRoute circuit peering.
PropagatedRouteTable, PropagatedRouteTableArgs      
- Ids
List<Pulumi.Azure Native. Network. Inputs. Sub Resource> 
- 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.Azure Native. Network. Inputs. Sub Resource Response> 
- The list of resource ids of all the RouteTables.
- Labels List<string>
- The list of labels.
- Ids
[]SubResource Response 
- The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<SubResource Response> 
- The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
SubResource Response[] 
- The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[SubResource Response] 
- 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    
- AssociatedRoute Pulumi.Table Azure Native. Network. Inputs. Sub Resource 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table 
- The list of RouteTables to advertise the routes to.
- VnetRoutes Pulumi.Azure Native. Network. Inputs. Vnet Route 
- List of routes that control routing from VirtualHub into a virtual network connection.
- AssociatedRoute SubTable Resource 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute SubMap Resource 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute SubMap Resource 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute PropagatedTables Route Table 
- The list of RouteTables to advertise the routes to.
- VnetRoutes VnetRoute 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table 
- The list of RouteTables to advertise the routes to.
- vnetRoutes VnetRoute 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table 
- 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_ Subtable Resource 
- The resource id RouteTable associated with this RoutingConfiguration.
- inbound_route_ Submap Resource 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outbound_route_ Submap Resource 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagated_route_ Propagatedtables Route Table 
- 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.
- associatedRoute Property MapTable 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute Property MapMap 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute Property MapMap 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute Property MapTables 
- 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      
- AssociatedRoute Pulumi.Table Azure Native. Network. Inputs. Sub Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table Response 
- The list of RouteTables to advertise the routes to.
- VnetRoutes Pulumi.Azure Native. Network. Inputs. Vnet Route Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- AssociatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- VnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associated_route_ Subtable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inbound_route_ Submap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outbound_route_ Submap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagated_route_ Propagatedtables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnet_routes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute Property MapTable 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute Property MapMap 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute Property MapMap 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute Property MapTables 
- 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.
- NextHop stringIp Address 
- 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.
- NextHop stringIp Address 
- 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.
- nextHop StringIp Address 
- 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.
- nextHop stringIp Address 
- 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_ strip_ address 
- 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.
- nextHop StringIp Address 
- 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.
- NextHop stringIp Address 
- 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.
- NextHop stringIp Address 
- 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.
- nextHop StringIp Address 
- 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.
- nextHop stringIp Address 
- 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_ strip_ address 
- 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.
- nextHop StringIp Address 
- The ip address of the next hop.
StaticRoutesConfig, StaticRoutesConfigArgs      
- VnetLocal string | Pulumi.Route Override Criteria Azure Native. Network. Vnet Local Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- VnetLocal string | VnetRoute Override Criteria Local Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- vnetLocal String | VnetRoute Override Criteria Local Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- vnetLocal string | VnetRoute Override Criteria Local Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- vnet_local_ str | Vnetroute_ override_ criteria Local Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- vnetLocal String | "Contains" | "Equal"Route Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
StaticRoutesConfigResponse, StaticRoutesConfigResponseArgs        
- PropagateStatic boolRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- VnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- PropagateStatic boolRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- VnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic BooleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal StringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic booleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagate_static_ boolroutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnet_local_ strroute_ override_ criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic BooleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal StringRoute Override Criteria 
- 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
- VnetLocal Route Override Criteria Contains 
- Contains
- VnetLocal Route Override Criteria Equal 
- Equal
- Contains
- Contains
- Equal
- Equal
- Contains
- Contains
- Equal
- Equal
- CONTAINS
- Contains
- EQUAL
- Equal
- "Contains"
- Contains
- "Equal"
- Equal
VnetRoute, VnetRouteArgs    
- StaticRoutes List<Pulumi.Azure Native. Network. Inputs. Static Route> 
- List of all Static Routes.
- StaticRoutes Pulumi.Config Azure Native. Network. Inputs. Static Routes Config 
- Configuration for static routes on this HubVnetConnection.
- StaticRoutes []StaticRoute 
- List of all Static Routes.
- StaticRoutes StaticConfig Routes Config 
- Configuration for static routes on this HubVnetConnection.
- staticRoutes List<StaticRoute> 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config 
- Configuration for static routes on this HubVnetConnection.
- staticRoutes StaticRoute[] 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config 
- Configuration for static routes on this HubVnetConnection.
- static_routes Sequence[StaticRoute] 
- List of all Static Routes.
- static_routes_ Staticconfig Routes Config 
- Configuration for static routes on this HubVnetConnection.
- staticRoutes List<Property Map>
- List of all Static Routes.
- staticRoutes Property MapConfig 
- Configuration for static routes on this HubVnetConnection.
VnetRouteResponse, VnetRouteResponseArgs      
- BgpConnections List<Pulumi.Azure Native. Network. Inputs. Sub Resource Response> 
- The list of references to HubBgpConnection objects.
- StaticRoutes List<Pulumi.Azure Native. Network. Inputs. Static Route Response> 
- List of all Static Routes.
- StaticRoutes Pulumi.Config Azure Native. Network. Inputs. Static Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- BgpConnections []SubResource Response 
- The list of references to HubBgpConnection objects.
- StaticRoutes []StaticRoute Response 
- List of all Static Routes.
- StaticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgpConnections List<SubResource Response> 
- The list of references to HubBgpConnection objects.
- staticRoutes List<StaticRoute Response> 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgpConnections SubResource Response[] 
- The list of references to HubBgpConnection objects.
- staticRoutes StaticRoute Response[] 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgp_connections Sequence[SubResource Response] 
- The list of references to HubBgpConnection objects.
- static_routes Sequence[StaticRoute Response] 
- List of all Static Routes.
- static_routes_ Staticconfig Routes Config Response 
- 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.
- staticRoutes Property MapConfig 
- 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:ExpressRouteConnection connectionName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{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