1. Packages
  2. Azure Native v2
  3. API Docs
  4. network
  5. ExpressRouteGateway
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.network.ExpressRouteGateway

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

ExpressRoute gateway resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

Other available API versions: 2021-03-01, 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

ExpressRouteGatewayCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var expressRouteGateway = new AzureNative.Network.ExpressRouteGateway("expressRouteGateway", new()
    {
        AllowNonVirtualWanTraffic = false,
        AutoScaleConfiguration = new AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs
        {
            Bounds = new AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesBoundsArgs
            {
                Min = 3,
            },
        },
        ExpressRouteGatewayName = "gateway-2",
        Location = "westus",
        ResourceGroupName = "resourceGroupName",
        VirtualHub = new AzureNative.Network.Inputs.VirtualHubIdArgs
        {
            Id = "/subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName",
        },
    });

});
Copy
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.NewExpressRouteGateway(ctx, "expressRouteGateway", &network.ExpressRouteGatewayArgs{
			AllowNonVirtualWanTraffic: pulumi.Bool(false),
			AutoScaleConfiguration: &network.ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs{
				Bounds: &network.ExpressRouteGatewayPropertiesBoundsArgs{
					Min: pulumi.Int(3),
				},
			},
			ExpressRouteGatewayName: pulumi.String("gateway-2"),
			Location:                pulumi.String("westus"),
			ResourceGroupName:       pulumi.String("resourceGroupName"),
			VirtualHub: &network.VirtualHubIdArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.ExpressRouteGateway;
import com.pulumi.azurenative.network.ExpressRouteGatewayArgs;
import com.pulumi.azurenative.network.inputs.ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs;
import com.pulumi.azurenative.network.inputs.ExpressRouteGatewayPropertiesBoundsArgs;
import com.pulumi.azurenative.network.inputs.VirtualHubIdArgs;
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 expressRouteGateway = new ExpressRouteGateway("expressRouteGateway", ExpressRouteGatewayArgs.builder()
            .allowNonVirtualWanTraffic(false)
            .autoScaleConfiguration(ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs.builder()
                .bounds(ExpressRouteGatewayPropertiesBoundsArgs.builder()
                    .min(3)
                    .build())
                .build())
            .expressRouteGatewayName("gateway-2")
            .location("westus")
            .resourceGroupName("resourceGroupName")
            .virtualHub(VirtualHubIdArgs.builder()
                .id("/subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const expressRouteGateway = new azure_native.network.ExpressRouteGateway("expressRouteGateway", {
    allowNonVirtualWanTraffic: false,
    autoScaleConfiguration: {
        bounds: {
            min: 3,
        },
    },
    expressRouteGatewayName: "gateway-2",
    location: "westus",
    resourceGroupName: "resourceGroupName",
    virtualHub: {
        id: "/subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

express_route_gateway = azure_native.network.ExpressRouteGateway("expressRouteGateway",
    allow_non_virtual_wan_traffic=False,
    auto_scale_configuration={
        "bounds": {
            "min": 3,
        },
    },
    express_route_gateway_name="gateway-2",
    location="westus",
    resource_group_name="resourceGroupName",
    virtual_hub={
        "id": "/subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName",
    })
Copy
resources:
  expressRouteGateway:
    type: azure-native:network:ExpressRouteGateway
    properties:
      allowNonVirtualWanTraffic: false
      autoScaleConfiguration:
        bounds:
          min: 3
      expressRouteGatewayName: gateway-2
      location: westus
      resourceGroupName: resourceGroupName
      virtualHub:
        id: /subscriptions/subid/resourceGroups/resourceGroupId/providers/Microsoft.Network/virtualHubs/virtualHubName
Copy

Create ExpressRouteGateway Resource

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

Constructor syntax

new ExpressRouteGateway(name: string, args: ExpressRouteGatewayArgs, opts?: CustomResourceOptions);
@overload
def ExpressRouteGateway(resource_name: str,
                        args: ExpressRouteGatewayArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def ExpressRouteGateway(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        virtual_hub: Optional[VirtualHubIdArgs] = None,
                        allow_non_virtual_wan_traffic: Optional[bool] = None,
                        auto_scale_configuration: Optional[ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs] = None,
                        express_route_connections: Optional[Sequence[ExpressRouteConnectionArgs]] = None,
                        express_route_gateway_name: Optional[str] = None,
                        id: Optional[str] = None,
                        location: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None)
func NewExpressRouteGateway(ctx *Context, name string, args ExpressRouteGatewayArgs, opts ...ResourceOption) (*ExpressRouteGateway, error)
public ExpressRouteGateway(string name, ExpressRouteGatewayArgs args, CustomResourceOptions? opts = null)
public ExpressRouteGateway(String name, ExpressRouteGatewayArgs args)
public ExpressRouteGateway(String name, ExpressRouteGatewayArgs args, CustomResourceOptions options)
type: azure-native:network:ExpressRouteGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteGatewayArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExpressRouteGatewayArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteGatewayArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExpressRouteGatewayArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExpressRouteGatewayArgs
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 expressRouteGatewayResource = new AzureNative.Network.ExpressRouteGateway("expressRouteGatewayResource", new()
{
    ResourceGroupName = "string",
    VirtualHub = 
    {
        { "id", "string" },
    },
    AllowNonVirtualWanTraffic = false,
    AutoScaleConfiguration = 
    {
        { "bounds", 
        {
            { "max", 0 },
            { "min", 0 },
        } },
    },
    ExpressRouteConnections = new[]
    {
        
        {
            { "expressRouteCircuitPeering", 
            {
                { "id", "string" },
            } },
            { "name", "string" },
            { "authorizationKey", "string" },
            { "enableInternetSecurity", false },
            { "enablePrivateLinkFastPath", false },
            { "expressRouteGatewayBypass", false },
            { "id", "string" },
            { "routingConfiguration", 
            {
                { "associatedRouteTable", 
                {
                    { "id", "string" },
                } },
                { "inboundRouteMap", 
                {
                    { "id", "string" },
                } },
                { "outboundRouteMap", 
                {
                    { "id", "string" },
                } },
                { "propagatedRouteTables", 
                {
                    { "ids", new[]
                    {
                        
                        {
                            { "id", "string" },
                        },
                    } },
                    { "labels", new[]
                    {
                        "string",
                    } },
                } },
                { "vnetRoutes", 
                {
                    { "staticRoutes", new[]
                    {
                        
                        {
                            { "addressPrefixes", new[]
                            {
                                "string",
                            } },
                            { "name", "string" },
                            { "nextHopIpAddress", "string" },
                        },
                    } },
                    { "staticRoutesConfig", 
                    {
                        { "vnetLocalRouteOverrideCriteria", "string" },
                    } },
                } },
            } },
            { "routingWeight", 0 },
        },
    },
    ExpressRouteGatewayName = "string",
    Id = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := network.NewExpressRouteGateway(ctx, "expressRouteGatewayResource", &network.ExpressRouteGatewayArgs{
	ResourceGroupName: "string",
	VirtualHub: map[string]interface{}{
		"id": "string",
	},
	AllowNonVirtualWanTraffic: false,
	AutoScaleConfiguration: map[string]interface{}{
		"bounds": map[string]interface{}{
			"max": 0,
			"min": 0,
		},
	},
	ExpressRouteConnections: []map[string]interface{}{
		map[string]interface{}{
			"expressRouteCircuitPeering": map[string]interface{}{
				"id": "string",
			},
			"name":                      "string",
			"authorizationKey":          "string",
			"enableInternetSecurity":    false,
			"enablePrivateLinkFastPath": false,
			"expressRouteGatewayBypass": false,
			"id":                        "string",
			"routingConfiguration": map[string]interface{}{
				"associatedRouteTable": map[string]interface{}{
					"id": "string",
				},
				"inboundRouteMap": map[string]interface{}{
					"id": "string",
				},
				"outboundRouteMap": map[string]interface{}{
					"id": "string",
				},
				"propagatedRouteTables": map[string]interface{}{
					"ids": []map[string]interface{}{
						map[string]interface{}{
							"id": "string",
						},
					},
					"labels": []string{
						"string",
					},
				},
				"vnetRoutes": map[string]interface{}{
					"staticRoutes": []map[string]interface{}{
						map[string]interface{}{
							"addressPrefixes": []string{
								"string",
							},
							"name":             "string",
							"nextHopIpAddress": "string",
						},
					},
					"staticRoutesConfig": map[string]interface{}{
						"vnetLocalRouteOverrideCriteria": "string",
					},
				},
			},
			"routingWeight": 0,
		},
	},
	ExpressRouteGatewayName: "string",
	Id:                      "string",
	Location:                "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var expressRouteGatewayResource = new ExpressRouteGateway("expressRouteGatewayResource", ExpressRouteGatewayArgs.builder()
    .resourceGroupName("string")
    .virtualHub(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .allowNonVirtualWanTraffic(false)
    .autoScaleConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .expressRouteConnections(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .expressRouteGatewayName("string")
    .id("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
express_route_gateway_resource = azure_native.network.ExpressRouteGateway("expressRouteGatewayResource",
    resource_group_name=string,
    virtual_hub={
        id: string,
    },
    allow_non_virtual_wan_traffic=False,
    auto_scale_configuration={
        bounds: {
            max: 0,
            min: 0,
        },
    },
    express_route_connections=[{
        expressRouteCircuitPeering: {
            id: string,
        },
        name: string,
        authorizationKey: 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,
    }],
    express_route_gateway_name=string,
    id=string,
    location=string,
    tags={
        string: string,
    })
Copy
const expressRouteGatewayResource = new azure_native.network.ExpressRouteGateway("expressRouteGatewayResource", {
    resourceGroupName: "string",
    virtualHub: {
        id: "string",
    },
    allowNonVirtualWanTraffic: false,
    autoScaleConfiguration: {
        bounds: {
            max: 0,
            min: 0,
        },
    },
    expressRouteConnections: [{
        expressRouteCircuitPeering: {
            id: "string",
        },
        name: "string",
        authorizationKey: "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,
    }],
    expressRouteGatewayName: "string",
    id: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:network:ExpressRouteGateway
properties:
    allowNonVirtualWanTraffic: false
    autoScaleConfiguration:
        bounds:
            max: 0
            min: 0
    expressRouteConnections:
        - authorizationKey: string
          enableInternetSecurity: false
          enablePrivateLinkFastPath: false
          expressRouteCircuitPeering:
            id: string
          expressRouteGatewayBypass: false
          id: string
          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
          routingWeight: 0
    expressRouteGatewayName: string
    id: string
    location: string
    resourceGroupName: string
    tags:
        string: string
    virtualHub:
        id: string
Copy

ExpressRouteGateway 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 ExpressRouteGateway resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
VirtualHub This property is required. Pulumi.AzureNative.Network.Inputs.VirtualHubId
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
AllowNonVirtualWanTraffic bool
Configures this gateway to accept traffic from non Virtual WAN networks.
AutoScaleConfiguration Pulumi.AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesAutoScaleConfiguration
Configuration for auto scaling.
ExpressRouteConnections List<Pulumi.AzureNative.Network.Inputs.ExpressRouteConnection>
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
ExpressRouteGatewayName Changes to this property will trigger replacement. string
The name of the ExpressRoute gateway.
Id string
Resource ID.
Location string
Resource location.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
VirtualHub This property is required. VirtualHubIdArgs
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
AllowNonVirtualWanTraffic bool
Configures this gateway to accept traffic from non Virtual WAN networks.
AutoScaleConfiguration ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs
Configuration for auto scaling.
ExpressRouteConnections []ExpressRouteConnectionTypeArgs
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
ExpressRouteGatewayName Changes to this property will trigger replacement. string
The name of the ExpressRoute gateway.
Id string
Resource ID.
Location string
Resource location.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
virtualHub This property is required. VirtualHubId
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
allowNonVirtualWanTraffic Boolean
Configures this gateway to accept traffic from non Virtual WAN networks.
autoScaleConfiguration ExpressRouteGatewayPropertiesAutoScaleConfiguration
Configuration for auto scaling.
expressRouteConnections List<ExpressRouteConnection>
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
expressRouteGatewayName Changes to this property will trigger replacement. String
The name of the ExpressRoute gateway.
id String
Resource ID.
location String
Resource location.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
virtualHub This property is required. VirtualHubId
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
allowNonVirtualWanTraffic boolean
Configures this gateway to accept traffic from non Virtual WAN networks.
autoScaleConfiguration ExpressRouteGatewayPropertiesAutoScaleConfiguration
Configuration for auto scaling.
expressRouteConnections ExpressRouteConnection[]
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
expressRouteGatewayName Changes to this property will trigger replacement. string
The name of the ExpressRoute gateway.
id string
Resource ID.
location string
Resource location.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
virtual_hub This property is required. VirtualHubIdArgs
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
allow_non_virtual_wan_traffic bool
Configures this gateway to accept traffic from non Virtual WAN networks.
auto_scale_configuration ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs
Configuration for auto scaling.
express_route_connections Sequence[ExpressRouteConnectionArgs]
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
express_route_gateway_name Changes to this property will trigger replacement. str
The name of the ExpressRoute gateway.
id str
Resource ID.
location str
Resource location.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
virtualHub This property is required. Property Map
The Virtual Hub where the ExpressRoute gateway is or will be deployed.
allowNonVirtualWanTraffic Boolean
Configures this gateway to accept traffic from non Virtual WAN networks.
autoScaleConfiguration Property Map
Configuration for auto scaling.
expressRouteConnections List<Property Map>
List of ExpressRoute connections to the ExpressRoute gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
expressRouteGatewayName Changes to this property will trigger replacement. String
The name of the ExpressRoute gateway.
id String
Resource ID.
location String
Resource location.
tags Map<String>
Resource tags.

Outputs

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

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

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.

ExpressRouteConnection
, ExpressRouteConnectionArgs

ExpressRouteCircuitPeering This property is required. Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringId
The ExpressRoute circuit peering.
Name This property is required. string
The name of the resource.
AuthorizationKey string
Authorization key to establish the connection.
EnableInternetSecurity bool
Enable internet security.
EnablePrivateLinkFastPath bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
ExpressRouteGatewayBypass bool
Enable FastPath to vWan Firewall hub.
Id string
Resource ID.
RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
The routing weight associated to the connection.
ExpressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringId
The ExpressRoute circuit peering.
Name This property is required. string
The name of the resource.
AuthorizationKey string
Authorization key to establish the connection.
EnableInternetSecurity bool
Enable internet security.
EnablePrivateLinkFastPath bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
ExpressRouteGatewayBypass bool
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 int
The routing weight associated to the connection.
expressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringId
The ExpressRoute circuit peering.
name This property is required. String
The name of the resource.
authorizationKey String
Authorization key to establish the connection.
enableInternetSecurity Boolean
Enable internet security.
enablePrivateLinkFastPath Boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass Boolean
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.
expressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringId
The ExpressRoute circuit peering.
name This property is required. string
The name of the resource.
authorizationKey string
Authorization key to establish the connection.
enableInternetSecurity boolean
Enable internet security.
enablePrivateLinkFastPath boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass boolean
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_circuit_peering This property is required. ExpressRouteCircuitPeeringId
The ExpressRoute circuit peering.
name This property is required. str
The name of the resource.
authorization_key str
Authorization key to establish the connection.
enable_internet_security bool
Enable internet security.
enable_private_link_fast_path bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
express_route_gateway_bypass bool
Enable FastPath to vWan Firewall hub.
id str
Resource ID.
routing_configuration RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
routing_weight int
The routing weight associated to the connection.
expressRouteCircuitPeering This property is required. Property Map
The ExpressRoute circuit peering.
name This property is required. String
The name of the resource.
authorizationKey String
Authorization key to establish the connection.
enableInternetSecurity Boolean
Enable internet security.
enablePrivateLinkFastPath Boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass Boolean
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.

ExpressRouteConnectionResponse
, ExpressRouteConnectionResponseArgs

ExpressRouteCircuitPeering This property is required. Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringIdResponse
The ExpressRoute circuit peering.
Name This property is required. string
The name of the resource.
ProvisioningState This property is required. string
The provisioning state of the express route connection resource.
AuthorizationKey string
Authorization key to establish the connection.
EnableInternetSecurity bool
Enable internet security.
EnablePrivateLinkFastPath bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
ExpressRouteGatewayBypass bool
Enable FastPath to vWan Firewall hub.
Id string
Resource ID.
RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
The routing weight associated to the connection.
ExpressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringIdResponse
The ExpressRoute circuit peering.
Name This property is required. string
The name of the resource.
ProvisioningState This property is required. string
The provisioning state of the express route connection resource.
AuthorizationKey string
Authorization key to establish the connection.
EnableInternetSecurity bool
Enable internet security.
EnablePrivateLinkFastPath bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
ExpressRouteGatewayBypass bool
Enable FastPath to vWan Firewall hub.
Id string
Resource ID.
RoutingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
The routing weight associated to the connection.
expressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringIdResponse
The ExpressRoute circuit peering.
name This property is required. String
The name of the resource.
provisioningState This property is required. String
The provisioning state of the express route connection resource.
authorizationKey String
Authorization key to establish the connection.
enableInternetSecurity Boolean
Enable internet security.
enablePrivateLinkFastPath Boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass Boolean
Enable FastPath to vWan Firewall hub.
id String
Resource ID.
routingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight Integer
The routing weight associated to the connection.
expressRouteCircuitPeering This property is required. ExpressRouteCircuitPeeringIdResponse
The ExpressRoute circuit peering.
name This property is required. string
The name of the resource.
provisioningState This property is required. string
The provisioning state of the express route connection resource.
authorizationKey string
Authorization key to establish the connection.
enableInternetSecurity boolean
Enable internet security.
enablePrivateLinkFastPath boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass boolean
Enable FastPath to vWan Firewall hub.
id string
Resource ID.
routingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight number
The routing weight associated to the connection.
express_route_circuit_peering This property is required. ExpressRouteCircuitPeeringIdResponse
The ExpressRoute circuit peering.
name This property is required. str
The name of the resource.
provisioning_state This property is required. str
The provisioning state of the express route connection resource.
authorization_key str
Authorization key to establish the connection.
enable_internet_security bool
Enable internet security.
enable_private_link_fast_path bool
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
express_route_gateway_bypass bool
Enable FastPath to vWan Firewall hub.
id str
Resource ID.
routing_configuration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routing_weight int
The routing weight associated to the connection.
expressRouteCircuitPeering This property is required. Property Map
The ExpressRoute circuit peering.
name This property is required. String
The name of the resource.
provisioningState This property is required. String
The provisioning state of the express route connection resource.
authorizationKey String
Authorization key to establish the connection.
enableInternetSecurity Boolean
Enable internet security.
enablePrivateLinkFastPath Boolean
Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
expressRouteGatewayBypass Boolean
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.

ExpressRouteGatewayPropertiesAutoScaleConfiguration
, ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs

Bounds Pulumi.AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesBounds
Minimum and maximum number of scale units to deploy.
Bounds ExpressRouteGatewayPropertiesBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesBounds
Minimum and maximum number of scale units to deploy.
bounds Property Map
Minimum and maximum number of scale units to deploy.

ExpressRouteGatewayPropertiesBounds
, ExpressRouteGatewayPropertiesBoundsArgs

Max int
Maximum number of scale units deployed for ExpressRoute gateway.
Min int
Minimum number of scale units deployed for ExpressRoute gateway.
Max int
Maximum number of scale units deployed for ExpressRoute gateway.
Min int
Minimum number of scale units deployed for ExpressRoute gateway.
max Integer
Maximum number of scale units deployed for ExpressRoute gateway.
min Integer
Minimum number of scale units deployed for ExpressRoute gateway.
max number
Maximum number of scale units deployed for ExpressRoute gateway.
min number
Minimum number of scale units deployed for ExpressRoute gateway.
max int
Maximum number of scale units deployed for ExpressRoute gateway.
min int
Minimum number of scale units deployed for ExpressRoute gateway.
max Number
Maximum number of scale units deployed for ExpressRoute gateway.
min Number
Minimum number of scale units deployed for ExpressRoute gateway.

ExpressRouteGatewayPropertiesResponseAutoScaleConfiguration
, ExpressRouteGatewayPropertiesResponseAutoScaleConfigurationArgs

Bounds ExpressRouteGatewayPropertiesResponseBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesResponseBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesResponseBounds
Minimum and maximum number of scale units to deploy.
bounds ExpressRouteGatewayPropertiesResponseBounds
Minimum and maximum number of scale units to deploy.
bounds Property Map
Minimum and maximum number of scale units to deploy.

ExpressRouteGatewayPropertiesResponseBounds
, ExpressRouteGatewayPropertiesResponseBoundsArgs

Max int
Maximum number of scale units deployed for ExpressRoute gateway.
Min int
Minimum number of scale units deployed for ExpressRoute gateway.
Max int
Maximum number of scale units deployed for ExpressRoute gateway.
Min int
Minimum number of scale units deployed for ExpressRoute gateway.
max Integer
Maximum number of scale units deployed for ExpressRoute gateway.
min Integer
Minimum number of scale units deployed for ExpressRoute gateway.
max number
Maximum number of scale units deployed for ExpressRoute gateway.
min number
Minimum number of scale units deployed for ExpressRoute gateway.
max int
Maximum number of scale units deployed for ExpressRoute gateway.
min int
Minimum number of scale units deployed for ExpressRoute gateway.
max Number
Maximum number of scale units deployed for ExpressRoute gateway.
min Number
Minimum number of scale units deployed for ExpressRoute gateway.

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Resource ID.
Id This property is required. string
Resource ID.
id This property is required. String
Resource ID.
id This property is required. string
Resource ID.
id This property is required. str
Resource ID.
id This property is required. String
Resource ID.

VirtualHubId
, VirtualHubIdArgs

Id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
Id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id String
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id str
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id String
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.

VirtualHubIdResponse
, VirtualHubIdResponseArgs

Id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
Id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id String
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id string
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id str
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.
id String
The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same subscription.

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 This property is required. List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
The list of references to HubBgpConnection objects.
StaticRoutes List<Pulumi.AzureNative.Network.Inputs.StaticRouteResponse>
List of all Static Routes.
StaticRoutesConfig Pulumi.AzureNative.Network.Inputs.StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
BgpConnections This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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:ExpressRouteGateway gateway-2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi