vw_springbootsites
Creates, updates, deletes, gets or lists a vw_springbootsites
resource.
Overview
Name | vw_springbootsites |
Type | View |
Id | azure_extras.off_azure_springboot.vw_springbootsites |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
extendedLocation as extended_location,
JSON_EXTRACT(properties, '$.masterSiteId') as "master_site_id",
JSON_EXTRACT(properties, '$.migrateProjectId') as "migrate_project_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
springbootsitesName
FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
extendedLocation as extended_location,
json_extract_path_text(properties, '$.masterSiteId') as "master_site_id",
json_extract_path_text(properties, '$.migrateProjectId') as "migrate_project_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
springbootsitesName
FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = 'replace-me';