Skip to main content

private_endpoint_connection_lists

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

Overview

Nameprivate_endpoint_connection_lists
TypeResource
Idazure.app_service.private_endpoint_connection_lists

Fields

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectRemotePrivateEndpointConnectionARMResource resource specific properties
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, resourceGroupName, subscriptionIdDescription for Gets the list of private endpoint connections associated with a site

SELECT examples

Description for Gets the list of private endpoint connections associated with a site

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.private_endpoint_connection_lists
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';