Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.monitor.private_link_resources

Fields

The following fields are returned by SELECT queries:

Successfully retrieved a specified private link resource.

NameDatatypeDescription
idstringAzure resource Id
namestringAzure resource name
locationstringResource location
propertiesobjectResource properties.
tagsResource tags
typestringAzure resource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, scopeName, groupNameGets the private link resources that need to be created for a Azure Monitor PrivateLinkScope.
list_by_private_link_scopeselectsubscriptionId, resourceGroupName, scopeNameGets the private link resources that need to be created for a Azure Monitor PrivateLinkScope.

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
groupNamestringThe name of the private link resource.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
scopeNamestringThe name of the Azure Monitor PrivateLinkScope resource.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.monitor.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND scopeName = '{{ scopeName }}' -- required
AND groupName = '{{ groupName }}' -- required
;