Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.key_vault.private_link_resources

Fields

The following fields are returned by SELECT queries:

Successfully retrieved private link resources.

NameDatatypeDescription
idstringFully qualified identifier of the key vault resource.
namestringName of the key vault resource.
locationstringAzure location of the key vault resource.
propertiesobjectResource properties.
tagsobjectTags assigned to the key vault resource.
typestringResource type of the key vault resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_vaultselectsubscriptionId, resourceGroupName, vaultNameGets the private link resources supported for the key vault.

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
resourceGroupNamestringName of the resource group that contains the key vault.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
vaultNamestringThe name of the key vault.

SELECT examples

Gets the private link resources supported for the key vault.

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