azure-native.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: 2017-09-01, 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.
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,
});
});
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
})
}
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());
}
}
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)
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,
});
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
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 string
- The unique name of the resource.
- args ExpressRouteCircuitPeeringArgs
- 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 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 string
- The unique name of the resource.
- args ExpressRouteCircuitPeeringArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExpressRouteCircuitPeeringArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Network.Inputs.Ipv6ExpressRouteCircuitPeeringConfigArgs
{
MicrosoftPeeringConfig = new AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfigArgs
{
AdvertisedCommunities = new[]
{
"string",
},
AdvertisedPublicPrefixes = new[]
{
"string",
},
CustomerASN = 0,
LegacyMode = 0,
RoutingRegistryName = "string",
},
PrimaryPeerAddressPrefix = "string",
RouteFilter = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "string",
},
SecondaryPeerAddressPrefix = "string",
State = "string",
},
MicrosoftPeeringConfig = new AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfigArgs
{
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[]
{
new AzureNative.Network.Inputs.ExpressRouteCircuitConnectionArgs
{
AddressPrefix = "string",
AuthorizationKey = "string",
ExpressRouteCircuitPeering = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "string",
},
Id = "string",
Ipv6CircuitConnectionConfig = new AzureNative.Network.Inputs.Ipv6CircuitConnectionConfigArgs
{
AddressPrefix = "string",
},
Name = "string",
PeerExpressRouteCircuitPeering = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "string",
},
},
},
RouteFilter = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "string",
},
SecondaryAzurePort = "string",
SecondaryPeerAddressPrefix = "string",
SharedKey = "string",
State = "string",
Stats = new AzureNative.Network.Inputs.ExpressRouteCircuitStatsArgs
{
PrimarybytesIn = 0,
PrimarybytesOut = 0,
SecondarybytesIn = 0,
SecondarybytesOut = 0,
},
VlanId = 0,
});
example, err := network.NewExpressRouteCircuitPeering(ctx, "expressRouteCircuitPeeringResource", &network.ExpressRouteCircuitPeeringArgs{
ResourceGroupName: pulumi.String("string"),
CircuitName: pulumi.String("string"),
PeeringType: pulumi.String("string"),
PrimaryAzurePort: pulumi.String("string"),
Id: pulumi.String("string"),
Ipv6PeeringConfig: &network.Ipv6ExpressRouteCircuitPeeringConfigArgs{
MicrosoftPeeringConfig: &network.ExpressRouteCircuitPeeringConfigArgs{
AdvertisedCommunities: pulumi.StringArray{
pulumi.String("string"),
},
AdvertisedPublicPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
CustomerASN: pulumi.Int(0),
LegacyMode: pulumi.Int(0),
RoutingRegistryName: pulumi.String("string"),
},
PrimaryPeerAddressPrefix: pulumi.String("string"),
RouteFilter: &network.SubResourceArgs{
Id: pulumi.String("string"),
},
SecondaryPeerAddressPrefix: pulumi.String("string"),
State: pulumi.String("string"),
},
MicrosoftPeeringConfig: &network.ExpressRouteCircuitPeeringConfigArgs{
AdvertisedCommunities: pulumi.StringArray{
pulumi.String("string"),
},
AdvertisedPublicPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
CustomerASN: pulumi.Int(0),
LegacyMode: pulumi.Int(0),
RoutingRegistryName: pulumi.String("string"),
},
Name: pulumi.String("string"),
PeerASN: pulumi.Float64(0),
PeeringName: pulumi.String("string"),
AzureASN: pulumi.Int(0),
GatewayManagerEtag: pulumi.String("string"),
PrimaryPeerAddressPrefix: pulumi.String("string"),
Connections: network.ExpressRouteCircuitConnectionTypeArray{
&network.ExpressRouteCircuitConnectionTypeArgs{
AddressPrefix: pulumi.String("string"),
AuthorizationKey: pulumi.String("string"),
ExpressRouteCircuitPeering: &network.SubResourceArgs{
Id: pulumi.String("string"),
},
Id: pulumi.String("string"),
Ipv6CircuitConnectionConfig: &network.Ipv6CircuitConnectionConfigArgs{
AddressPrefix: pulumi.String("string"),
},
Name: pulumi.String("string"),
PeerExpressRouteCircuitPeering: &network.SubResourceArgs{
Id: pulumi.String("string"),
},
},
},
RouteFilter: &network.SubResourceArgs{
Id: pulumi.String("string"),
},
SecondaryAzurePort: pulumi.String("string"),
SecondaryPeerAddressPrefix: pulumi.String("string"),
SharedKey: pulumi.String("string"),
State: pulumi.String("string"),
Stats: &network.ExpressRouteCircuitStatsArgs{
PrimarybytesIn: pulumi.Float64(0),
PrimarybytesOut: pulumi.Float64(0),
SecondarybytesIn: pulumi.Float64(0),
SecondarybytesOut: pulumi.Float64(0),
},
VlanId: pulumi.Int(0),
})
var expressRouteCircuitPeeringResource = new ExpressRouteCircuitPeering("expressRouteCircuitPeeringResource", ExpressRouteCircuitPeeringArgs.builder()
.resourceGroupName("string")
.circuitName("string")
.peeringType("string")
.primaryAzurePort("string")
.id("string")
.ipv6PeeringConfig(Ipv6ExpressRouteCircuitPeeringConfigArgs.builder()
.microsoftPeeringConfig(ExpressRouteCircuitPeeringConfigArgs.builder()
.advertisedCommunities("string")
.advertisedPublicPrefixes("string")
.customerASN(0)
.legacyMode(0)
.routingRegistryName("string")
.build())
.primaryPeerAddressPrefix("string")
.routeFilter(SubResourceArgs.builder()
.id("string")
.build())
.secondaryPeerAddressPrefix("string")
.state("string")
.build())
.microsoftPeeringConfig(ExpressRouteCircuitPeeringConfigArgs.builder()
.advertisedCommunities("string")
.advertisedPublicPrefixes("string")
.customerASN(0)
.legacyMode(0)
.routingRegistryName("string")
.build())
.name("string")
.peerASN(0)
.peeringName("string")
.azureASN(0)
.gatewayManagerEtag("string")
.primaryPeerAddressPrefix("string")
.connections(ExpressRouteCircuitConnectionArgs.builder()
.addressPrefix("string")
.authorizationKey("string")
.expressRouteCircuitPeering(SubResourceArgs.builder()
.id("string")
.build())
.id("string")
.ipv6CircuitConnectionConfig(Ipv6CircuitConnectionConfigArgs.builder()
.addressPrefix("string")
.build())
.name("string")
.peerExpressRouteCircuitPeering(SubResourceArgs.builder()
.id("string")
.build())
.build())
.routeFilter(SubResourceArgs.builder()
.id("string")
.build())
.secondaryAzurePort("string")
.secondaryPeerAddressPrefix("string")
.sharedKey("string")
.state("string")
.stats(ExpressRouteCircuitStatsArgs.builder()
.primarybytesIn(0)
.primarybytesOut(0)
.secondarybytesIn(0)
.secondarybytesOut(0)
.build())
.vlanId(0)
.build());
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)
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,
});
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
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
The ExpressRouteCircuitPeering resource accepts the following input properties:
- Circuit
Name string - The name of the express route circuit.
- Resource
Group stringName - The name of the resource group.
- Azure
ASN int - The Azure ASN.
- Connections
List<Pulumi.
Azure Native. Network. Inputs. Express Route Circuit Connection> - 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 stringEtag - The GatewayManager Etag.
- Id string
- Resource ID.
- Ipv6Peering
Config Pulumi.Azure Native. Network. Inputs. Ipv6Express Route Circuit Peering Config - The IPv6 peering configuration.
- Microsoft
Peering Pulumi.Config Azure Native. Network. Inputs. Express Route Circuit Peering Config - 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.
- Peer
ASN double - The peer ASN.
- Peering
Name string - The name of the peering.
- Peering
Type string | Pulumi.Azure Native. Network. Express Route Peering Type - The peering type.
- Primary
Azure stringPort - The primary port.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter Pulumi.Azure Native. Network. Inputs. Sub Resource - The reference to the RouteFilter resource.
- Secondary
Azure stringPort - The secondary port.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- string
- The shared key.
- State
string | Pulumi.
Azure Native. Network. Express Route Peering State - The peering state.
- Stats
Pulumi.
Azure Native. Network. Inputs. Express Route Circuit Stats - The peering stats of express route circuit.
- Vlan
Id int - The VLAN ID.
- Circuit
Name string - The name of the express route circuit.
- Resource
Group stringName - The name of the resource group.
- Azure
ASN int - The Azure ASN.
- Connections
[]Express
Route Circuit Connection Type Args - 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 stringEtag - The GatewayManager Etag.
- Id string
- Resource ID.
- Ipv6Peering
Config Ipv6ExpressRoute Circuit Peering Config Args - The IPv6 peering configuration.
- Microsoft
Peering ExpressConfig Route Circuit Peering Config Args - 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.
- Peer
ASN float64 - The peer ASN.
- Peering
Name string - The name of the peering.
- Peering
Type string | ExpressRoute Peering Type - The peering type.
- Primary
Azure stringPort - The primary port.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter SubResource Args - The reference to the RouteFilter resource.
- Secondary
Azure stringPort - The secondary port.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- string
- The shared key.
- State
string | Express
Route Peering State - The peering state.
- Stats
Express
Route Circuit Stats Args - The peering stats of express route circuit.
- Vlan
Id int - The VLAN ID.
- circuit
Name String - The name of the express route circuit.
- resource
Group StringName - The name of the resource group.
- azure
ASN Integer - The Azure ASN.
- connections
List<Express
Route Circuit Connection> - 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 StringEtag - The GatewayManager Etag.
- id String
- Resource ID.
- ipv6Peering
Config Ipv6ExpressRoute Circuit Peering Config - The IPv6 peering configuration.
- microsoft
Peering ExpressConfig Route Circuit Peering Config - 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.
- peer
ASN Double - The peer ASN.
- peering
Name String - The name of the peering.
- peering
Type String | ExpressRoute Peering Type - The peering type.
- primary
Azure StringPort - The primary port.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter SubResource - The reference to the RouteFilter resource.
- secondary
Azure StringPort - The secondary port.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- String
- The shared key.
- state
String | Express
Route Peering State - The peering state.
- stats
Express
Route Circuit Stats - The peering stats of express route circuit.
- vlan
Id Integer - The VLAN ID.
- circuit
Name string - The name of the express route circuit.
- resource
Group stringName - The name of the resource group.
- azure
ASN number - The Azure ASN.
- connections
Express
Route Circuit Connection[] - 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 stringEtag - The GatewayManager Etag.
- id string
- Resource ID.
- ipv6Peering
Config Ipv6ExpressRoute Circuit Peering Config - The IPv6 peering configuration.
- microsoft
Peering ExpressConfig Route Circuit Peering Config - 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.
- peer
ASN number - The peer ASN.
- peering
Name string - The name of the peering.
- peering
Type string | ExpressRoute Peering Type - The peering type.
- primary
Azure stringPort - The primary port.
- primary
Peer stringAddress Prefix - The primary address prefix.
- route
Filter SubResource - The reference to the RouteFilter resource.
- secondary
Azure stringPort - The secondary port.
- secondary
Peer stringAddress Prefix - The secondary address prefix.
- string
- The shared key.
- state
string | Express
Route Peering State - The peering state.
- stats
Express
Route Circuit Stats - The peering stats of express route circuit.
- vlan
Id number - The VLAN ID.
- circuit_
name str - The name of the express route circuit.
- resource_
group_ strname - The name of the resource group.
- azure_
asn int - The Azure ASN.
- connections
Sequence[Express
Route Circuit Connection Args] - 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_ stretag - The GatewayManager Etag.
- id str
- Resource ID.
- ipv6_
peering_ Ipv6Expressconfig Route Circuit Peering Config Args - The IPv6 peering configuration.
- microsoft_
peering_ Expressconfig Route Circuit Peering Config Args - 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 str - The name of the peering.
- peering_
type str | ExpressRoute Peering Type - The peering type.
- primary_
azure_ strport - The primary port.
- primary_
peer_ straddress_ prefix - The primary address prefix.
- route_
filter SubResource Args - The reference to the RouteFilter resource.
- secondary_
azure_ strport - The secondary port.
- secondary_
peer_ straddress_ prefix - The secondary address prefix.
- str
- The shared key.
- state
str | Express
Route Peering State - The peering state.
- stats
Express
Route Circuit Stats Args - The peering stats of express route circuit.
- vlan_
id int - The VLAN ID.
- circuit
Name String - The name of the express route circuit.
- resource
Group StringName - The name of the resource group.
- azure
ASN 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.
- gateway
Manager StringEtag - The GatewayManager Etag.
- id String
- Resource ID.
- ipv6Peering
Config Property Map - The IPv6 peering configuration.
- microsoft
Peering Property MapConfig - 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.
- peer
ASN Number - The peer ASN.
- peering
Name String - The name of the peering.
- peering
Type String | "AzurePublic Peering" | "Azure Private Peering" | "Microsoft Peering" - The peering type.
- primary
Azure StringPort - The primary port.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter Property Map - The reference to the RouteFilter resource.
- secondary
Azure StringPort - The secondary port.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- String
- The shared key.
- state String | "Disabled" | "Enabled"
- The peering state.
- stats Property Map
- The peering stats of express route circuit.
- vlan
Id 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.
- Last
Modified stringBy - Who was the last to modify the peering.
- Peered
Connections List<Pulumi.Azure Native. Network. Outputs. Peer Express Route Circuit Connection Response> - The list of peered circuit connections associated with Azure Private Peering for this circuit.
- Provisioning
State string - The provisioning state of the express route circuit peering resource.
- Type string
- Type of the resource.
- Express
Route Pulumi.Connection Azure Native. Network. Outputs. Express Route Connection Id Response - 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.
- Last
Modified stringBy - Who was the last to modify the peering.
- Peered
Connections []PeerExpress Route Circuit Connection Response - The list of peered circuit connections associated with Azure Private Peering for this circuit.
- Provisioning
State string - The provisioning state of the express route circuit peering resource.
- Type string
- Type of the resource.
- Express
Route ExpressConnection Route Connection Id Response - 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.
- last
Modified StringBy - Who was the last to modify the peering.
- peered
Connections List<PeerExpress Route Circuit Connection Response> - The list of peered circuit connections associated with Azure Private Peering for this circuit.
- provisioning
State String - The provisioning state of the express route circuit peering resource.
- type String
- Type of the resource.
- express
Route ExpressConnection Route Connection Id Response - 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.
- last
Modified stringBy - Who was the last to modify the peering.
- peered
Connections PeerExpress Route Circuit Connection Response[] - The list of peered circuit connections associated with Azure Private Peering for this circuit.
- provisioning
State string - The provisioning state of the express route circuit peering resource.
- type string
- Type of the resource.
- express
Route ExpressConnection Route Connection Id Response - 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_ strby - Who was the last to modify the peering.
- peered_
connections Sequence[PeerExpress Route Circuit Connection Response] - 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_ Expressconnection Route Connection Id Response - 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.
- last
Modified StringBy - Who was the last to modify the peering.
- peered
Connections List<Property Map> - The list of peered circuit connections associated with Azure Private Peering for this circuit.
- provisioning
State String - The provisioning state of the express route circuit peering resource.
- type String
- Type of the resource.
- express
Route Property MapConnection - The ExpressRoute connection.
Supporting Types
ExpressRouteCircuitConnection, ExpressRouteCircuitConnectionArgs
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- Express
Route Pulumi.Circuit Peering Azure Native. Network. Inputs. Sub Resource - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- Id string
- Resource ID.
- Ipv6Circuit
Connection Pulumi.Config Azure Native. Network. Inputs. Ipv6Circuit Connection Config - 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.
- Peer
Express Pulumi.Route Circuit Peering Azure Native. Network. Inputs. Sub Resource - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- Express
Route SubCircuit Peering Resource - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- Id string
- Resource ID.
- Ipv6Circuit
Connection Ipv6CircuitConfig Connection Config - 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.
- Peer
Express SubRoute Circuit Peering Resource - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- String
- The authorization key.
- express
Route SubCircuit Peering Resource - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id String
- Resource ID.
- ipv6Circuit
Connection Ipv6CircuitConfig Connection Config - 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.
- peer
Express SubRoute Circuit Peering Resource - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- express
Route SubCircuit Peering Resource - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id string
- Resource ID.
- ipv6Circuit
Connection Ipv6CircuitConfig Connection Config - 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.
- peer
Express SubRoute Circuit Peering Resource - 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.
- str
- The authorization key.
- express_
route_ Subcircuit_ peering Resource - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id str
- Resource ID.
- ipv6_
circuit_ Ipv6Circuitconnection_ config Connection Config - 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_ Subroute_ circuit_ peering Resource - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- String
- The authorization key.
- express
Route Property MapCircuit Peering - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id String
- Resource ID.
- ipv6Circuit
Connection Property MapConfig - 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.
- peer
Express Property MapRoute Circuit Peering - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
ExpressRouteCircuitConnectionResponse, ExpressRouteCircuitConnectionResponseArgs
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the express route circuit connection resource.
- Type string
- Type of the resource.
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- Express
Route Pulumi.Circuit Peering Azure Native. Network. Inputs. Sub Resource Response - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- Id string
- Resource ID.
- Ipv6Circuit
Connection Pulumi.Config Azure Native. Network. Inputs. Ipv6Circuit Connection Config Response - 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.
- Peer
Express Pulumi.Route Circuit Peering Azure Native. Network. Inputs. Sub Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the express route circuit connection resource.
- Type string
- Type of the resource.
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- Express
Route SubCircuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- Id string
- Resource ID.
- Ipv6Circuit
Connection Ipv6CircuitConfig Connection Config Response - 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.
- Peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the express route circuit connection resource.
- type String
- Type of the resource.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- String
- The authorization key.
- express
Route SubCircuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id String
- Resource ID.
- ipv6Circuit
Connection Ipv6CircuitConfig Connection Config Response - 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.
- peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection stringStatus - Express Route Circuit connection state.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State string - The provisioning state of the express route circuit connection resource.
- type string
- Type of the resource.
- address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- string
- The authorization key.
- express
Route SubCircuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id string
- Resource ID.
- ipv6Circuit
Connection Ipv6CircuitConfig Connection Config Response - 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.
- peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit_
connection_ strstatus - Express Route Circuit connection state.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- provisioning_
state str - The provisioning state of the express route circuit connection resource.
- type str
- Type of the resource.
- address_
prefix str - /29 IP address space to carve out Customer addresses for tunnels.
- str
- The authorization key.
- express_
route_ Subcircuit_ peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id str
- Resource ID.
- ipv6_
circuit_ Ipv6Circuitconnection_ config Connection Config Response - 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_ Subroute_ circuit_ peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the express route circuit connection resource.
- type String
- Type of the resource.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- String
- The authorization key.
- express
Route Property MapCircuit Peering - Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
- id String
- Resource ID.
- ipv6Circuit
Connection Property MapConfig - 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.
- peer
Express Property MapRoute Circuit Peering - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
ExpressRouteCircuitPeeringConfig, ExpressRouteCircuitPeeringConfigArgs
- Advertised
Communities List<string> - The communities of bgp peering. Specified for microsoft peering.
- Advertised
Public List<string>Prefixes - The reference to AdvertisedPublicPrefixes.
- Customer
ASN int - The CustomerASN of the peering.
- Legacy
Mode int - The legacy mode of the peering.
- Routing
Registry stringName - The RoutingRegistryName of the configuration.
- Advertised
Communities []string - The communities of bgp peering. Specified for microsoft peering.
- Advertised
Public []stringPrefixes - The reference to AdvertisedPublicPrefixes.
- Customer
ASN int - The CustomerASN of the peering.
- Legacy
Mode int - The legacy mode of the peering.
- Routing
Registry stringName - The RoutingRegistryName of the configuration.
- advertised
Communities List<String> - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public List<String>Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN Integer - The CustomerASN of the peering.
- legacy
Mode Integer - The legacy mode of the peering.
- routing
Registry StringName - The RoutingRegistryName of the configuration.
- advertised
Communities string[] - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public string[]Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN number - The CustomerASN of the peering.
- legacy
Mode number - The legacy mode of the peering.
- routing
Registry stringName - The RoutingRegistryName of the configuration.
- advertised_
communities Sequence[str] - The communities of bgp peering. Specified for microsoft peering.
- advertised_
public_ Sequence[str]prefixes - The reference to AdvertisedPublicPrefixes.
- customer_
asn int - The CustomerASN of the peering.
- legacy_
mode int - The legacy mode of the peering.
- routing_
registry_ strname - The RoutingRegistryName of the configuration.
- advertised
Communities List<String> - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public List<String>Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN Number - The CustomerASN of the peering.
- legacy
Mode Number - The legacy mode of the peering.
- routing
Registry StringName - The RoutingRegistryName of the configuration.
ExpressRouteCircuitPeeringConfigResponse, ExpressRouteCircuitPeeringConfigResponseArgs
- Advertised
Public stringPrefixes State - The advertised public prefix state of the Peering resource.
- Advertised
Communities List<string> - The communities of bgp peering. Specified for microsoft peering.
- Advertised
Public List<string>Prefixes - The reference to AdvertisedPublicPrefixes.
- Customer
ASN int - The CustomerASN of the peering.
- Legacy
Mode int - The legacy mode of the peering.
- Routing
Registry stringName - The RoutingRegistryName of the configuration.
- Advertised
Public stringPrefixes State - The advertised public prefix state of the Peering resource.
- Advertised
Communities []string - The communities of bgp peering. Specified for microsoft peering.
- Advertised
Public []stringPrefixes - The reference to AdvertisedPublicPrefixes.
- Customer
ASN int - The CustomerASN of the peering.
- Legacy
Mode int - The legacy mode of the peering.
- Routing
Registry stringName - The RoutingRegistryName of the configuration.
- advertised
Public StringPrefixes State - The advertised public prefix state of the Peering resource.
- advertised
Communities List<String> - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public List<String>Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN Integer - The CustomerASN of the peering.
- legacy
Mode Integer - The legacy mode of the peering.
- routing
Registry StringName - The RoutingRegistryName of the configuration.
- advertised
Public stringPrefixes State - The advertised public prefix state of the Peering resource.
- advertised
Communities string[] - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public string[]Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN number - The CustomerASN of the peering.
- legacy
Mode number - The legacy mode of the peering.
- routing
Registry stringName - The RoutingRegistryName of the configuration.
- advertised_
public_ strprefixes_ state - The advertised public prefix state of the Peering resource.
- advertised_
communities Sequence[str] - The communities of bgp peering. Specified for microsoft peering.
- advertised_
public_ Sequence[str]prefixes - The reference to AdvertisedPublicPrefixes.
- customer_
asn int - The CustomerASN of the peering.
- legacy_
mode int - The legacy mode of the peering.
- routing_
registry_ strname - The RoutingRegistryName of the configuration.
- advertised
Public StringPrefixes State - The advertised public prefix state of the Peering resource.
- advertised
Communities List<String> - The communities of bgp peering. Specified for microsoft peering.
- advertised
Public List<String>Prefixes - The reference to AdvertisedPublicPrefixes.
- customer
ASN Number - The CustomerASN of the peering.
- legacy
Mode Number - The legacy mode of the peering.
- routing
Registry StringName - The RoutingRegistryName of the configuration.
ExpressRouteCircuitPeeringState, ExpressRouteCircuitPeeringStateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Express
Route Circuit Peering State Disabled - Disabled
- Express
Route Circuit Peering State Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
ExpressRouteCircuitStats, ExpressRouteCircuitStatsArgs
- Primarybytes
In double - The Primary BytesIn of the peering.
- Primarybytes
Out double - The primary BytesOut of the peering.
- Secondarybytes
In double - The secondary BytesIn of the peering.
- Secondarybytes
Out double - The secondary BytesOut of the peering.
- Primarybytes
In float64 - The Primary BytesIn of the peering.
- Primarybytes
Out float64 - The primary BytesOut of the peering.
- Secondarybytes
In float64 - The secondary BytesIn of the peering.
- Secondarybytes
Out float64 - The secondary BytesOut of the peering.
- primarybytes
In Double - The Primary BytesIn of the peering.
- primarybytes
Out Double - The primary BytesOut of the peering.
- secondarybytes
In Double - The secondary BytesIn of the peering.
- secondarybytes
Out Double - The secondary BytesOut of the peering.
- primarybytes
In number - The Primary BytesIn of the peering.
- primarybytes
Out number - The primary BytesOut of the peering.
- secondarybytes
In number - The secondary BytesIn of the peering.
- secondarybytes
Out 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.
- primarybytes
In Number - The Primary BytesIn of the peering.
- primarybytes
Out Number - The primary BytesOut of the peering.
- secondarybytes
In Number - The secondary BytesIn of the peering.
- secondarybytes
Out Number - The secondary BytesOut of the peering.
ExpressRouteCircuitStatsResponse, ExpressRouteCircuitStatsResponseArgs
- Primarybytes
In double - The Primary BytesIn of the peering.
- Primarybytes
Out double - The primary BytesOut of the peering.
- Secondarybytes
In double - The secondary BytesIn of the peering.
- Secondarybytes
Out double - The secondary BytesOut of the peering.
- Primarybytes
In float64 - The Primary BytesIn of the peering.
- Primarybytes
Out float64 - The primary BytesOut of the peering.
- Secondarybytes
In float64 - The secondary BytesIn of the peering.
- Secondarybytes
Out float64 - The secondary BytesOut of the peering.
- primarybytes
In Double - The Primary BytesIn of the peering.
- primarybytes
Out Double - The primary BytesOut of the peering.
- secondarybytes
In Double - The secondary BytesIn of the peering.
- secondarybytes
Out Double - The secondary BytesOut of the peering.
- primarybytes
In number - The Primary BytesIn of the peering.
- primarybytes
Out number - The primary BytesOut of the peering.
- secondarybytes
In number - The secondary BytesIn of the peering.
- secondarybytes
Out 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.
- primarybytes
In Number - The Primary BytesIn of the peering.
- primarybytes
Out Number - The primary BytesOut of the peering.
- secondarybytes
In Number - The secondary BytesIn of the peering.
- secondarybytes
Out Number - The secondary BytesOut of the peering.
ExpressRouteConnectionIdResponse, ExpressRouteConnectionIdResponseArgs
- Id string
- The ID of the ExpressRouteConnection.
- Id string
- The ID of the ExpressRouteConnection.
- id String
- The ID of the ExpressRouteConnection.
- id string
- The ID of the ExpressRouteConnection.
- id str
- The ID of the ExpressRouteConnection.
- id String
- The ID of the ExpressRouteConnection.
ExpressRoutePeeringState, ExpressRoutePeeringStateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Express
Route Peering State Disabled - Disabled
- Express
Route Peering State Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
ExpressRoutePeeringType, ExpressRoutePeeringTypeArgs
- Azure
Public Peering - AzurePublicPeering
- Azure
Private Peering - AzurePrivatePeering
- Microsoft
Peering - MicrosoftPeering
- Express
Route Peering Type Azure Public Peering - AzurePublicPeering
- Express
Route Peering Type Azure Private Peering - AzurePrivatePeering
- Express
Route Peering Type Microsoft Peering - MicrosoftPeering
- Azure
Public Peering - AzurePublicPeering
- Azure
Private Peering - AzurePrivatePeering
- Microsoft
Peering - MicrosoftPeering
- Azure
Public Peering - AzurePublicPeering
- Azure
Private Peering - AzurePrivatePeering
- Microsoft
Peering - MicrosoftPeering
- AZURE_PUBLIC_PEERING
- AzurePublicPeering
- AZURE_PRIVATE_PEERING
- AzurePrivatePeering
- MICROSOFT_PEERING
- MicrosoftPeering
- "Azure
Public Peering" - AzurePublicPeering
- "Azure
Private Peering" - AzurePrivatePeering
- "Microsoft
Peering" - MicrosoftPeering
Ipv6CircuitConnectionConfig, Ipv6CircuitConnectionConfigArgs
- Address
Prefix string - /125 IP address space to carve out customer addresses for global reach.
- Address
Prefix string - /125 IP address space to carve out customer addresses for global reach.
- address
Prefix String - /125 IP address space to carve out customer addresses for global reach.
- address
Prefix 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.
- address
Prefix String - /125 IP address space to carve out customer addresses for global reach.
Ipv6CircuitConnectionConfigResponse, Ipv6CircuitConnectionConfigResponseArgs
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Address
Prefix string - /125 IP address space to carve out customer addresses for global reach.
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Address
Prefix string - /125 IP address space to carve out customer addresses for global reach.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- address
Prefix String - /125 IP address space to carve out customer addresses for global reach.
- circuit
Connection stringStatus - Express Route Circuit connection state.
- address
Prefix string - /125 IP address space to carve out customer addresses for global reach.
- circuit_
connection_ strstatus - Express Route Circuit connection state.
- address_
prefix str - /125 IP address space to carve out customer addresses for global reach.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- address
Prefix String - /125 IP address space to carve out customer addresses for global reach.
Ipv6ExpressRouteCircuitPeeringConfig, Ipv6ExpressRouteCircuitPeeringConfigArgs
- Microsoft
Peering Pulumi.Config Azure Native. Network. Inputs. Express Route Circuit Peering Config - The Microsoft peering configuration.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter Pulumi.Azure Native. Network. Inputs. Sub Resource - The reference to the RouteFilter resource.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- State
string | Pulumi.
Azure Native. Network. Express Route Circuit Peering State - The state of peering.
- Microsoft
Peering ExpressConfig Route Circuit Peering Config - The Microsoft peering configuration.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter SubResource - The reference to the RouteFilter resource.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- State
string | Express
Route Circuit Peering State Enum - The state of peering.
- microsoft
Peering ExpressConfig Route Circuit Peering Config - The Microsoft peering configuration.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter SubResource - The reference to the RouteFilter resource.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- state
String | Express
Route Circuit Peering State - The state of peering.
- microsoft
Peering ExpressConfig Route Circuit Peering Config - The Microsoft peering configuration.
- primary
Peer stringAddress Prefix - The primary address prefix.
- route
Filter SubResource - The reference to the RouteFilter resource.
- secondary
Peer stringAddress Prefix - The secondary address prefix.
- state
string | Express
Route Circuit Peering State - The state of peering.
- microsoft_
peering_ Expressconfig Route Circuit Peering Config - The Microsoft peering configuration.
- primary_
peer_ straddress_ prefix - The primary address prefix.
- route_
filter SubResource - The reference to the RouteFilter resource.
- secondary_
peer_ straddress_ prefix - The secondary address prefix.
- state
str | Express
Route Circuit Peering State - The state of peering.
- microsoft
Peering Property MapConfig - The Microsoft peering configuration.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter Property Map - The reference to the RouteFilter resource.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- state String | "Disabled" | "Enabled"
- The state of peering.
Ipv6ExpressRouteCircuitPeeringConfigResponse, Ipv6ExpressRouteCircuitPeeringConfigResponseArgs
- Microsoft
Peering Pulumi.Config Azure Native. Network. Inputs. Express Route Circuit Peering Config Response - The Microsoft peering configuration.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter Pulumi.Azure Native. Network. Inputs. Sub Resource Response - The reference to the RouteFilter resource.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- State string
- The state of peering.
- Microsoft
Peering ExpressConfig Route Circuit Peering Config Response - The Microsoft peering configuration.
- Primary
Peer stringAddress Prefix - The primary address prefix.
- Route
Filter SubResource Response - The reference to the RouteFilter resource.
- Secondary
Peer stringAddress Prefix - The secondary address prefix.
- State string
- The state of peering.
- microsoft
Peering ExpressConfig Route Circuit Peering Config Response - The Microsoft peering configuration.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter SubResource Response - The reference to the RouteFilter resource.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- state String
- The state of peering.
- microsoft
Peering ExpressConfig Route Circuit Peering Config Response - The Microsoft peering configuration.
- primary
Peer stringAddress Prefix - The primary address prefix.
- route
Filter SubResource Response - The reference to the RouteFilter resource.
- secondary
Peer stringAddress Prefix - The secondary address prefix.
- state string
- The state of peering.
- microsoft_
peering_ Expressconfig Route Circuit Peering Config Response - The Microsoft peering configuration.
- primary_
peer_ straddress_ prefix - The primary address prefix.
- route_
filter SubResource Response - The reference to the RouteFilter resource.
- secondary_
peer_ straddress_ prefix - The secondary address prefix.
- state str
- The state of peering.
- microsoft
Peering Property MapConfig - The Microsoft peering configuration.
- primary
Peer StringAddress Prefix - The primary address prefix.
- route
Filter Property Map - The reference to the RouteFilter resource.
- secondary
Peer StringAddress Prefix - The secondary address prefix.
- state String
- The state of peering.
PeerExpressRouteCircuitConnectionResponse, PeerExpressRouteCircuitConnectionResponseArgs
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the peer express route circuit connection resource.
- Type string
- Type of the resource.
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- Auth
Resource stringGuid - The resource guid of the authorization used for the express route circuit connection.
- Connection
Name string - The name of the express route circuit connection resource.
- Express
Route Pulumi.Circuit Peering Azure Native. Network. Inputs. Sub Resource Response - 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.
- Peer
Express Pulumi.Route Circuit Peering Azure Native. Network. Inputs. Sub Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- Circuit
Connection stringStatus - Express Route Circuit connection state.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the peer express route circuit connection resource.
- Type string
- Type of the resource.
- Address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- Auth
Resource stringGuid - The resource guid of the authorization used for the express route circuit connection.
- Connection
Name string - The name of the express route circuit connection resource.
- Express
Route SubCircuit Peering Resource Response - 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.
- Peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the peer express route circuit connection resource.
- type String
- Type of the resource.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- auth
Resource StringGuid - The resource guid of the authorization used for the express route circuit connection.
- connection
Name String - The name of the express route circuit connection resource.
- express
Route SubCircuit Peering Resource Response - 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.
- peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection stringStatus - Express Route Circuit connection state.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State string - The provisioning state of the peer express route circuit connection resource.
- type string
- Type of the resource.
- address
Prefix string - /29 IP address space to carve out Customer addresses for tunnels.
- auth
Resource stringGuid - The resource guid of the authorization used for the express route circuit connection.
- connection
Name string - The name of the express route circuit connection resource.
- express
Route SubCircuit Peering Resource Response - 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.
- peer
Express SubRoute Circuit Peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit_
connection_ strstatus - Express Route Circuit connection state.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- provisioning_
state str - The provisioning state of the peer express route circuit connection resource.
- type str
- Type of the resource.
- address_
prefix str - /29 IP address space to carve out Customer addresses for tunnels.
- auth_
resource_ strguid - 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_ Subcircuit_ peering Resource Response - 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_ Subroute_ circuit_ peering Resource Response - Reference to Express Route Circuit Private Peering Resource of the peered circuit.
- circuit
Connection StringStatus - Express Route Circuit connection state.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the peer express route circuit connection resource.
- type String
- Type of the resource.
- address
Prefix String - /29 IP address space to carve out Customer addresses for tunnels.
- auth
Resource StringGuid - The resource guid of the authorization used for the express route circuit connection.
- connection
Name String - The name of the express route circuit connection resource.
- express
Route Property MapCircuit Peering - 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.
- peer
Express Property MapRoute Circuit Peering - 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 string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0