Skip to content

HAS_PRIVATE_ENDPOINT

Represents the relationship between Azure resources and their private endpoints.

Usage

This relationship connects Azure resources to their associated private endpoints:

  • ArmResourceHAS_PRIVATE_ENDPOINTPrivateEndpoint - Azure resources to their private endpoints

Properties

No additional properties on the relationship.

Examples

// Find all resources with private endpoints
MATCH (resource:ArmResource)-[:HAS_PRIVATE_ENDPOINT]->(pe:PrivateEndpoint)
RETURN resource.name, resource.type, pe.name