Skip to main content

available_private_endpoint_types

Creates, updates, deletes, gets or lists an available_private_endpoint_types resource.

Overview

Nameavailable_private_endpoint_types
TypeResource
Idazure.network.available_private_endpoint_types

Fields

The following fields are returned by SELECT queries:

Request successful. Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.

NameDatatypeDescription
idstringA unique identifier of the AvailablePrivateEndpoint Type resource.
namestringThe name of the service and resource.
displayNamestringDisplay name of the resource.
resourceNamestringThe name of the service and resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_resource_groupselectlocation, resourceGroupName, subscriptionIdReturns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
listselectlocation, subscriptionIdReturns all of the resource types that can be linked to a Private Endpoint 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 resource types that can be linked to a Private Endpoint in this subscription in this region.

SELECT
id,
name,
displayName,
resourceName,
type
FROM azure.network.available_private_endpoint_types
WHERE location = '{{ location }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;