private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure_extras.power_platform.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
enterprisePolicyName | text | field from the properties object |
groupName | 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 type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Properties of a private link resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | enterprisePolicyName, groupName, resourceGroupName, subscriptionId | Gets the private link resources that need to be created for an EnterprisePolicy. |
list_by_enterprise_policy | SELECT | enterprisePolicyName, resourceGroupName, subscriptionId | Gets the private link resources that need to be created for enterprisePolicy. |
SELECT
examples
Gets the private link resources that need to be created for enterprisePolicy.
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
enterprisePolicyName,
groupName,
group_id,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure_extras.power_platform.vw_private_link_resources
WHERE enterprisePolicyName = '{{ enterprisePolicyName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure_extras.power_platform.private_link_resources
WHERE enterprisePolicyName = '{{ enterprisePolicyName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';