vw_hyperv_cluster_controller_clusters
Creates, updates, deletes, gets or lists a vw_hyperv_cluster_controller_clusters
resource.
Overview
Name | vw_hyperv_cluster_controller_clusters |
Type | View |
Id | azure.migrate.vw_hyperv_cluster_controller_clusters |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.createdTimestamp') as "created_timestamp",
JSON_EXTRACT(properties, '$.updatedTimestamp') as "updated_timestamp",
JSON_EXTRACT(properties, '$.fqdn') as "fqdn",
JSON_EXTRACT(properties, '$.functionalLevel') as "functional_level",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.runAsAccountId') as "run_as_account_id",
JSON_EXTRACT(properties, '$.hostFqdnList') as "host_fqdn_list",
JSON_EXTRACT(properties, '$.errors') as "errors",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName,
clusterName
FROM azure.migrate.hyperv_cluster_controller_clusters
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me' AND clusterName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.createdTimestamp') as "created_timestamp",
json_extract_path_text(properties, '$.updatedTimestamp') as "updated_timestamp",
json_extract_path_text(properties, '$.fqdn') as "fqdn",
json_extract_path_text(properties, '$.functionalLevel') as "functional_level",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.runAsAccountId') as "run_as_account_id",
json_extract_path_text(properties, '$.hostFqdnList') as "host_fqdn_list",
json_extract_path_text(properties, '$.errors') as "errors",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName,
clusterName
FROM azure.migrate.hyperv_cluster_controller_clusters
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me' AND clusterName = 'replace-me';