Skip to main content

private_link_services_auto_approved_private_link_services_by_resource_groups

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

Overview

Nameprivate_link_services_auto_approved_private_link_services_by_resource_groups
TypeResource
Idazure.network.private_link_services_auto_approved_private_link_services_by_resource_groups

Fields

The following fields are returned by SELECT queries:

Request successful. Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.

NameDatatypeDescription
privateLinkServicestringThe id of the private link service resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, resourceGroupName, subscriptionIdReturns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationstringThe location of the domain name.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Returns all of the private link service ids that can be linked to a Private Endpoint with auto approved in this subscription in this region.

SELECT
privateLinkService
FROM azure.network.private_link_services_auto_approved_private_link_services_by_resource_groups
WHERE location = '{{ location }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;