host_pools_registration_tokens
Creates, updates, deletes, gets or lists a host_pools_registration_tokens
resource.
Overview
Name | host_pools_registration_tokens |
Type | Resource |
Id | azure.desktop_virtualization.host_pools_registration_tokens |
Fields
Name | Datatype | Description |
---|---|---|
expirationTime | string | Expiration time of registration token. |
token | string | The registration token base64 encoded string. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | hostPoolName, resourceGroupName, subscriptionId | Operation to list the RegistrationTokens associated with the HostPool. |
SELECT
examples
Operation to list the RegistrationTokens associated with the HostPool.
SELECT
expirationTime,
token
FROM azure.desktop_virtualization.host_pools_registration_tokens
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';