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
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified identifier of the resource. |
name | text | Name of the resource. |
azureResourceName | text | field from the properties object |
group_id | text | field from the properties object |
privateLinkResourceName | text | field from the properties object |
required_members | text | field from the properties object |
required_zone_names | 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 | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
properties | object | Properties of a private link resource. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | azureResourceName, privateLinkResourceName, resourceGroupName, subscriptionId | Get properties of a private link resource. |
list_by_resource | SELECT | azureResourceName, resourceGroupName, subscriptionId | List private link resources under a specific Power BI resource. |
SELECT
examples
List private link resources under a specific Power BI resource.
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
azureResourceName,
group_id,
privateLinkResourceName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.powerbi_privatelinks.vw_private_link_resources
WHERE azureResourceName = '{{ azureResourceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.powerbi_privatelinks.private_link_resources
WHERE azureResourceName = '{{ azureResourceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';