vw_fleets
Creates, updates, deletes, gets or lists a vw_fleets
resource.
Overview
Name | vw_fleets |
Type | View |
Id | azure.fleet.vw_fleets |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
eTag as e_tag,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.hubProfile') as "hub_profile",
subscriptionId,
resourceGroupName,
fleetName
FROM azure.fleet.fleets
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
eTag as e_tag,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.hubProfile') as "hub_profile",
subscriptionId,
resourceGroupName,
fleetName
FROM azure.fleet.fleets
WHERE subscriptionId = 'replace-me';