vw_managed_private_endpoints
Creates, updates, deletes, gets or lists a vw_managed_private_endpoints
resource.
Overview
Name | vw_managed_private_endpoints |
Type | View |
Id | azure.dashboard.vw_managed_private_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.privateLinkResourceId') as "private_link_resource_id",
JSON_EXTRACT(properties, '$.privateLinkResourceRegion') as "private_link_resource_region",
JSON_EXTRACT(properties, '$.groupIds') as "group_ids",
JSON_EXTRACT(properties, '$.requestMessage') as "request_message",
JSON_EXTRACT(properties, '$.connectionState') as "connection_state",
JSON_EXTRACT(properties, '$.privateLinkServiceUrl') as "private_link_service_url",
JSON_EXTRACT(properties, '$.privateLinkServicePrivateIP') as "private_link_service_private_ip",
subscriptionId,
resourceGroupName,
workspaceName,
managedPrivateEndpointName
FROM azure.dashboard.managed_private_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.privateLinkResourceId') as "private_link_resource_id",
json_extract_path_text(properties, '$.privateLinkResourceRegion') as "private_link_resource_region",
json_extract_path_text(properties, '$.groupIds') as "group_ids",
json_extract_path_text(properties, '$.requestMessage') as "request_message",
json_extract_path_text(properties, '$.connectionState') as "connection_state",
json_extract_path_text(properties, '$.privateLinkServiceUrl') as "private_link_service_url",
json_extract_path_text(properties, '$.privateLinkServicePrivateIP') as "private_link_service_private_ip",
subscriptionId,
resourceGroupName,
workspaceName,
managedPrivateEndpointName
FROM azure.dashboard.managed_private_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';