Skip to main content

vw_applications

Creates, updates, deletes, gets or lists a vw_applications resource.

Overview

Namevw_applications
TypeView
Idazure.service_fabric_mesh.vw_applications

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.services') as "services",
JSON_EXTRACT(properties, '$.diagnostics') as "diagnostics",
JSON_EXTRACT(properties, '$.debugParams') as "debug_params",
JSON_EXTRACT(properties, '$.serviceNames') as "service_names",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.statusDetails') as "status_details",
JSON_EXTRACT(properties, '$.healthState') as "health_state",
JSON_EXTRACT(properties, '$.unhealthyEvaluation') as "unhealthy_evaluation",
subscriptionId,
resourceGroupName,
applicationResourceName
FROM azure.service_fabric_mesh.applications
WHERE subscriptionId = 'replace-me';