azure-native.network.ExpressRouteGateway
Explore with Pulumi AI
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.
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",
},
});
});
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
})
}
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());
}
}
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",
})
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",
},
});
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
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 string
- The unique name of the resource.
- args ExpressRouteGatewayArgs
- 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 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 string
- The unique name of the resource.
- args ExpressRouteGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Network.Inputs.VirtualHubIdArgs
{
Id = "string",
},
AllowNonVirtualWanTraffic = false,
AutoScaleConfiguration = new AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs
{
Bounds = new AzureNative.Network.Inputs.ExpressRouteGatewayPropertiesBoundsArgs
{
Max = 0,
Min = 0,
},
},
ExpressRouteConnections = new[]
{
new AzureNative.Network.Inputs.ExpressRouteConnectionArgs
{
ExpressRouteCircuitPeering = new AzureNative.Network.Inputs.ExpressRouteCircuitPeeringIdArgs
{
Id = "string",
},
Name = "string",
AuthorizationKey = "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,
},
},
ExpressRouteGatewayName = "string",
Id = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewExpressRouteGateway(ctx, "expressRouteGatewayResource", &network.ExpressRouteGatewayArgs{
ResourceGroupName: pulumi.String("string"),
VirtualHub: &network.VirtualHubIdArgs{
Id: pulumi.String("string"),
},
AllowNonVirtualWanTraffic: pulumi.Bool(false),
AutoScaleConfiguration: &network.ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs{
Bounds: &network.ExpressRouteGatewayPropertiesBoundsArgs{
Max: pulumi.Int(0),
Min: pulumi.Int(0),
},
},
ExpressRouteConnections: network.ExpressRouteConnectionTypeArray{
&network.ExpressRouteConnectionTypeArgs{
ExpressRouteCircuitPeering: &network.ExpressRouteCircuitPeeringIdArgs{
Id: pulumi.String("string"),
},
Name: pulumi.String("string"),
AuthorizationKey: 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),
},
},
ExpressRouteGatewayName: pulumi.String("string"),
Id: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var expressRouteGatewayResource = new ExpressRouteGateway("expressRouteGatewayResource", ExpressRouteGatewayArgs.builder()
.resourceGroupName("string")
.virtualHub(VirtualHubIdArgs.builder()
.id("string")
.build())
.allowNonVirtualWanTraffic(false)
.autoScaleConfiguration(ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs.builder()
.bounds(ExpressRouteGatewayPropertiesBoundsArgs.builder()
.max(0)
.min(0)
.build())
.build())
.expressRouteConnections(ExpressRouteConnectionArgs.builder()
.expressRouteCircuitPeering(ExpressRouteCircuitPeeringIdArgs.builder()
.id("string")
.build())
.name("string")
.authorizationKey("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())
.expressRouteGatewayName("string")
.id("string")
.location("string")
.tags(Map.of("string", "string"))
.build());
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",
})
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",
},
});
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
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
The ExpressRouteGateway resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Virtual
Hub Pulumi.Azure Native. Network. Inputs. Virtual Hub Id - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- Allow
Non boolVirtual Wan Traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- Auto
Scale Pulumi.Configuration Azure Native. Network. Inputs. Express Route Gateway Properties Auto Scale Configuration - Configuration for auto scaling.
- Express
Route List<Pulumi.Connections Azure Native. Network. Inputs. Express Route Connection> - 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 stringGateway Name - The name of the ExpressRoute gateway.
- Id string
- Resource ID.
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group.
- Virtual
Hub VirtualHub Id Args - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- Allow
Non boolVirtual Wan Traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- Auto
Scale ExpressConfiguration Route Gateway Properties Auto Scale Configuration Args - Configuration for auto scaling.
- Express
Route []ExpressConnections Route Connection Type Args - 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 stringGateway Name - The name of the ExpressRoute gateway.
- Id string
- Resource ID.
- Location string
- Resource location.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group.
- virtual
Hub VirtualHub Id - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- allow
Non BooleanVirtual Wan Traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- auto
Scale ExpressConfiguration Route Gateway Properties Auto Scale Configuration - Configuration for auto scaling.
- express
Route List<ExpressConnections Route Connection> - 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 StringGateway Name - The name of the ExpressRoute gateway.
- id String
- Resource ID.
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group.
- virtual
Hub VirtualHub Id - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- allow
Non booleanVirtual Wan Traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- auto
Scale ExpressConfiguration Route Gateway Properties Auto Scale Configuration - Configuration for auto scaling.
- express
Route ExpressConnections Route Connection[] - 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 stringGateway Name - The name of the ExpressRoute gateway.
- id string
- Resource ID.
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group.
- virtual_
hub VirtualHub Id Args - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- allow_
non_ boolvirtual_ wan_ traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- auto_
scale_ Expressconfiguration Route Gateway Properties Auto Scale Configuration Args - Configuration for auto scaling.
- express_
route_ Sequence[Expressconnections Route Connection Args] - 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_ strgateway_ name - The name of the ExpressRoute gateway.
- id str
- Resource ID.
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group.
- virtual
Hub Property Map - The Virtual Hub where the ExpressRoute gateway is or will be deployed.
- allow
Non BooleanVirtual Wan Traffic - Configures this gateway to accept traffic from non Virtual WAN networks.
- auto
Scale Property MapConfiguration - Configuration for auto scaling.
- express
Route List<Property Map>Connections - 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 StringGateway Name - The name of the ExpressRoute gateway.
- id String
- Resource ID.
- location String
- Resource location.
- 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.
- Provisioning
State 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.
- Provisioning
State 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.
- provisioning
State 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.
- provisioning
State 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.
- provisioning
State 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
- Express
Route Pulumi.Circuit Peering Azure Native. Network. Inputs. Express Route Circuit Peering Id - The ExpressRoute circuit peering.
- Name string
- The name of the resource.
- string
- Authorization key to establish the connection.
- 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 string
- Resource ID.
- Routing
Configuration Pulumi.Azure Native. Network. Inputs. Routing Configuration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- Routing
Weight int - The routing weight associated to the connection.
- Express
Route ExpressCircuit Peering Route Circuit Peering Id - The ExpressRoute circuit peering.
- Name string
- The name of the resource.
- string
- Authorization key to establish the connection.
- 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 string
- 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.
- express
Route ExpressCircuit Peering Route Circuit Peering Id - The ExpressRoute circuit peering.
- name String
- The name of the resource.
- String
- Authorization key to establish the connection.
- enable
Internet BooleanSecurity - Enable internet security.
- enable
Private BooleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route BooleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routing
Configuration RoutingConfiguration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight Integer - The routing weight associated to the connection.
- express
Route ExpressCircuit Peering Route Circuit Peering Id - The ExpressRoute circuit peering.
- name string
- The name of the resource.
- string
- Authorization key to establish the connection.
- enable
Internet booleanSecurity - Enable internet security.
- enable
Private booleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route booleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id string
- Resource ID.
- routing
Configuration RoutingConfiguration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight number - The routing weight associated to the connection.
- express_
route_ Expresscircuit_ peering Route Circuit Peering Id - The ExpressRoute circuit peering.
- name str
- The name of the resource.
- str
- Authorization key to establish the connection.
- 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 - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing_
weight int - The routing weight associated to the connection.
- express
Route Property MapCircuit Peering - The ExpressRoute circuit peering.
- name String
- The name of the resource.
- String
- Authorization key to establish the connection.
- enable
Internet BooleanSecurity - Enable internet security.
- enable
Private BooleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route BooleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routing
Configuration Property Map - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight Number - The routing weight associated to the connection.
ExpressRouteConnectionResponse, ExpressRouteConnectionResponseArgs
- Express
Route Pulumi.Circuit Peering Azure Native. Network. Inputs. Express Route Circuit Peering Id Response - The ExpressRoute circuit peering.
- Name string
- The name of the resource.
- Provisioning
State string - The provisioning state of the express route connection resource.
- string
- Authorization key to establish the connection.
- 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 string
- Resource ID.
- Routing
Configuration Pulumi.Azure Native. Network. Inputs. Routing Configuration Response - The Routing Configuration indicating the associated and propagated route tables on this connection.
- Routing
Weight int - The routing weight associated to the connection.
- Express
Route ExpressCircuit Peering Route Circuit Peering Id Response - The ExpressRoute circuit peering.
- Name string
- The name of the resource.
- Provisioning
State string - The provisioning state of the express route connection resource.
- string
- Authorization key to establish the connection.
- 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 string
- Resource ID.
- Routing
Configuration RoutingConfiguration Response - The Routing Configuration indicating the associated and propagated route tables on this connection.
- Routing
Weight int - The routing weight associated to the connection.
- express
Route ExpressCircuit Peering Route Circuit Peering Id Response - The ExpressRoute circuit peering.
- name String
- The name of the resource.
- provisioning
State String - The provisioning state of the express route connection resource.
- String
- Authorization key to establish the connection.
- enable
Internet BooleanSecurity - Enable internet security.
- enable
Private BooleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route BooleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routing
Configuration RoutingConfiguration Response - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight Integer - The routing weight associated to the connection.
- express
Route ExpressCircuit Peering Route Circuit Peering Id Response - The ExpressRoute circuit peering.
- name string
- The name of the resource.
- provisioning
State string - The provisioning state of the express route connection resource.
- string
- Authorization key to establish the connection.
- enable
Internet booleanSecurity - Enable internet security.
- enable
Private booleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route booleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id string
- Resource ID.
- routing
Configuration RoutingConfiguration Response - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight number - The routing weight associated to the connection.
- express_
route_ Expresscircuit_ peering Route Circuit Peering Id Response - The ExpressRoute circuit peering.
- name str
- The name of the resource.
- provisioning_
state str - The provisioning state of the express route connection resource.
- str
- Authorization key to establish the connection.
- 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 Response - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing_
weight int - The routing weight associated to the connection.
- express
Route Property MapCircuit Peering - The ExpressRoute circuit peering.
- name String
- The name of the resource.
- provisioning
State String - The provisioning state of the express route connection resource.
- String
- Authorization key to establish the connection.
- enable
Internet BooleanSecurity - Enable internet security.
- enable
Private BooleanLink Fast Path - Bypass the ExpressRoute gateway when accessing private-links. ExpressRoute FastPath (expressRouteGatewayBypass) must be enabled.
- express
Route BooleanGateway Bypass - Enable FastPath to vWan Firewall hub.
- id String
- Resource ID.
- routing
Configuration Property Map - The Routing Configuration indicating the associated and propagated route tables on this connection.
- routing
Weight Number - The routing weight associated to the connection.
ExpressRouteGatewayPropertiesAutoScaleConfiguration, ExpressRouteGatewayPropertiesAutoScaleConfigurationArgs
- Bounds
Pulumi.
Azure Native. Network. Inputs. Express Route Gateway Properties Bounds - Minimum and maximum number of scale units to deploy.
- Bounds
Express
Route Gateway Properties Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Bounds - Minimum and maximum number of scale units to deploy.
- bounds Property Map
- Minimum and maximum number of scale units to deploy.
ExpressRouteGatewayPropertiesBounds, ExpressRouteGatewayPropertiesBoundsArgs
ExpressRouteGatewayPropertiesResponseAutoScaleConfiguration, ExpressRouteGatewayPropertiesResponseAutoScaleConfigurationArgs
- Bounds
Pulumi.
Azure Native. Network. Inputs. Express Route Gateway Properties Response Bounds - Minimum and maximum number of scale units to deploy.
- Bounds
Express
Route Gateway Properties Response Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Response Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Response Bounds - Minimum and maximum number of scale units to deploy.
- bounds
Express
Route Gateway Properties Response Bounds - Minimum and maximum number of scale units to deploy.
- bounds Property Map
- Minimum and maximum number of scale units to deploy.
ExpressRouteGatewayPropertiesResponseBounds, ExpressRouteGatewayPropertiesResponseBoundsArgs
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
[]Sub
Resource - The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<Sub
Resource> - The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
Sub
Resource[] - The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[Sub
Resource] - 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
[]Sub
Resource Response - The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<Sub
Resource Response> - The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
Sub
Resource Response[] - The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[Sub
Resource 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
- Associated
Route Pulumi.Table Azure Native. Network. Inputs. Sub Resource - The resource id RouteTable associated with this RoutingConfiguration.
- Inbound
Route Pulumi.Map Azure Native. Network. Inputs. Sub Resource - The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- Outbound
Route Pulumi.Map Azure Native. Network. Inputs. Sub Resource - The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- Propagated
Route Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table - The list of RouteTables to advertise the routes to.
- Vnet
Routes Pulumi.Azure Native. Network. Inputs. Vnet Route - 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.
- 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.
- 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.
- 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.
- associated
Route Property MapTable - The resource id RouteTable associated with this RoutingConfiguration.
- inbound
Route Property MapMap - The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outbound
Route Property MapMap - The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagated
Route Property MapTables - The list of RouteTables to advertise the routes to.
- vnet
Routes Property Map - List of routes that control routing from VirtualHub into a virtual network connection.
RoutingConfigurationResponse, RoutingConfigurationResponseArgs
- Associated
Route Pulumi.Table Azure Native. Network. Inputs. Sub Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- Inbound
Route Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response - The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- Outbound
Route Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response - The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- Propagated
Route Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table Response - The list of RouteTables to advertise the routes to.
- Vnet
Routes Pulumi.Azure Native. Network. Inputs. Vnet Route 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.
- 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.
- 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.
- 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.
- associated
Route Property MapTable - The resource id RouteTable associated with this RoutingConfiguration.
- inbound
Route Property MapMap - The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outbound
Route Property MapMap - The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagated
Route Property MapTables - The list of RouteTables to advertise the routes to.
- vnet
Routes Property Map - List of routes that control routing from VirtualHub into a virtual network connection.
StaticRoute, StaticRouteArgs
- Address
Prefixes List<string> - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- Address
Prefixes []string - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
- address
Prefixes string[] - List of all address prefixes.
- name string
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop 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.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
StaticRouteResponse, StaticRouteResponseArgs
- Address
Prefixes List<string> - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- Address
Prefixes []string - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
- address
Prefixes string[] - List of all address prefixes.
- name string
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop 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.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
StaticRoutesConfig, StaticRoutesConfigArgs
- Vnet
Local 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.
- Vnet
Local 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 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 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.
- vnet
Local String | "Contains" | "Equal"Route Override Criteria - Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
StaticRoutesConfigResponse, StaticRoutesConfigResponseArgs
- Propagate
Static boolRoutes - Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- Vnet
Local 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 stringRoute Override Criteria - Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagate
Static BooleanRoutes - Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnet
Local StringRoute Override Criteria - Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagate
Static booleanRoutes - Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnet
Local 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.
- propagate
Static BooleanRoutes - Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnet
Local 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.
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
- Vnet
Local Route Override Criteria Contains - Contains
- Vnet
Local Route Override Criteria Equal - Equal
- Contains
- Contains
- Equal
- Equal
- Contains
- Contains
- Equal
- Equal
- CONTAINS
- Contains
- EQUAL
- Equal
- "Contains"
- Contains
- "Equal"
- Equal
VnetRoute, VnetRouteArgs
- Static
Routes List<Pulumi.Azure Native. Network. Inputs. Static Route> - List of all Static Routes.
- Static
Routes Pulumi.Config Azure Native. Network. Inputs. Static Routes Config - Configuration for static routes on this HubVnetConnection.
- Static
Routes []StaticRoute - List of all Static Routes.
- Static
Routes StaticConfig Routes Config - Configuration for static routes on this HubVnetConnection.
- static
Routes List<StaticRoute> - List of all Static Routes.
- static
Routes StaticConfig Routes Config - Configuration for static routes on this HubVnetConnection.
- static
Routes StaticRoute[] - List of all Static Routes.
- static
Routes 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.
- static
Routes List<Property Map> - List of all Static Routes.
- static
Routes Property MapConfig - Configuration for static routes on this HubVnetConnection.
VnetRouteResponse, VnetRouteResponseArgs
- Bgp
Connections List<Pulumi.Azure Native. Network. Inputs. Sub Resource Response> - The list of references to HubBgpConnection objects.
- Static
Routes List<Pulumi.Azure Native. Network. Inputs. Static Route Response> - List of all Static Routes.
- Static
Routes Pulumi.Config Azure Native. Network. Inputs. Static Routes Config Response - Configuration for static routes on this HubVnetConnection.
- Bgp
Connections []SubResource Response - The list of references to HubBgpConnection objects.
- Static
Routes []StaticRoute Response - List of all Static Routes.
- Static
Routes StaticConfig Routes Config Response - Configuration for static routes on this HubVnetConnection.
- bgp
Connections List<SubResource Response> - The list of references to HubBgpConnection objects.
- static
Routes List<StaticRoute Response> - List of all Static Routes.
- static
Routes StaticConfig Routes Config Response - Configuration for static routes on this HubVnetConnection.
- bgp
Connections SubResource Response[] - The list of references to HubBgpConnection objects.
- static
Routes StaticRoute Response[] - List of all Static Routes.
- static
Routes 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.
- bgp
Connections List<Property Map> - The list of references to HubBgpConnection objects.
- static
Routes List<Property Map> - List of all Static Routes.
- static
Routes 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:ExpressRouteGateway gateway-2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0