vw_cloud_service_role_instances
Creates, updates, deletes, gets or lists a vw_cloud_service_role_instances
resource.
Overview
Name | vw_cloud_service_role_instances |
Type | View |
Id | azure.compute.vw_cloud_service_role_instances |
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,
sku as sku,
JSON_EXTRACT(properties, '$.networkProfile') as "network_profile",
JSON_EXTRACT(properties, '$.instanceView') as "instance_view",
subscriptionId,
resourceGroupName,
cloudServiceName,
roleInstanceName
FROM azure.compute.cloud_service_role_instances
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND cloudServiceName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
sku as sku,
json_extract_path_text(properties, '$.networkProfile') as "network_profile",
json_extract_path_text(properties, '$.instanceView') as "instance_view",
subscriptionId,
resourceGroupName,
cloudServiceName,
roleInstanceName
FROM azure.compute.cloud_service_role_instances
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND cloudServiceName = 'replace-me';