Skip to main content

host_pools_registration_tokens

Creates, updates, deletes, gets or lists a host_pools_registration_tokens resource.

Overview

Namehost_pools_registration_tokens
TypeResource
Idazure.desktop_virtualization.host_pools_registration_tokens

Fields

NameDatatypeDescription
expirationTimestringExpiration time of registration token.
tokenstringThe registration token base64 encoded string.

Methods

NameAccessible byRequired ParamsDescription
listSELECThostPoolName, resourceGroupName, subscriptionIdOperation 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 }}';