PrivateEndpointConnection
Represents an embedded private endpoint connection object found on ARM resources.
Labels: :PrivateEndpointConnection
Properties:
id- Private endpoint connection ID (primary key)name- Connection nametype- Resource typegroupIds- Target group IDs used by the connection
Relationships
Incoming
- ArmResource →
HAS_PRIVATE_ENDPOINT→ PrivateEndpointConnection - Parent resource references this connection object
Examples
// Find resources with private endpoint connections
MATCH (r:ArmResource)-[:HAS_PRIVATE_ENDPOINT]->(p:PrivateEndpointConnection)
RETURN r.name, r.type, p.name, p.groupIds