Skip to content

PrivateEndpointConnection

Represents an embedded private endpoint connection object found on ARM resources.

Labels: :PrivateEndpointConnection

Properties:

  • id - Private endpoint connection ID (primary key)
  • name - Connection name
  • type - Resource type
  • groupIds - Target group IDs used by the connection

Relationships

Incoming

  • ArmResourceHAS_PRIVATE_ENDPOINTPrivateEndpointConnection - 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