available_private_endpoint_types
Creates, updates, deletes, gets or lists an available_private_endpoint_types
resource.
Overview
Name | available_private_endpoint_types |
Type | Resource |
Id | azure.network.available_private_endpoint_types |
Fields
The following fields are returned by SELECT
queries:
- list_by_resource_group
- list
Request successful. Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
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. |
Request successful. Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
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. | |
list | select | location , subscriptionId | Returns 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.
Name | Datatype | Description |
---|---|---|
location | string | The location of the domain name. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list_by_resource_group
- list
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
;
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 subscriptionId = '{{ subscriptionId }}' -- required
;