vw_configurations
Creates, updates, deletes, gets or lists a vw_configurations
resource.
Overview
Name | vw_configurations |
Type | View |
Id | azure_isv.nginx.vw_configurations |
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,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.files') as "files",
JSON_EXTRACT(properties, '$.protectedFiles') as "protected_files",
JSON_EXTRACT(properties, '$.package') as "package",
JSON_EXTRACT(properties, '$.rootFile') as "root_file",
subscriptionId,
resourceGroupName,
deploymentName,
configurationName
FROM azure_isv.nginx.configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deploymentName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.files') as "files",
json_extract_path_text(properties, '$.protectedFiles') as "protected_files",
json_extract_path_text(properties, '$.package') as "package",
json_extract_path_text(properties, '$.rootFile') as "root_file",
subscriptionId,
resourceGroupName,
deploymentName,
configurationName
FROM azure_isv.nginx.configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deploymentName = 'replace-me';