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_hubs.private_link_resources

Fields

The following fields are returned by SELECT queries:

Private Link resource List

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource
propertiesobjectProperties of the private link resource.
typestringType of the resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, namespaceName, subscriptionIdGets lists of resources that supports Privatelinks.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
namespaceNamestringThe Namespace name
resourceGroupNamestringName of the resource group within the azure subscription.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets lists of resources that supports Privatelinks.

SELECT
id,
name,
properties,
type
FROM azure.event_hubs.private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;