private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.purview.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | The private link resource identifier. |
name | text | The private link resource name. |
accountName | text | field from the properties object |
groupId | text | field from the properties object |
group_id | 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 | The private link resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The private link resource identifier. |
name | string | The private link resource name. |
properties | object | A privately linkable resource properties. |
type | string | The private link resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_group_id | SELECT | accountName, groupId, resourceGroupName, subscriptionId | Gets a privately linkable resources for an account with given group identifier |
list_by_account | SELECT | accountName, resourceGroupName, subscriptionId | Gets a list of privately linkable resources for an account |
SELECT
examples
Gets a list of privately linkable resources for an account
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
accountName,
groupId,
group_id,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.purview.vw_private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.purview.private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';