Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.powerbi_privatelinks.private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource.
propertiesobjectResource properties.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, azureResourceName, privateLinkResourceNameGet properties of a private link resource.
list_by_resourceselectsubscriptionId, resourceGroupName, azureResourceNameList private link resources under a specific Power BI resource.

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.
privateLinkResourceNamestringThe name of private link resource.
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 properties of a private link resource.

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