1. Packages
  2. Azure Native v2
  3. API Docs
  4. network
  5. ExpressRouteCircuitPeering
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.ExpressRouteCircuitPeering

Explore with Pulumi AI

Peering in an ExpressRouteCircuit resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

Other available API versions: 2019-02-01, 2019-06-01, 2019-08-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

Create ExpressRouteCircuit Peerings

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

return await Deployment.RunAsync(() => 
{
    var expressRouteCircuitPeering = new AzureNative.Network.ExpressRouteCircuitPeering("expressRouteCircuitPeering", new()
    {
        CircuitName = "circuitName",
        PeerASN = 200,
        PeeringName = "AzurePrivatePeering",
        PrimaryPeerAddressPrefix = "192.168.16.252/30",
        ResourceGroupName = "rg1",
        SecondaryPeerAddressPrefix = "192.168.18.252/30",
        VlanId = 200,
    });

});
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.NewExpressRouteCircuitPeering(ctx, "expressRouteCircuitPeering", &network.ExpressRouteCircuitPeeringArgs{
			CircuitName:                pulumi.String("circuitName"),
			PeerASN:                    pulumi.Float64(200),
			PeeringName:                pulumi.String("AzurePrivatePeering"),
			PrimaryPeerAddressPrefix:   pulumi.String("192.168.16.252/30"),
			ResourceGroupName:          pulumi.String("rg1"),
			SecondaryPeerAddressPrefix: pulumi.String("192.168.18.252/30"),
			VlanId:                     pulumi.Int(200),
		})
		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.ExpressRouteCircuitPeering;
import com.pulumi.azurenative.network.ExpressRouteCircuitPeeringArgs;
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 expressRouteCircuitPeering = new ExpressRouteCircuitPeering("expressRouteCircuitPeering", ExpressRouteCircuitPeeringArgs.builder()
            .circuitName("circuitName")
            .peerASN(200)
            .peeringName("AzurePrivatePeering")
            .primaryPeerAddressPrefix("192.168.16.252/30")
            .resourceGroupName("rg1")
            .secondaryPeerAddressPrefix("192.168.18.252/30")
            .vlanId(200)
            .build());

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

const expressRouteCircuitPeering = new azure_native.network.ExpressRouteCircuitPeering("expressRouteCircuitPeering", {
    circuitName: "circuitName",
    peerASN: 200,
    peeringName: "AzurePrivatePeering",
    primaryPeerAddressPrefix: "192.168.16.252/30",
    resourceGroupName: "rg1",
    secondaryPeerAddressPrefix: "192.168.18.252/30",
    vlanId: 200,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

express_route_circuit_peering = azure_native.network.ExpressRouteCircuitPeering("expressRouteCircuitPeering",
    circuit_name="circuitName",
    peer_asn=200,
    peering_name="AzurePrivatePeering",
    primary_peer_address_prefix="192.168.16.252/30",
    resource_group_name="rg1",
    secondary_peer_address_prefix="192.168.18.252/30",
    vlan_id=200)
Copy
resources:
  expressRouteCircuitPeering:
    type: azure-native:network:ExpressRouteCircuitPeering
    properties:
      circuitName: circuitName
      peerASN: 200
      peeringName: AzurePrivatePeering
      primaryPeerAddressPrefix: 192.168.16.252/30
      resourceGroupName: rg1
      secondaryPeerAddressPrefix: 192.168.18.252/30
      vlanId: 200
Copy

Create ExpressRouteCircuitPeering Resource

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

Constructor syntax

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

@overload
def ExpressRouteCircuitPeering(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               resource_group_name: Optional[str] = None,
                               circuit_name: Optional[str] = None,
                               peering_type: Optional[Union[str, ExpressRoutePeeringType]] = None,
                               primary_azure_port: Optional[str] = None,
                               id: Optional[str] = None,
                               ipv6_peering_config: Optional[Ipv6ExpressRouteCircuitPeeringConfigArgs] = None,
                               microsoft_peering_config: Optional[ExpressRouteCircuitPeeringConfigArgs] = None,
                               name: Optional[str] = None,
                               peer_asn: Optional[float] = None,
                               peering_name: Optional[str] = None,
                               azure_asn: Optional[int] = None,
                               gateway_manager_etag: Optional[str] = None,
                               primary_peer_address_prefix: Optional[str] = None,
                               connections: Optional[Sequence[ExpressRouteCircuitConnectionArgs]] = None,
                               route_filter: Optional[SubResourceArgs] = None,
                               secondary_azure_port: Optional[str] = None,
                               secondary_peer_address_prefix: Optional[str] = None,
                               shared_key: Optional[str] = None,
                               state: Optional[Union[str, ExpressRoutePeeringState]] = None,
                               stats: Optional[ExpressRouteCircuitStatsArgs] = None,
                               vlan_id: Optional[int] = None)
func NewExpressRouteCircuitPeering(ctx *Context, name string, args ExpressRouteCircuitPeeringArgs, opts ...ResourceOption) (*ExpressRouteCircuitPeering, error)
public ExpressRouteCircuitPeering(string name, ExpressRouteCircuitPeeringArgs args, CustomResourceOptions? opts = null)
public ExpressRouteCircuitPeering(String name, ExpressRouteCircuitPeeringArgs args)
public ExpressRouteCircuitPeering(String name, ExpressRouteCircuitPeeringArgs args, CustomResourceOptions options)
type: azure-native:network:ExpressRouteCircuitPeering
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. ExpressRouteCircuitPeeringArgs
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. ExpressRouteCircuitPeeringInitArgs
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. ExpressRouteCircuitPeeringArgs
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. ExpressRouteCircuitPeeringArgs
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. ExpressRouteCircuitPeeringArgs
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 expressRouteCircuitPeeringResource = new AzureNative.Network.ExpressRouteCircuitPeering("expressRouteCircuitPeeringResource", new()
{
    ResourceGroupName = "string",
    CircuitName = "string",
    PeeringType = "string",
    PrimaryAzurePort = "string",
    Id = "string",
    Ipv6PeeringConfig = 
    {
        { "microsoftPeeringConfig", 
        {
            { "advertisedCommunities", new[]
            {
                "string",
            } },
            { "advertisedPublicPrefixes", new[]
            {
                "string",
            } },
            { "customerASN", 0 },
            { "legacyMode", 0 },
            { "routingRegistryName", "string" },
        } },
        { "primaryPeerAddressPrefix", "string" },
        { "routeFilter", 
        {
            { "id", "string" },
        } },
        { "secondaryPeerAddressPrefix", "string" },
        { "state", "string" },
    },
    MicrosoftPeeringConfig = 
    {
        { "advertisedCommunities", new[]
        {
            "string",
        } },
        { "advertisedPublicPrefixes", new[]
        {
            "string",
        } },
        { "customerASN", 0 },
        { "legacyMode", 0 },
        { "routingRegistryName", "string" },
    },
    Name = "string",
    PeerASN = 0,
    PeeringName = "string",
    AzureASN = 0,
    GatewayManagerEtag = "string",
    PrimaryPeerAddressPrefix = "string",
    Connections = new[]
    {
        
        {
            { "addressPrefix", "string" },
            { "authorizationKey", "string" },
            { "expressRouteCircuitPeering", 
            {
                { "id", "string" },
            } },
            { "id", "string" },
            { "ipv6CircuitConnectionConfig", 
            {
                { "addressPrefix", "string" },
            } },
            { "name", "string" },
            { "peerExpressRouteCircuitPeering", 
            {
                { "id", "string" },
            } },
        },
    },
    RouteFilter = 
    {
        { "id", "string" },
    },
    SecondaryAzurePort = "string",
    SecondaryPeerAddressPrefix = "string",
    SharedKey = "string",
    State = "string",
    Stats = 
    {
        { "primarybytesIn", 0 },
        { "primarybytesOut", 0 },
        { "secondarybytesIn", 0 },
        { "secondarybytesOut", 0 },
    },
    VlanId = 0,
});
Copy
example, err := network.NewExpressRouteCircuitPeering(ctx, "expressRouteCircuitPeeringResource", &network.ExpressRouteCircuitPeeringArgs{
	ResourceGroupName: "string",
	CircuitName:       "string",
	PeeringType:       "string",
	PrimaryAzurePort:  "string",
	Id:                "string",
	Ipv6PeeringConfig: map[string]interface{}{
		"microsoftPeeringConfig": map[string]interface{}{
			"advertisedCommunities": []string{
				"string",
			},
			"advertisedPublicPrefixes": []string{
				"string",
			},
			"customerASN":         0,
			"legacyMode":          0,
			"routingRegistryName": "string",
		},
		"primaryPeerAddressPrefix": "string",
		"routeFilter": map[string]interface{}{
			"id": "string",
		},
		"secondaryPeerAddressPrefix": "string",
		"state":                      "string",
	},
	MicrosoftPeeringConfig: map[string]interface{}{
		"advertisedCommunities": []string{
			"string",
		},
		"advertisedPublicPrefixes": []string{
			"string",
		},
		"customerASN":         0,
		"legacyMode":          0,
		"routingRegistryName": "string",
	},
	Name:                     "string",
	PeerASN:                  0,
	PeeringName:              "string",
	AzureASN:                 0,
	GatewayManagerEtag:       "string",
	PrimaryPeerAddressPrefix: "string",
	Connections: []map[string]interface{}{
		map[string]interface{}{
			"addressPrefix":    "string",
			"authorizationKey": "string",
			"expressRouteCircuitPeering": map[string]interface{}{
				"id": "string",
			},
			"id": "string",
			"ipv6CircuitConnectionConfig": map[string]interface{}{
				"addressPrefix": "string",
			},
			"name": "string",
			"peerExpressRouteCircuitPeering": map[string]interface{}{
				"id": "string",
			},
		},
	},
	RouteFilter: map[string]interface{}{
		"id": "string",
	},
	SecondaryAzurePort:         "string",
	SecondaryPeerAddressPrefix: "string",
	SharedKey:                  "string",
	State:                      "string",
	Stats: map[string]interface{}{
		"primarybytesIn":    0,
		"primarybytesOut":   0,
		"secondarybytesIn":  0,
		"secondarybytesOut": 0,
	},
	VlanId: 0,
})
Copy
var expressRouteCircuitPeeringResource = new ExpressRouteCircuitPeering("expressRouteCircuitPeeringResource", ExpressRouteCircuitPeeringArgs.builder()
    .resourceGroupName("string")
    .circuitName("string")
    .peeringType("string")
    .primaryAzurePort("string")
    .id("string")
    .ipv6PeeringConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .microsoftPeeringConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .name("string")
    .peerASN(0)
    .peeringName("string")
    .azureASN(0)
    .gatewayManagerEtag("string")
    .primaryPeerAddressPrefix("string")
    .connections(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .routeFilter(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .secondaryAzurePort("string")
    .secondaryPeerAddressPrefix("string")
    .sharedKey("string")
    .state("string")
    .stats(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .vlanId(0)
    .build());
Copy
express_route_circuit_peering_resource = azure_native.network.ExpressRouteCircuitPeering("expressRouteCircuitPeeringResource",
    resource_group_name=string,
    circuit_name=string,
    peering_type=string,
    primary_azure_port=string,
    id=string,
    ipv6_peering_config={
        microsoftPeeringConfig: {
            advertisedCommunities: [string],
            advertisedPublicPrefixes: [string],
            customerASN: 0,
            legacyMode: 0,
            routingRegistryName: string,
        },
        primaryPeerAddressPrefix: string,
        routeFilter: {
            id: string,
        },
        secondaryPeerAddressPrefix: string,
        state: string,
    },
    microsoft_peering_config={
        advertisedCommunities: [string],
        advertisedPublicPrefixes: [string],
        customerASN: 0,
        legacyMode: 0,
        routingRegistryName: string,
    },
    name=string,
    peer_asn=0,
    peering_name=string,
    azure_asn=0,
    gateway_manager_etag=string,
    primary_peer_address_prefix=string,
    connections=[{
        addressPrefix: string,
        authorizationKey: string,
        expressRouteCircuitPeering: {
            id: string,
        },
        id: string,
        ipv6CircuitConnectionConfig: {
            addressPrefix: string,
        },
        name: string,
        peerExpressRouteCircuitPeering: {
            id: string,
        },
    }],
    route_filter={
        id: string,
    },
    secondary_azure_port=string,
    secondary_peer_address_prefix=string,
    shared_key=string,
    state=string,
    stats={
        primarybytesIn: 0,
        primarybytesOut: 0,
        secondarybytesIn: 0,
        secondarybytesOut: 0,
    },
    vlan_id=0)
Copy
const expressRouteCircuitPeeringResource = new azure_native.network.ExpressRouteCircuitPeering("expressRouteCircuitPeeringResource", {
    resourceGroupName: "string",
    circuitName: "string",
    peeringType: "string",
    primaryAzurePort: "string",
    id: "string",
    ipv6PeeringConfig: {
        microsoftPeeringConfig: {
            advertisedCommunities: ["string"],
            advertisedPublicPrefixes: ["string"],
            customerASN: 0,
            legacyMode: 0,
            routingRegistryName: "string",
        },
        primaryPeerAddressPrefix: "string",
        routeFilter: {
            id: "string",
        },
        secondaryPeerAddressPrefix: "string",
        state: "string",
    },
    microsoftPeeringConfig: {
        advertisedCommunities: ["string"],
        advertisedPublicPrefixes: ["string"],
        customerASN: 0,
        legacyMode: 0,
        routingRegistryName: "string",
    },
    name: "string",
    peerASN: 0,
    peeringName: "string",
    azureASN: 0,
    gatewayManagerEtag: "string",
    primaryPeerAddressPrefix: "string",
    connections: [{
        addressPrefix: "string",
        authorizationKey: "string",
        expressRouteCircuitPeering: {
            id: "string",
        },
        id: "string",
        ipv6CircuitConnectionConfig: {
            addressPrefix: "string",
        },
        name: "string",
        peerExpressRouteCircuitPeering: {
            id: "string",
        },
    }],
    routeFilter: {
        id: "string",
    },
    secondaryAzurePort: "string",
    secondaryPeerAddressPrefix: "string",
    sharedKey: "string",
    state: "string",
    stats: {
        primarybytesIn: 0,
        primarybytesOut: 0,
        secondarybytesIn: 0,
        secondarybytesOut: 0,
    },
    vlanId: 0,
});
Copy
type: azure-native:network:ExpressRouteCircuitPeering
properties:
    azureASN: 0
    circuitName: string
    connections:
        - addressPrefix: string
          authorizationKey: string
          expressRouteCircuitPeering:
            id: string
          id: string
          ipv6CircuitConnectionConfig:
            addressPrefix: string
          name: string
          peerExpressRouteCircuitPeering:
            id: string
    gatewayManagerEtag: string
    id: string
    ipv6PeeringConfig:
        microsoftPeeringConfig:
            advertisedCommunities:
                - string
            advertisedPublicPrefixes:
                - string
            customerASN: 0
            legacyMode: 0
            routingRegistryName: string
        primaryPeerAddressPrefix: string
        routeFilter:
            id: string
        secondaryPeerAddressPrefix: string
        state: string
    microsoftPeeringConfig:
        advertisedCommunities:
            - string
        advertisedPublicPrefixes:
            - string
        customerASN: 0
        legacyMode: 0
        routingRegistryName: string
    name: string
    peerASN: 0
    peeringName: string
    peeringType: string
    primaryAzurePort: string
    primaryPeerAddressPrefix: string
    resourceGroupName: string
    routeFilter:
        id: string
    secondaryAzurePort: string
    secondaryPeerAddressPrefix: string
    sharedKey: string
    state: string
    stats:
        primarybytesIn: 0
        primarybytesOut: 0
        secondarybytesIn: 0
        secondarybytesOut: 0
    vlanId: 0
Copy

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

CircuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AzureASN int
The Azure ASN.
Connections List<Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitConnection>
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
GatewayManagerEtag string
The GatewayManager Etag.
Id string
Resource ID.
Ipv6PeeringConfig Pulumi.AzureNative.Network.Inputs.Ipv6ExpressRouteCircuitPeeringConfig
The IPv6 peering configuration.
MicrosoftPeeringConfig Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerASN double
The peer ASN.
PeeringName Changes to this property will trigger replacement. string
The name of the peering.
PeeringType string | Pulumi.AzureNative.Network.ExpressRoutePeeringType
The peering type.
PrimaryAzurePort string
The primary port.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter Pulumi.AzureNative.Network.Inputs.SubResource
The reference to the RouteFilter resource.
SecondaryAzurePort string
The secondary port.
SecondaryPeerAddressPrefix string
The secondary address prefix.
SharedKey string
The shared key.
State string | Pulumi.AzureNative.Network.ExpressRoutePeeringState
The peering state.
Stats Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitStats
The peering stats of express route circuit.
VlanId int
The VLAN ID.
CircuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AzureASN int
The Azure ASN.
Connections []ExpressRouteCircuitConnectionTypeArgs
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
GatewayManagerEtag string
The GatewayManager Etag.
Id string
Resource ID.
Ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfigArgs
The IPv6 peering configuration.
MicrosoftPeeringConfig ExpressRouteCircuitPeeringConfigArgs
The Microsoft peering configuration.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerASN float64
The peer ASN.
PeeringName Changes to this property will trigger replacement. string
The name of the peering.
PeeringType string | ExpressRoutePeeringType
The peering type.
PrimaryAzurePort string
The primary port.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter SubResourceArgs
The reference to the RouteFilter resource.
SecondaryAzurePort string
The secondary port.
SecondaryPeerAddressPrefix string
The secondary address prefix.
SharedKey string
The shared key.
State string | ExpressRoutePeeringState
The peering state.
Stats ExpressRouteCircuitStatsArgs
The peering stats of express route circuit.
VlanId int
The VLAN ID.
circuitName
This property is required.
Changes to this property will trigger replacement.
String
The name of the express route circuit.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
azureASN Integer
The Azure ASN.
connections List<ExpressRouteCircuitConnection>
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
gatewayManagerEtag String
The GatewayManager Etag.
id String
Resource ID.
ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfig
The IPv6 peering configuration.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerASN Double
The peer ASN.
peeringName Changes to this property will trigger replacement. String
The name of the peering.
peeringType String | ExpressRoutePeeringType
The peering type.
primaryAzurePort String
The primary port.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter SubResource
The reference to the RouteFilter resource.
secondaryAzurePort String
The secondary port.
secondaryPeerAddressPrefix String
The secondary address prefix.
sharedKey String
The shared key.
state String | ExpressRoutePeeringState
The peering state.
stats ExpressRouteCircuitStats
The peering stats of express route circuit.
vlanId Integer
The VLAN ID.
circuitName
This property is required.
Changes to this property will trigger replacement.
string
The name of the express route circuit.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
azureASN number
The Azure ASN.
connections ExpressRouteCircuitConnection[]
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
gatewayManagerEtag string
The GatewayManager Etag.
id string
Resource ID.
ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfig
The IPv6 peering configuration.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerASN number
The peer ASN.
peeringName Changes to this property will trigger replacement. string
The name of the peering.
peeringType string | ExpressRoutePeeringType
The peering type.
primaryAzurePort string
The primary port.
primaryPeerAddressPrefix string
The primary address prefix.
routeFilter SubResource
The reference to the RouteFilter resource.
secondaryAzurePort string
The secondary port.
secondaryPeerAddressPrefix string
The secondary address prefix.
sharedKey string
The shared key.
state string | ExpressRoutePeeringState
The peering state.
stats ExpressRouteCircuitStats
The peering stats of express route circuit.
vlanId number
The VLAN ID.
circuit_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the express route circuit.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
azure_asn int
The Azure ASN.
connections Sequence[ExpressRouteCircuitConnectionArgs]
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
gateway_manager_etag str
The GatewayManager Etag.
id str
Resource ID.
ipv6_peering_config Ipv6ExpressRouteCircuitPeeringConfigArgs
The IPv6 peering configuration.
microsoft_peering_config ExpressRouteCircuitPeeringConfigArgs
The Microsoft peering configuration.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peer_asn float
The peer ASN.
peering_name Changes to this property will trigger replacement. str
The name of the peering.
peering_type str | ExpressRoutePeeringType
The peering type.
primary_azure_port str
The primary port.
primary_peer_address_prefix str
The primary address prefix.
route_filter SubResourceArgs
The reference to the RouteFilter resource.
secondary_azure_port str
The secondary port.
secondary_peer_address_prefix str
The secondary address prefix.
shared_key str
The shared key.
state str | ExpressRoutePeeringState
The peering state.
stats ExpressRouteCircuitStatsArgs
The peering stats of express route circuit.
vlan_id int
The VLAN ID.
circuitName
This property is required.
Changes to this property will trigger replacement.
String
The name of the express route circuit.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
azureASN Number
The Azure ASN.
connections List<Property Map>
The list of circuit connections associated with Azure Private Peering for this circuit. 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.
gatewayManagerEtag String
The GatewayManager Etag.
id String
Resource ID.
ipv6PeeringConfig Property Map
The IPv6 peering configuration.
microsoftPeeringConfig Property Map
The Microsoft peering configuration.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerASN Number
The peer ASN.
peeringName Changes to this property will trigger replacement. String
The name of the peering.
peeringType String | "AzurePublicPeering" | "AzurePrivatePeering" | "MicrosoftPeering"
The peering type.
primaryAzurePort String
The primary port.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter Property Map
The reference to the RouteFilter resource.
secondaryAzurePort String
The secondary port.
secondaryPeerAddressPrefix String
The secondary address prefix.
sharedKey String
The shared key.
state String | "Disabled" | "Enabled"
The peering state.
stats Property Map
The peering stats of express route circuit.
vlanId Number
The VLAN ID.

Outputs

All input properties are implicitly available as output properties. Additionally, the ExpressRouteCircuitPeering 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.
LastModifiedBy string
Who was the last to modify the peering.
PeeredConnections List<Pulumi.AzureNative.Network.Outputs.PeerExpressRouteCircuitConnectionResponse>
The list of peered circuit connections associated with Azure Private Peering for this circuit.
ProvisioningState string
The provisioning state of the express route circuit peering resource.
Type string
Type of the resource.
ExpressRouteConnection Pulumi.AzureNative.Network.Outputs.ExpressRouteConnectionIdResponse
The ExpressRoute connection.
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.
LastModifiedBy string
Who was the last to modify the peering.
PeeredConnections []PeerExpressRouteCircuitConnectionResponse
The list of peered circuit connections associated with Azure Private Peering for this circuit.
ProvisioningState string
The provisioning state of the express route circuit peering resource.
Type string
Type of the resource.
ExpressRouteConnection ExpressRouteConnectionIdResponse
The ExpressRoute connection.
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.
lastModifiedBy String
Who was the last to modify the peering.
peeredConnections List<PeerExpressRouteCircuitConnectionResponse>
The list of peered circuit connections associated with Azure Private Peering for this circuit.
provisioningState String
The provisioning state of the express route circuit peering resource.
type String
Type of the resource.
expressRouteConnection ExpressRouteConnectionIdResponse
The ExpressRoute connection.
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.
lastModifiedBy string
Who was the last to modify the peering.
peeredConnections PeerExpressRouteCircuitConnectionResponse[]
The list of peered circuit connections associated with Azure Private Peering for this circuit.
provisioningState string
The provisioning state of the express route circuit peering resource.
type string
Type of the resource.
expressRouteConnection ExpressRouteConnectionIdResponse
The ExpressRoute connection.
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.
last_modified_by str
Who was the last to modify the peering.
peered_connections Sequence[PeerExpressRouteCircuitConnectionResponse]
The list of peered circuit connections associated with Azure Private Peering for this circuit.
provisioning_state str
The provisioning state of the express route circuit peering resource.
type str
Type of the resource.
express_route_connection ExpressRouteConnectionIdResponse
The ExpressRoute connection.
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.
lastModifiedBy String
Who was the last to modify the peering.
peeredConnections List<Property Map>
The list of peered circuit connections associated with Azure Private Peering for this circuit.
provisioningState String
The provisioning state of the express route circuit peering resource.
type String
Type of the resource.
expressRouteConnection Property Map
The ExpressRoute connection.

Supporting Types

ExpressRouteCircuitConnection
, ExpressRouteCircuitConnectionArgs

AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Pulumi.AzureNative.Network.Inputs.Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
expressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
addressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey string
The authorization key.
expressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id string
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
address_prefix str
/29 IP address space to carve out Customer addresses for tunnels.
authorization_key str
The authorization key.
express_route_circuit_peering SubResource
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id str
Resource ID.
ipv6_circuit_connection_config Ipv6CircuitConnectionConfig
IPv6 Address PrefixProperties of the express route circuit connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peer_express_route_circuit_peering SubResource
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
expressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Property Map
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the peered circuit.

ExpressRouteCircuitConnectionResponse
, ExpressRouteCircuitConnectionResponseArgs

CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ProvisioningState This property is required. string
The provisioning state of the express route circuit connection resource.
Type This property is required. string
Type of the resource.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Pulumi.AzureNative.Network.Inputs.Ipv6CircuitConnectionConfigResponse
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ProvisioningState This property is required. string
The provisioning state of the express route circuit connection resource.
Type This property is required. string
Type of the resource.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthorizationKey string
The authorization key.
ExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
Id string
Resource ID.
Ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
IPv6 Address PrefixProperties of the express route circuit connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. String
The provisioning state of the express route circuit connection resource.
type This property is required. String
Type of the resource.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
expressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. string
Express Route Circuit connection state.
etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. string
The provisioning state of the express route circuit connection resource.
type This property is required. string
Type of the resource.
addressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey string
The authorization key.
expressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id string
Resource ID.
ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
IPv6 Address PrefixProperties of the express route circuit connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuit_connection_status This property is required. str
Express Route Circuit connection state.
etag This property is required. str
A unique read-only string that changes whenever the resource is updated.
provisioning_state This property is required. str
The provisioning state of the express route circuit connection resource.
type This property is required. str
Type of the resource.
address_prefix str
/29 IP address space to carve out Customer addresses for tunnels.
authorization_key str
The authorization key.
express_route_circuit_peering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id str
Resource ID.
ipv6_circuit_connection_config Ipv6CircuitConnectionConfigResponse
IPv6 Address PrefixProperties of the express route circuit connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peer_express_route_circuit_peering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. String
The provisioning state of the express route circuit connection resource.
type This property is required. String
Type of the resource.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authorizationKey String
The authorization key.
expressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
id String
Resource ID.
ipv6CircuitConnectionConfig Property Map
IPv6 Address PrefixProperties of the express route circuit connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the peered circuit.

ExpressRouteCircuitPeeringConfig
, ExpressRouteCircuitPeeringConfigArgs

AdvertisedCommunities List<string>
The communities of bgp peering. Specified for microsoft peering.
AdvertisedPublicPrefixes List<string>
The reference to AdvertisedPublicPrefixes.
CustomerASN int
The CustomerASN of the peering.
LegacyMode int
The legacy mode of the peering.
RoutingRegistryName string
The RoutingRegistryName of the configuration.
AdvertisedCommunities []string
The communities of bgp peering. Specified for microsoft peering.
AdvertisedPublicPrefixes []string
The reference to AdvertisedPublicPrefixes.
CustomerASN int
The CustomerASN of the peering.
LegacyMode int
The legacy mode of the peering.
RoutingRegistryName string
The RoutingRegistryName of the configuration.
advertisedCommunities List<String>
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes List<String>
The reference to AdvertisedPublicPrefixes.
customerASN Integer
The CustomerASN of the peering.
legacyMode Integer
The legacy mode of the peering.
routingRegistryName String
The RoutingRegistryName of the configuration.
advertisedCommunities string[]
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes string[]
The reference to AdvertisedPublicPrefixes.
customerASN number
The CustomerASN of the peering.
legacyMode number
The legacy mode of the peering.
routingRegistryName string
The RoutingRegistryName of the configuration.
advertised_communities Sequence[str]
The communities of bgp peering. Specified for microsoft peering.
advertised_public_prefixes Sequence[str]
The reference to AdvertisedPublicPrefixes.
customer_asn int
The CustomerASN of the peering.
legacy_mode int
The legacy mode of the peering.
routing_registry_name str
The RoutingRegistryName of the configuration.
advertisedCommunities List<String>
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes List<String>
The reference to AdvertisedPublicPrefixes.
customerASN Number
The CustomerASN of the peering.
legacyMode Number
The legacy mode of the peering.
routingRegistryName String
The RoutingRegistryName of the configuration.

ExpressRouteCircuitPeeringConfigResponse
, ExpressRouteCircuitPeeringConfigResponseArgs

AdvertisedPublicPrefixesState This property is required. string
The advertised public prefix state of the Peering resource.
AdvertisedCommunities List<string>
The communities of bgp peering. Specified for microsoft peering.
AdvertisedPublicPrefixes List<string>
The reference to AdvertisedPublicPrefixes.
CustomerASN int
The CustomerASN of the peering.
LegacyMode int
The legacy mode of the peering.
RoutingRegistryName string
The RoutingRegistryName of the configuration.
AdvertisedPublicPrefixesState This property is required. string
The advertised public prefix state of the Peering resource.
AdvertisedCommunities []string
The communities of bgp peering. Specified for microsoft peering.
AdvertisedPublicPrefixes []string
The reference to AdvertisedPublicPrefixes.
CustomerASN int
The CustomerASN of the peering.
LegacyMode int
The legacy mode of the peering.
RoutingRegistryName string
The RoutingRegistryName of the configuration.
advertisedPublicPrefixesState This property is required. String
The advertised public prefix state of the Peering resource.
advertisedCommunities List<String>
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes List<String>
The reference to AdvertisedPublicPrefixes.
customerASN Integer
The CustomerASN of the peering.
legacyMode Integer
The legacy mode of the peering.
routingRegistryName String
The RoutingRegistryName of the configuration.
advertisedPublicPrefixesState This property is required. string
The advertised public prefix state of the Peering resource.
advertisedCommunities string[]
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes string[]
The reference to AdvertisedPublicPrefixes.
customerASN number
The CustomerASN of the peering.
legacyMode number
The legacy mode of the peering.
routingRegistryName string
The RoutingRegistryName of the configuration.
advertised_public_prefixes_state This property is required. str
The advertised public prefix state of the Peering resource.
advertised_communities Sequence[str]
The communities of bgp peering. Specified for microsoft peering.
advertised_public_prefixes Sequence[str]
The reference to AdvertisedPublicPrefixes.
customer_asn int
The CustomerASN of the peering.
legacy_mode int
The legacy mode of the peering.
routing_registry_name str
The RoutingRegistryName of the configuration.
advertisedPublicPrefixesState This property is required. String
The advertised public prefix state of the Peering resource.
advertisedCommunities List<String>
The communities of bgp peering. Specified for microsoft peering.
advertisedPublicPrefixes List<String>
The reference to AdvertisedPublicPrefixes.
customerASN Number
The CustomerASN of the peering.
legacyMode Number
The legacy mode of the peering.
routingRegistryName String
The RoutingRegistryName of the configuration.

ExpressRouteCircuitPeeringState
, ExpressRouteCircuitPeeringStateArgs

Disabled
Disabled
Enabled
Enabled
ExpressRouteCircuitPeeringStateDisabled
Disabled
ExpressRouteCircuitPeeringStateEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

ExpressRouteCircuitStats
, ExpressRouteCircuitStatsArgs

PrimarybytesIn double
The Primary BytesIn of the peering.
PrimarybytesOut double
The primary BytesOut of the peering.
SecondarybytesIn double
The secondary BytesIn of the peering.
SecondarybytesOut double
The secondary BytesOut of the peering.
PrimarybytesIn float64
The Primary BytesIn of the peering.
PrimarybytesOut float64
The primary BytesOut of the peering.
SecondarybytesIn float64
The secondary BytesIn of the peering.
SecondarybytesOut float64
The secondary BytesOut of the peering.
primarybytesIn Double
The Primary BytesIn of the peering.
primarybytesOut Double
The primary BytesOut of the peering.
secondarybytesIn Double
The secondary BytesIn of the peering.
secondarybytesOut Double
The secondary BytesOut of the peering.
primarybytesIn number
The Primary BytesIn of the peering.
primarybytesOut number
The primary BytesOut of the peering.
secondarybytesIn number
The secondary BytesIn of the peering.
secondarybytesOut number
The secondary BytesOut of the peering.
primarybytes_in float
The Primary BytesIn of the peering.
primarybytes_out float
The primary BytesOut of the peering.
secondarybytes_in float
The secondary BytesIn of the peering.
secondarybytes_out float
The secondary BytesOut of the peering.
primarybytesIn Number
The Primary BytesIn of the peering.
primarybytesOut Number
The primary BytesOut of the peering.
secondarybytesIn Number
The secondary BytesIn of the peering.
secondarybytesOut Number
The secondary BytesOut of the peering.

ExpressRouteCircuitStatsResponse
, ExpressRouteCircuitStatsResponseArgs

PrimarybytesIn double
The Primary BytesIn of the peering.
PrimarybytesOut double
The primary BytesOut of the peering.
SecondarybytesIn double
The secondary BytesIn of the peering.
SecondarybytesOut double
The secondary BytesOut of the peering.
PrimarybytesIn float64
The Primary BytesIn of the peering.
PrimarybytesOut float64
The primary BytesOut of the peering.
SecondarybytesIn float64
The secondary BytesIn of the peering.
SecondarybytesOut float64
The secondary BytesOut of the peering.
primarybytesIn Double
The Primary BytesIn of the peering.
primarybytesOut Double
The primary BytesOut of the peering.
secondarybytesIn Double
The secondary BytesIn of the peering.
secondarybytesOut Double
The secondary BytesOut of the peering.
primarybytesIn number
The Primary BytesIn of the peering.
primarybytesOut number
The primary BytesOut of the peering.
secondarybytesIn number
The secondary BytesIn of the peering.
secondarybytesOut number
The secondary BytesOut of the peering.
primarybytes_in float
The Primary BytesIn of the peering.
primarybytes_out float
The primary BytesOut of the peering.
secondarybytes_in float
The secondary BytesIn of the peering.
secondarybytes_out float
The secondary BytesOut of the peering.
primarybytesIn Number
The Primary BytesIn of the peering.
primarybytesOut Number
The primary BytesOut of the peering.
secondarybytesIn Number
The secondary BytesIn of the peering.
secondarybytesOut Number
The secondary BytesOut of the peering.

ExpressRouteConnectionIdResponse
, ExpressRouteConnectionIdResponseArgs

Id This property is required. string
The ID of the ExpressRouteConnection.
Id This property is required. string
The ID of the ExpressRouteConnection.
id This property is required. String
The ID of the ExpressRouteConnection.
id This property is required. string
The ID of the ExpressRouteConnection.
id This property is required. str
The ID of the ExpressRouteConnection.
id This property is required. String
The ID of the ExpressRouteConnection.

ExpressRoutePeeringState
, ExpressRoutePeeringStateArgs

Disabled
Disabled
Enabled
Enabled
ExpressRoutePeeringStateDisabled
Disabled
ExpressRoutePeeringStateEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

ExpressRoutePeeringType
, ExpressRoutePeeringTypeArgs

AzurePublicPeering
AzurePublicPeering
AzurePrivatePeering
AzurePrivatePeering
MicrosoftPeering
MicrosoftPeering
ExpressRoutePeeringTypeAzurePublicPeering
AzurePublicPeering
ExpressRoutePeeringTypeAzurePrivatePeering
AzurePrivatePeering
ExpressRoutePeeringTypeMicrosoftPeering
MicrosoftPeering
AzurePublicPeering
AzurePublicPeering
AzurePrivatePeering
AzurePrivatePeering
MicrosoftPeering
MicrosoftPeering
AzurePublicPeering
AzurePublicPeering
AzurePrivatePeering
AzurePrivatePeering
MicrosoftPeering
MicrosoftPeering
AZURE_PUBLIC_PEERING
AzurePublicPeering
AZURE_PRIVATE_PEERING
AzurePrivatePeering
MICROSOFT_PEERING
MicrosoftPeering
"AzurePublicPeering"
AzurePublicPeering
"AzurePrivatePeering"
AzurePrivatePeering
"MicrosoftPeering"
MicrosoftPeering

Ipv6CircuitConnectionConfig
, Ipv6CircuitConnectionConfigArgs

AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.
addressPrefix string
/125 IP address space to carve out customer addresses for global reach.
address_prefix str
/125 IP address space to carve out customer addresses for global reach.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.

Ipv6CircuitConnectionConfigResponse
, Ipv6CircuitConnectionConfigResponseArgs

CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
AddressPrefix string
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. string
Express Route Circuit connection state.
addressPrefix string
/125 IP address space to carve out customer addresses for global reach.
circuit_connection_status This property is required. str
Express Route Circuit connection state.
address_prefix str
/125 IP address space to carve out customer addresses for global reach.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
addressPrefix String
/125 IP address space to carve out customer addresses for global reach.

Ipv6ExpressRouteCircuitPeeringConfig
, Ipv6ExpressRouteCircuitPeeringConfigArgs

MicrosoftPeeringConfig Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter Pulumi.AzureNative.Network.Inputs.SubResource
The reference to the RouteFilter resource.
SecondaryPeerAddressPrefix string
The secondary address prefix.
State string | Pulumi.AzureNative.Network.ExpressRouteCircuitPeeringState
The state of peering.
MicrosoftPeeringConfig ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter SubResource
The reference to the RouteFilter resource.
SecondaryPeerAddressPrefix string
The secondary address prefix.
State string | ExpressRouteCircuitPeeringStateEnum
The state of peering.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter SubResource
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix String
The secondary address prefix.
state String | ExpressRouteCircuitPeeringState
The state of peering.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
primaryPeerAddressPrefix string
The primary address prefix.
routeFilter SubResource
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix string
The secondary address prefix.
state string | ExpressRouteCircuitPeeringState
The state of peering.
microsoft_peering_config ExpressRouteCircuitPeeringConfig
The Microsoft peering configuration.
primary_peer_address_prefix str
The primary address prefix.
route_filter SubResource
The reference to the RouteFilter resource.
secondary_peer_address_prefix str
The secondary address prefix.
state str | ExpressRouteCircuitPeeringState
The state of peering.
microsoftPeeringConfig Property Map
The Microsoft peering configuration.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter Property Map
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix String
The secondary address prefix.
state String | "Disabled" | "Enabled"
The state of peering.

Ipv6ExpressRouteCircuitPeeringConfigResponse
, Ipv6ExpressRouteCircuitPeeringConfigResponseArgs

MicrosoftPeeringConfig Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfigResponse
The Microsoft peering configuration.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter Pulumi.AzureNative.Network.Inputs.SubResourceResponse
The reference to the RouteFilter resource.
SecondaryPeerAddressPrefix string
The secondary address prefix.
State string
The state of peering.
MicrosoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
The Microsoft peering configuration.
PrimaryPeerAddressPrefix string
The primary address prefix.
RouteFilter SubResourceResponse
The reference to the RouteFilter resource.
SecondaryPeerAddressPrefix string
The secondary address prefix.
State string
The state of peering.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
The Microsoft peering configuration.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter SubResourceResponse
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix String
The secondary address prefix.
state String
The state of peering.
microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
The Microsoft peering configuration.
primaryPeerAddressPrefix string
The primary address prefix.
routeFilter SubResourceResponse
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix string
The secondary address prefix.
state string
The state of peering.
microsoft_peering_config ExpressRouteCircuitPeeringConfigResponse
The Microsoft peering configuration.
primary_peer_address_prefix str
The primary address prefix.
route_filter SubResourceResponse
The reference to the RouteFilter resource.
secondary_peer_address_prefix str
The secondary address prefix.
state str
The state of peering.
microsoftPeeringConfig Property Map
The Microsoft peering configuration.
primaryPeerAddressPrefix String
The primary address prefix.
routeFilter Property Map
The reference to the RouteFilter resource.
secondaryPeerAddressPrefix String
The secondary address prefix.
state String
The state of peering.

PeerExpressRouteCircuitConnectionResponse
, PeerExpressRouteCircuitConnectionResponseArgs

CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ProvisioningState This property is required. string
The provisioning state of the peer express route circuit connection resource.
Type This property is required. string
Type of the resource.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthResourceGuid string
The resource guid of the authorization used for the express route circuit connection.
ConnectionName string
The name of the express route circuit connection resource.
ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit.
Id string
Resource ID.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
CircuitConnectionStatus This property is required. string
Express Route Circuit connection state.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ProvisioningState This property is required. string
The provisioning state of the peer express route circuit connection resource.
Type This property is required. string
Type of the resource.
AddressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
AuthResourceGuid string
The resource guid of the authorization used for the express route circuit connection.
ConnectionName string
The name of the express route circuit connection resource.
ExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit.
Id string
Resource ID.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
PeerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. String
The provisioning state of the peer express route circuit connection resource.
type This property is required. String
Type of the resource.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authResourceGuid String
The resource guid of the authorization used for the express route circuit connection.
connectionName String
The name of the express route circuit connection resource.
expressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit.
id String
Resource ID.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. string
Express Route Circuit connection state.
etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. string
The provisioning state of the peer express route circuit connection resource.
type This property is required. string
Type of the resource.
addressPrefix string
/29 IP address space to carve out Customer addresses for tunnels.
authResourceGuid string
The resource guid of the authorization used for the express route circuit connection.
connectionName string
The name of the express route circuit connection resource.
expressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit.
id string
Resource ID.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuit_connection_status This property is required. str
Express Route Circuit connection state.
etag This property is required. str
A unique read-only string that changes whenever the resource is updated.
provisioning_state This property is required. str
The provisioning state of the peer express route circuit connection resource.
type This property is required. str
Type of the resource.
address_prefix str
/29 IP address space to carve out Customer addresses for tunnels.
auth_resource_guid str
The resource guid of the authorization used for the express route circuit connection.
connection_name str
The name of the express route circuit connection resource.
express_route_circuit_peering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the circuit.
id str
Resource ID.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peer_express_route_circuit_peering SubResourceResponse
Reference to Express Route Circuit Private Peering Resource of the peered circuit.
circuitConnectionStatus This property is required. String
Express Route Circuit connection state.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
provisioningState This property is required. String
The provisioning state of the peer express route circuit connection resource.
type This property is required. String
Type of the resource.
addressPrefix String
/29 IP address space to carve out Customer addresses for tunnels.
authResourceGuid String
The resource guid of the authorization used for the express route circuit connection.
connectionName String
The name of the express route circuit connection resource.
expressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the circuit.
id String
Resource ID.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
peerExpressRouteCircuitPeering Property Map
Reference to Express Route Circuit Private Peering Resource of the peered circuit.

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.

Import

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

$ pulumi import azure-native:network:ExpressRouteCircuitPeering AzurePrivatePeering /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName} 
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