Skip to main content

application_gateway_private_link_resources

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

Overview

Nameapplication_gateway_private_link_resources
TypeResource
Idazure.network.application_gateway_private_link_resources

Fields

NameDatatypeDescription
idstringResource ID.
namestringName of the private link resource that is unique within an Application Gateway.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of a private link resource.
typestringType of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTapplicationGatewayName, resourceGroupName, subscriptionIdLists 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 }}';