VirtualNetwork¶
Represents Azure virtual networks.
Labels: :ArmResource:VirtualNetwork
Properties:
id- VNet resource ID (primary key)resourceGuid- Resource GUIDprovisioningState- Provisioning stateenableDdosProtection- Whether DDoS protection is enabledenableVmProtection- Whether VM protection is enabledaddressSpace- Array of address prefixes for the VNet
Relationships¶
Outgoing¶
- VirtualNetwork →
CONTAINS→ Subnet - Subnets within the virtual network - VirtualNetwork →
HAS_PEERING→ NetworkPeering - Network peering connections
Examples¶
// Find all virtual networks with DDoS protection
MATCH (vnet:VirtualNetwork)
WHERE vnet.enableDdosProtection = true
RETURN vnet.name, vnet.addressSpace