application_gateway_private_endpoint_connections
Creates, updates, deletes, gets or lists a application_gateway_private_endpoint_connections
resource.
Overview
Name | application_gateway_private_endpoint_connections |
Type | Resource |
Id | azure.network.application_gateway_private_endpoint_connections |
Fields
- vw_application_gateway_private_endpoint_connections
- application_gateway_private_endpoint_connections
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Name of the private endpoint connection on an application gateway. |
applicationGatewayName | text | field from the properties object |
connectionName | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
link_identifier | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Name of the private endpoint connection on an application gateway. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of Private Link Resource of an application gateway. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationGatewayName, connectionName, resourceGroupName, subscriptionId | Gets the specified private endpoint connection on application gateway. |
list | SELECT | applicationGatewayName, resourceGroupName, subscriptionId | Lists all private endpoint connections on an application gateway. |
delete | DELETE | applicationGatewayName, connectionName, resourceGroupName, subscriptionId | Deletes the specified private endpoint connection on application gateway. |
update | REPLACE | applicationGatewayName, connectionName, resourceGroupName, subscriptionId | Updates the specified private endpoint connection on application gateway. |
SELECT
examples
Lists all private endpoint connections on an application gateway.
- vw_application_gateway_private_endpoint_connections
- application_gateway_private_endpoint_connections
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 }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.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 }}';