vw_application_type_versions
Creates, updates, deletes, gets or lists a vw_application_type_versions
resource.
Overview
Name | vw_application_type_versions |
Type | View |
Id | azure.service_fabric.vw_application_type_versions |
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,
tags as tags,
etag as etag,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.appPackageUrl') as "app_package_url",
JSON_EXTRACT(properties, '$.defaultParameterList') as "default_parameter_list",
subscriptionId,
resourceGroupName,
clusterName,
applicationTypeName,
version
FROM azure.service_fabric.application_type_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND clusterName = 'replace-me' AND applicationTypeName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
etag as etag,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.appPackageUrl') as "app_package_url",
json_extract_path_text(properties, '$.defaultParameterList') as "default_parameter_list",
subscriptionId,
resourceGroupName,
clusterName,
applicationTypeName,
version
FROM azure.service_fabric.application_type_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND clusterName = 'replace-me' AND applicationTypeName = 'replace-me';