vw_standby_virtual_machine_pools
Creates, updates, deletes, gets or lists a vw_standby_virtual_machine_pools
resource.
Overview
Name | vw_standby_virtual_machine_pools |
Type | View |
Id | azure.standby_pools.vw_standby_virtual_machine_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.elasticityProfile') as "elasticity_profile",
JSON_EXTRACT(properties, '$.virtualMachineState') as "virtual_machine_state",
JSON_EXTRACT(properties, '$.attachedVirtualMachineScaleSetId') as "attached_virtual_machine_scale_set_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
standbyVirtualMachinePoolName
FROM azure.standby_pools.standby_virtual_machine_pools
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.elasticityProfile') as "elasticity_profile",
json_extract_path_text(properties, '$.virtualMachineState') as "virtual_machine_state",
json_extract_path_text(properties, '$.attachedVirtualMachineScaleSetId') as "attached_virtual_machine_scale_set_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
standbyVirtualMachinePoolName
FROM azure.standby_pools.standby_virtual_machine_pools
WHERE subscriptionId = 'replace-me';