Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.batch.private_link_resources

Fields

NameDatatypeDescription
idtextThe ID of the resource.
nametextThe name of the resource.
accountNametextfield from the properties object
etagtextThe ETag of the resource, used for concurrency statements.
group_idtextfield from the properties object
privateLinkResourceNametextfield 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
tagstextThe tags of the resource.
typetextThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, privateLinkResourceName, resourceGroupName, subscriptionIdGets information about the specified private link resource.
list_by_batch_accountSELECTaccountName, resourceGroupName, subscriptionIdLists all of the private link resources in the specified account.

SELECT examples

Lists all of the private link resources in the specified account.

SELECT
id,
name,
accountName,
etag,
group_id,
privateLinkResourceName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.batch.vw_private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';