vw_mhsm_private_endpoint_connections
Creates, updates, deletes, gets or lists a vw_mhsm_private_endpoint_connections
resource.
Overview
Name | vw_mhsm_private_endpoint_connections |
Type | View |
Id | azure.key_vault.vw_mhsm_private_endpoint_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
etag as etag,
type as type,
sku as sku,
tags as tags,
systemData as system_data,
identity as identity,
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,
name,
privateEndpointConnectionName
FROM azure.key_vault.mhsm_private_endpoint_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';
SELECT
id as id,
name as name,
location as location,
etag as etag,
type as type,
sku as sku,
tags as tags,
systemData as system_data,
identity as identity,
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,
name,
privateEndpointConnectionName
FROM azure.key_vault.mhsm_private_endpoint_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';