Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.service_bus.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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets lists of resources that supports Privatelinks.

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