Skip to main content

application_gateway_private_endpoint_connections

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

Overview

Nameapplication_gateway_private_endpoint_connections
TypeResource
Idazure.network.application_gateway_private_endpoint_connections

Fields

NameDatatypeDescription
idtextResource ID.
nametextName of the private endpoint connection on an application gateway.
applicationGatewayNametextfield from the properties object
connectionNametextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
link_identifiertextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTapplicationGatewayName, connectionName, resourceGroupName, subscriptionIdGets the specified private endpoint connection on application gateway.
listSELECTapplicationGatewayName, resourceGroupName, subscriptionIdLists all private endpoint connections on an application gateway.
deleteDELETEapplicationGatewayName, connectionName, resourceGroupName, subscriptionIdDeletes the specified private endpoint connection on application gateway.
updateREPLACEapplicationGatewayName, connectionName, resourceGroupName, subscriptionIdUpdates the specified private endpoint connection on application gateway.

SELECT examples

Lists all private endpoint connections on an application gateway.

SELECT
id,
name,
applicationGatewayName,
connectionName,
etag,
link_identifier,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.network.vw_application_gateway_private_endpoint_connections
WHERE applicationGatewayName = '{{ applicationGatewayName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

REPLACE example

Replaces all fields in the specified application_gateway_private_endpoint_connections resource.

/*+ update */
REPLACE azure.network.application_gateway_private_endpoint_connections
SET
properties = '{{ properties }}',
name = '{{ name }}',
id = '{{ id }}'
WHERE
applicationGatewayName = '{{ applicationGatewayName }}'
AND connectionName = '{{ connectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified application_gateway_private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.network.application_gateway_private_endpoint_connections
WHERE applicationGatewayName = '{{ applicationGatewayName }}'
AND connectionName = '{{ connectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';