vw_managed_unsupported_vm_sizes
Creates, updates, deletes, gets or lists a vw_managed_unsupported_vm_sizes
resource.
Overview
Name | vw_managed_unsupported_vm_sizes |
Type | View |
Id | azure.service_fabric_managed_clusters.vw_managed_unsupported_vm_sizes |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.size') as "size",
subscriptionId,
location,
vmSize
FROM azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.size') as "size",
subscriptionId,
location,
vmSize
FROM azure.service_fabric_managed_clusters.managed_unsupported_vm_sizes
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';