Skip to main content

application_gateway_private_link_resources

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

Overview

Nameapplication_gateway_private_link_resources
TypeResource
Idazure.network.application_gateway_private_link_resources

Fields

The following fields are returned by SELECT queries:

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.
groupIdstringGroup identifier of private link resource.
requiredMembersarrayRequired member names of private link resource.
requiredZoneNamesarrayRequired DNS zone names of the the private link resource.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, application_gateway_name, subscription_idLists 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.

NameDatatypeDescription
application_gateway_namestringThe name of the application gateway. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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
;