private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.powerbi_privatelinks.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
properties | object | Resource properties. |
type | string | Type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
properties | object | Resource properties. |
type | string | Type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , azureResourceName , privateLinkResourceName | Get properties of a private link resource. | |
list_by_resource | select | subscriptionId , resourceGroupName , azureResourceName | List 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.
Name | Datatype | Description |
---|---|---|
azureResourceName | string | The name of the Azure resource. |
privateLinkResourceName | string | The name of private link resource. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- get
- list_by_resource
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
;
List private link resources under a specific Power BI 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
;