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
Success. The operation returns a list of private link resources on application gateway.
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 the application gateway 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 | resourceGroupName , applicationGatewayName , subscriptionId | 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 |
---|---|---|
applicationGatewayName | string | The name of the application gateway. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;