private_endpoint_connections
Creates, updates, deletes, gets or lists a private_endpoint_connections
resource.
Overview
Name | private_endpoint_connections |
Type | Resource |
Id | azure.desktop_virtualization.private_endpoint_connections |
Fields
- vw_private_endpoint_connections
- private_endpoint_connections
Name | Datatype | Description |
---|---|---|
group_ids | text | field from the properties object |
hostPoolName | text | field from the properties object |
privateEndpointConnectionName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of the private endpoint connection. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_host_pool | SELECT | hostPoolName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Get a private endpoint connection. |
get_by_workspace | SELECT | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Get a private endpoint connection. |
list_by_host_pool | SELECT | hostPoolName, resourceGroupName, subscriptionId | List private endpoint connections associated with hostpool. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | List private endpoint connections. |
delete_by_host_pool | DELETE | hostPoolName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Remove a connection. |
delete_by_workspace | DELETE | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Remove a connection. |
update_by_host_pool | EXEC | hostPoolName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Approve or reject a private endpoint connection. |
update_by_workspace | EXEC | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Approve or reject a private endpoint connection. |
SELECT
examples
List private endpoint connections associated with hostpool.
- vw_private_endpoint_connections
- private_endpoint_connections
SELECT
group_ids,
hostPoolName,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
workspaceName
FROM azure.desktop_virtualization.vw_private_endpoint_connections
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.desktop_virtualization.private_endpoint_connections
WHERE hostPoolName = '{{ hostPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure.desktop_virtualization.private_endpoint_connections
WHERE hostPoolName = '{{ hostPoolName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';