Skip to main content

available_private_endpoint_types

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

Overview

Nameavailable_private_endpoint_types
TypeResource
Idazure.network.available_private_endpoint_types

Fields

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

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

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 }}'
AND subscriptionId = '{{ subscriptionId }}';