vw_vcenter_controllers
Creates, updates, deletes, gets or lists a vw_vcenter_controllers
resource.
Overview
Name | vw_vcenter_controllers |
Type | View |
Id | azure.migrate.vw_vcenter_controllers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.runAsAccountId') as "run_as_account_id",
JSON_EXTRACT(properties, '$.errors') as "errors",
JSON_EXTRACT(properties, '$.createdTimestamp') as "created_timestamp",
JSON_EXTRACT(properties, '$.updatedTimestamp') as "updated_timestamp",
JSON_EXTRACT(properties, '$.fqdn') as "fqdn",
JSON_EXTRACT(properties, '$.port') as "port",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.perfStatisticsLevel') as "perf_statistics_level",
JSON_EXTRACT(properties, '$.instanceUuid') as "instance_uuid",
JSON_EXTRACT(properties, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName,
vcenterName
FROM azure.migrate.vcenter_controllers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.runAsAccountId') as "run_as_account_id",
json_extract_path_text(properties, '$.errors') as "errors",
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, '$.port') as "port",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.perfStatisticsLevel') as "perf_statistics_level",
json_extract_path_text(properties, '$.instanceUuid') as "instance_uuid",
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName,
vcenterName
FROM azure.migrate.vcenter_controllers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND siteName = 'replace-me';