Skip to main content

web_pub_sub_private_link_resources

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

Overview

Nameweb_pub_sub_private_link_resources
TypeResource
Idazure.web_pubsub.web_pub_sub_private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long
namestringThe name of the resource.
groupIdstringGroup Id of the private link resource.
requiredMembersarrayRequired members of the private link resource.
requiredZoneNamesarrayRequired private DNS zone names.
shareablePrivateLinkResourceTypesarrayThe list of resources that are onboarded to private link service.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, resource_name, subscription_idGet the private link resources that need to be created for a resource.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
resource_namestringThe name of the resource. Required.
subscription_idstring

SELECT examples

Get the private link resources that need to be created for a resource.

SELECT
id,
name,
groupId,
requiredMembers,
requiredZoneNames,
shareablePrivateLinkResourceTypes,
systemData,
type
FROM azure.web_pubsub.web_pub_sub_private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;