available_private_endpoint_types
Creates, updates, deletes, gets or lists a available_private_endpoint_types
resource.
Overview
Name | available_private_endpoint_types |
Type | Resource |
Id | azure.network.available_private_endpoint_types |
Fields
Name | Datatype | Description |
---|---|---|
id | string | A unique identifier of the AvailablePrivateEndpoint Type resource. |
name | string | The name of the service and resource. |
displayName | string | Display name of the resource. |
resourceName | string | The name of the service and resource. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region. |
list_by_resource_group | SELECT | location, resourceGroupName, subscriptionId | Returns 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 }}';