Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.cosmos_db.private_link_resources

Fields

NameDatatypeDescription
idtextThe unique resource identifier of the database account.
nametextThe name of the database account.
accountNametextfield from the properties object
groupNametextfield from the properties object
group_idtextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of Azure resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, groupName, resourceGroupName, subscriptionIdGets the private link resources that need to be created for a Cosmos DB account.
list_by_database_accountSELECTaccountName, resourceGroupName, subscriptionIdGets the private link resources that need to be created for a Cosmos DB account.

SELECT examples

Gets the private link resources that need to be created for a Cosmos DB account.

SELECT
id,
name,
accountName,
groupName,
group_id,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.cosmos_db.vw_private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';