application_gateway_private_link_resources
Creates, updates, deletes, gets or lists an application_gateway_private_link_resources resource.
Overview
| Name | application_gateway_private_link_resources |
| Type | Resource |
| Id | azure.network.application_gateway_private_link_resources |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Name of the private link resource that is unique within an Application Gateway. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
groupId | string | Group identifier of private link resource. |
requiredMembers | array | Required member names of private link resource. |
requiredZoneNames | array | Required DNS zone names of the the private link resource. |
type | string | Type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, application_gateway_name, subscription_id | Lists all private link resources on an application gateway. |
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 |
|---|---|---|
application_gateway_name | string | The name of the application gateway. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- list
Lists all private link resources on an application gateway.
SELECT
id,
name,
etag,
groupId,
requiredMembers,
requiredZoneNames,
type
FROM azure.network.application_gateway_private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND application_gateway_name = '{{ application_gateway_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;