Skip to main content

private_endpoint_connections_group_ids

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

Overview

Nameprivate_endpoint_connections_group_ids
TypeResource
Idazure.notification_hubs.private_endpoint_connections_group_ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectRepresents properties of Private Link Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, namespaceName, subResourceNameEven though this namespace requires subscription id, resource group and namespace name, it returns a constant payload (for a given namespacE) every time it's called.
That's why we don't send it to the sibling RP, but process it directly in the scale unit that received the request.
listselectsubscriptionId, resourceGroupName, namespaceNameEven though this namespace requires subscription id, resource group and namespace name, it returns a constant payload (for a given namespacE) every time it's called.
That's why we don't send it to the sibling RP, but process it directly in the scale unit that received the request.

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
namespaceNamestringNamespace name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subResourceNamestringName of the Private Link sub-resource. The only supported sub-resource is "namespace"
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Even though this namespace requires subscription id, resource group and namespace name, it returns a constant payload (for a given namespacE) every time it's called.
That's why we don't send it to the sibling RP, but process it directly in the scale unit that received the request.

SELECT
properties
FROM azure.notification_hubs.private_endpoint_connections_group_ids
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND subResourceName = '{{ subResourceName }}' -- required
;