session_host_managements_update_status
Creates, updates, deletes, gets or lists a session_host_managements_update_status
resource.
Overview
Name | session_host_managements_update_status |
Type | Resource |
Id | azure.desktop_virtualization.session_host_managements_update_status |
Fields
- vw_session_host_managements_update_status
- session_host_managements_update_status
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified ID for the async operation. |
name | text | Name of the async operation. |
correlation_id | text | field from the properties object |
end_time | text | field from the properties object |
error | text | The error detail. |
hostPoolName | text | field from the properties object |
percent_complete | text | field from the properties object |
progress | text | field from the properties object |
resourceGroupName | text | field from the properties object |
scheduled_date_time | text | field from the properties object |
session_host_management | text | field from the properties object |
start_time | text | field from the properties object |
status | text | Operation status. Current defined values are < Error | Scheduled | UpdatingSessionHosts | ValidatingSessionHostUpdate | Paused | Pausing | Cancelling > | Succeeded | Failed | Canceled |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string | The end time of the operation. |
error | object | The error detail. |
percentComplete | number | Percent of the operation that is complete. |
properties | object | Properties bag to hold custom RP properties for sessionHostManagement Update Statuses. |
startTime | string | The start time of the operation. |
status | string | Operation status. Current defined values are < Error | Scheduled | UpdatingSessionHosts | ValidatingSessionHostUpdate | Paused | Pausing | Cancelling > | Succeeded | Failed | Canceled |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | hostPoolName, resourceGroupName, subscriptionId | Get the session host update status for a given hostpool. |
SELECT
examples
Get the session host update status for a given hostpool.
- vw_session_host_managements_update_status
- session_host_managements_update_status
SELECT
id,
name,
correlation_id,
end_time,
error,
hostPoolName,
percent_complete,
progress,
resourceGroupName,
scheduled_date_time,
session_host_management,
start_time,
status,
subscriptionId
FROM azure.desktop_virtualization.vw_session_host_managements_update_status
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status
FROM azure.desktop_virtualization.session_host_managements_update_status
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';