vw_virtual_endpoints
Creates, updates, deletes, gets or lists a vw_virtual_endpoints
resource.
Overview
Name | vw_virtual_endpoints |
Type | View |
Id | azure.postgresql.vw_virtual_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,
systemData as system_data,
JSON_EXTRACT(properties, '$.endpointType') as "endpoint_type",
JSON_EXTRACT(properties, '$.members') as "members",
JSON_EXTRACT(properties, '$.virtualEndpoints') as "virtual_endpoints",
subscriptionId,
resourceGroupName,
serverName,
virtualEndpointName
FROM azure.postgresql.virtual_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.endpointType') as "endpoint_type",
json_extract_path_text(properties, '$.members') as "members",
json_extract_path_text(properties, '$.virtualEndpoints') as "virtual_endpoints",
subscriptionId,
resourceGroupName,
serverName,
virtualEndpointName
FROM azure.postgresql.virtual_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';