vw_test_lines
Creates, updates, deletes, gets or lists a vw_test_lines
resource.
Overview
Name | vw_test_lines |
Type | View |
Id | azure.voice_services.vw_test_lines |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.phoneNumber') as "phone_number",
JSON_EXTRACT(properties, '$.purpose') as "purpose",
subscriptionId,
resourceGroupName,
communicationsGatewayName,
testLineName
FROM azure.voice_services.test_lines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND communicationsGatewayName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.phoneNumber') as "phone_number",
json_extract_path_text(properties, '$.purpose') as "purpose",
subscriptionId,
resourceGroupName,
communicationsGatewayName,
testLineName
FROM azure.voice_services.test_lines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND communicationsGatewayName = 'replace-me';