private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.event_grid.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. |
display_name | text | field from the properties object |
group_id | text | field from the properties object |
parentName | text | field from the properties object |
parentType | 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 | |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | parentName, parentType, privateLinkResourceName, resourceGroupName, subscriptionId | Get properties of a private link resource. |
list_by_resource | SELECT | parentName, parentType, resourceGroupName, subscriptionId | List 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.
- vw_private_link_resources
- private_link_resources
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.event_grid.private_link_resources
WHERE parentName = '{{ parentName }}'
AND parentType = '{{ parentType }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';