application_gateway_private_link_resources
Creates, updates, deletes, gets or lists a application_gateway_private_link_resources
resource.
Overview
Name | application_gateway_private_link_resources |
Type | Resource |
Id | azure.network.application_gateway_private_link_resources |
Fields
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. |
properties | object | Properties of a private link resource. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | applicationGatewayName, resourceGroupName, subscriptionId | Lists all private link resources on an application gateway. |
SELECT
examples
Lists all private link resources on an application gateway.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.application_gateway_private_link_resources
WHERE applicationGatewayName = '{{ applicationGatewayName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';