Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.powerbi_privatelinks.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringSpecifies the id of the resource.
namestringSpecifies the name of the resource.
propertiesobjectSpecifies the properties of the private endpoint connection. (title: PrivateEndpointConnectionProperties)
systemDataobjectThe system meta data relating to this resource.
typestringSpecifies the type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, azureResourceName, privateEndpointNameGet a specific private endpoint connection for Power BI by private endpoint name.
list_by_resourceselectsubscriptionId, resourceGroupName, azureResourceNameGets private endpoint connection for Power BI.
createinsertsubscriptionId, resourceGroupName, azureResourceName, privateEndpointNameUpdates the status of Private Endpoint Connection object. Used to approve or reject a connection.
deletedeletesubscriptionId, resourceGroupName, azureResourceName, privateEndpointNameDeletes a private endpoint connection for Power BI by private endpoint name.

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
azureResourceNamestringThe name of the Azure resource.
privateEndpointNamestringThe name of the private endpoint.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringThe Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Get a specific private endpoint connection for Power BI by private endpoint name.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.powerbi_privatelinks.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND azureResourceName = '{{ azureResourceName }}' -- required
AND privateEndpointName = '{{ privateEndpointName }}' -- required
;

INSERT examples

Updates the status of Private Endpoint Connection object. Used to approve or reject a connection.

INSERT INTO azure.powerbi_privatelinks.private_endpoint_connections (
data__properties,
subscriptionId,
resourceGroupName,
azureResourceName,
privateEndpointName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ azureResourceName }}',
'{{ privateEndpointName }}'
RETURNING
id,
name,
properties,
systemData,
type
;

DELETE examples

Deletes a private endpoint connection for Power BI by private endpoint name.

DELETE FROM azure.powerbi_privatelinks.private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND azureResourceName = '{{ azureResourceName }}' --required
AND privateEndpointName = '{{ privateEndpointName }}' --required
;