private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.event_hubs.private_link_resources |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource |
properties | object | Properties of PrivateLinkResource |
type | string | Type of the resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | namespaceName, resourceGroupName, subscriptionId | Gets lists of resources that supports Privatelinks. |
SELECT
examples
Gets lists of resources that supports Privatelinks.
SELECT
id,
name,
properties,
type
FROM azure.event_hubs.private_link_resources
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';