ExpressRouteCircuit
Represents Azure ExpressRoute Circuit resources.
Labels: :ArmResource:ExpressRouteCircuit
Properties:
id- Resource ID (primary key)allowClassicOperations- Whether classic operations are allowedallowGlobalReach- Whether Global Reach is allowedauthorizationKey- Authorization keycircuitProvisioningState- Circuit provisioning stateserviceProviderProvisioningState- Service provider provisioning statebandwidthInMbps- Bandwidth in MbpspeeringLocation- Peering locationserviceProviderName- Service provider name
Relationships
Outgoing
- ExpressRouteCircuit →
HAS_PEERING→ ExpressRouteCircuitPeering - Circuit peering configurations
Examples
// Find ExpressRoute circuits and their peerings
MATCH (erc:ExpressRouteCircuit)-[:HAS_PEERING]->(p:ExpressRouteCircuitPeering)
RETURN erc.name, p.peeringType, p.state, erc.bandwidthInMbps