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.data_factory.vw_managed_private_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
etag as etag,
JSON_EXTRACT(properties, '$.connectionState') as "connection_state",
JSON_EXTRACT(properties, '$.fqdns') as "fqdns",
JSON_EXTRACT(properties, '$.groupId') as "group_id",
JSON_EXTRACT(properties, '$.isReserved') as "is_reserved",
JSON_EXTRACT(properties, '$.privateLinkResourceId') as "private_link_resource_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
factoryName,
managedVirtualNetworkName,
managedPrivateEndpointName
FROM azure.data_factory.managed_private_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me' AND managedVirtualNetworkName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
etag as etag,
json_extract_path_text(properties, '$.connectionState') as "connection_state",
json_extract_path_text(properties, '$.fqdns') as "fqdns",
json_extract_path_text(properties, '$.groupId') as "group_id",
json_extract_path_text(properties, '$.isReserved') as "is_reserved",
json_extract_path_text(properties, '$.privateLinkResourceId') as "private_link_resource_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
factoryName,
managedVirtualNetworkName,
managedPrivateEndpointName
FROM azure.data_factory.managed_private_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me' AND managedVirtualNetworkName = 'replace-me';