active_session_host_configurations
Creates, updates, deletes, gets or lists a active_session_host_configurations
resource.
Overview
Name | active_session_host_configurations |
Type | Resource |
Id | azure.desktop_virtualization.active_session_host_configurations |
Fields
- vw_active_session_host_configurations
- active_session_host_configurations
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | text | The name of the resource |
availability_zones | text | field from the properties object |
boot_diagnostics_info | text | field from the properties object |
custom_configuration_script_url | text | field from the properties object |
disk_info | text | field from the properties object |
domain_info | text | field from the properties object |
friendly_name | text | field from the properties object |
hostPoolName | text | field from the properties object |
image_info | text | field from the properties object |
network_info | text | field from the properties object |
resourceGroupName | text | field from the properties object |
security_info | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
version | text | field from the properties object |
vm_admin_credentials | text | field from the properties object |
vm_location | text | field from the properties object |
vm_name_prefix | text | field from the properties object |
vm_resource_group | text | field from the properties object |
vm_size_id | text | field from the properties object |
vm_tags | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Session host configurations of HostPool. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | hostPoolName, resourceGroupName, subscriptionId | Get the ActiveSessionHostConfiguration for the hostPool that is currently being used for update operations. |
list_by_host_pool | SELECT | hostPoolName, resourceGroupName, subscriptionId | List activeSessionHostConfigurations. |
SELECT
examples
Get the ActiveSessionHostConfiguration for the hostPool that is currently being used for update operations.
- vw_active_session_host_configurations
- active_session_host_configurations
SELECT
id,
name,
availability_zones,
boot_diagnostics_info,
custom_configuration_script_url,
disk_info,
domain_info,
friendly_name,
hostPoolName,
image_info,
network_info,
resourceGroupName,
security_info,
subscriptionId,
system_data,
type,
version,
vm_admin_credentials,
vm_location,
vm_name_prefix,
vm_resource_group,
vm_size_id,
vm_tags
FROM azure.desktop_virtualization.vw_active_session_host_configurations
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.desktop_virtualization.active_session_host_configurations
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';