vw_deployments
Creates, updates, deletes, gets or lists a vw_deployments
resource.
Overview
Name | vw_deployments |
Type | View |
Id | azure_isv.nginx.vw_deployments |
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,
identity as identity,
tags as tags,
sku as sku,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.nginxVersion') as "nginx_version",
JSON_EXTRACT(properties, '$.managedResourceGroup') as "managed_resource_group",
JSON_EXTRACT(properties, '$.networkProfile') as "network_profile",
JSON_EXTRACT(properties, '$.ipAddress') as "ip_address",
JSON_EXTRACT(properties, '$.enableDiagnosticsSupport') as "enable_diagnostics_support",
JSON_EXTRACT(properties, '$.logging') as "logging",
JSON_EXTRACT(properties, '$.scalingProperties') as "scaling_properties",
JSON_EXTRACT(properties, '$.autoUpgradeProfile') as "auto_upgrade_profile",
JSON_EXTRACT(properties, '$.userProfile') as "user_profile",
JSON_EXTRACT(properties, '$.nginxAppProtect') as "nginx_app_protect",
subscriptionId,
resourceGroupName,
deploymentName
FROM azure_isv.nginx.deployments
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
identity as identity,
tags as tags,
sku as sku,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.nginxVersion') as "nginx_version",
json_extract_path_text(properties, '$.managedResourceGroup') as "managed_resource_group",
json_extract_path_text(properties, '$.networkProfile') as "network_profile",
json_extract_path_text(properties, '$.ipAddress') as "ip_address",
json_extract_path_text(properties, '$.enableDiagnosticsSupport') as "enable_diagnostics_support",
json_extract_path_text(properties, '$.logging') as "logging",
json_extract_path_text(properties, '$.scalingProperties') as "scaling_properties",
json_extract_path_text(properties, '$.autoUpgradeProfile') as "auto_upgrade_profile",
json_extract_path_text(properties, '$.userProfile') as "user_profile",
json_extract_path_text(properties, '$.nginxAppProtect') as "nginx_app_protect",
subscriptionId,
resourceGroupName,
deploymentName
FROM azure_isv.nginx.deployments
WHERE subscriptionId = 'replace-me';