vw_vm_instance_guest_agents
Creates, updates, deletes, gets or lists a vw_vm_instance_guest_agents
resource.
Overview
Name | vw_vm_instance_guest_agents |
Type | View |
Id | azure_isv.connected_vsphere.vw_vm_instance_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, '$.privateLinkScopeResourceId') as "private_link_scope_resource_id",
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, '$.statuses') as "statuses",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
resourceUri
FROM azure_isv.connected_vsphere.vm_instance_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, '$.privateLinkScopeResourceId') as "private_link_scope_resource_id",
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, '$.statuses') as "statuses",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
resourceUri
FROM azure_isv.connected_vsphere.vm_instance_guest_agents
WHERE resourceUri = 'replace-me';