vw_guest_agents
Creates, updates, deletes, gets or lists a vw_guest_agents
resource.
Overview
Name | vw_guest_agents |
Type | View |
Id | azure.system_center_vm_manager.vw_guest_agents |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.uuid') as "uuid",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
JSON_EXTRACT(properties, '$.httpProxyConfig') as "http_proxy_config",
JSON_EXTRACT(properties, '$.provisioningAction') as "provisioning_action",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.customResourceName') as "custom_resource_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.privateLinkScopeResourceId') as "private_link_scope_resource_id",
resourceUri
FROM azure.system_center_vm_manager.guest_agents
WHERE resourceUri = 'replace-me';
SELECT
json_extract_path_text(properties, '$.uuid') as "uuid",
json_extract_path_text(properties, '$.credentials') as "credentials",
json_extract_path_text(properties, '$.httpProxyConfig') as "http_proxy_config",
json_extract_path_text(properties, '$.provisioningAction') as "provisioning_action",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.customResourceName') as "custom_resource_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.privateLinkScopeResourceId') as "private_link_scope_resource_id",
resourceUri
FROM azure.system_center_vm_manager.guest_agents
WHERE resourceUri = 'replace-me';