vw_private_endpoint_connections_comps
Creates, updates, deletes, gets or lists a vw_private_endpoint_connections_comps
resource.
Overview
Name | vw_private_endpoint_connections_comps |
Type | View |
Id | azure.security_and_compliance.vw_private_endpoint_connections_comps |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.privateEndpoint') as "private_endpoint",
JSON_EXTRACT(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
resourceName,
privateEndpointConnectionName
FROM azure.security_and_compliance.private_endpoint_connections_comps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.privateEndpoint') as "private_endpoint",
json_extract_path_text(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
resourceName,
privateEndpointConnectionName
FROM azure.security_and_compliance.private_endpoint_connections_comps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';