vw_endpoints
Creates, updates, deletes, gets or lists a vw_endpoints
resource.
Overview
Name | vw_endpoints |
Type | View |
Id | azure.digital_twins.vw_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, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.authenticationType') as "authentication_type",
JSON_EXTRACT(properties, '$.deadLetterSecret') as "dead_letter_secret",
JSON_EXTRACT(properties, '$.deadLetterUri') as "dead_letter_uri",
JSON_EXTRACT(properties, '$.identity') as "identity",
subscriptionId,
resourceGroupName,
resourceName,
endpointName
FROM azure.digital_twins.endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = '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, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.authenticationType') as "authentication_type",
json_extract_path_text(properties, '$.deadLetterSecret') as "dead_letter_secret",
json_extract_path_text(properties, '$.deadLetterUri') as "dead_letter_uri",
json_extract_path_text(properties, '$.identity') as "identity",
subscriptionId,
resourceGroupName,
resourceName,
endpointName
FROM azure.digital_twins.endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';