vw_private_endpoint_connection_controllers
Creates, updates, deletes, gets or lists a vw_private_endpoint_connection_controllers
resource.
Overview
Name | vw_private_endpoint_connection_controllers |
Type | View |
Id | azure.migrate.vw_private_endpoint_connection_controllers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.groupIds') as "group_ids",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.privateEndpoint') as "private_endpoint",
JSON_EXTRACT(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
subscriptionId,
resourceGroupName,
siteName,
peConnectionName
FROM azure.migrate.private_endpoint_connection_controllers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.groupIds') as "group_ids",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.privateEndpoint') as "private_endpoint",
json_extract_path_text(properties, '$.privateLinkServiceConnectionState') as "private_link_service_connection_state",
subscriptionId,
resourceGroupName,
siteName,
peConnectionName
FROM azure.migrate.private_endpoint_connection_controllers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me';