Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.event_grid.private_link_resources

Fields

NameDatatypeDescription
idtextFully qualified identifier of the resource.
nametextName of the resource.
display_nametextfield from the properties object
group_idtextfield from the properties object
parentNametextfield from the properties object
parentTypetextfield from the properties object
privateLinkResourceNametextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTparentName, parentType, privateLinkResourceName, resourceGroupName, subscriptionIdGet properties of a private link resource.
list_by_resourceSELECTparentName, parentType, resourceGroupName, subscriptionIdList all the private link resources under a topic, domain, or partner namespace or namespace.

SELECT examples

List all the private link resources under a topic, domain, or partner namespace or namespace.

SELECT
id,
name,
display_name,
group_id,
parentName,
parentType,
privateLinkResourceName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.event_grid.vw_private_link_resources
WHERE parentName = '{{ parentName }}'
AND parentType = '{{ parentType }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';