Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.relay.private_link_resources

Fields

The following fields are returned by SELECT queries:

Private Endpoint Connection successfully returned.

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, privateLinkResourceName, subscriptionIdGets a description for the specified Private Endpoint Connection name.
listselectresourceGroupName, 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
privateLinkResourceNamestringThe PrivateLinkResource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets a description for the specified Private Endpoint Connection name.

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