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:

Success. The operation returns a list of private link resources on application gateway.

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 the application gateway private link resource.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, applicationGatewayName, subscriptionIdLists 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
applicationGatewayNamestringThe name of the application gateway.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND applicationGatewayName = '{{ applicationGatewayName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;