Skip to main content

web_pub_sub_private_endpoint_connections

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

Overview

Nameweb_pub_sub_private_endpoint_connections
TypeResource
Idazure.web_pubsub.web_pub_sub_private_endpoint_connections

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.
groupIdsarrayGroup IDs.
privateEndpointobjectPrivate endpoint.
privateLinkServiceConnectionStateobjectConnection state of the private endpoint connection.
provisioningStatestringProvisioning state of the resource. Known values are: "Unknown", "Succeeded", "Failed", "Canceled", "Running", "Creating", "Updating", "Deleting", and "Moving".
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
getselectprivate_endpoint_connection_name, resource_group_name, resource_name, subscription_idGet the specified private endpoint connection.
listselectresource_group_name, resource_name, subscription_idList private endpoint connections.
updateupdateprivate_endpoint_connection_name, resource_group_name, resource_name, subscription_idUpdate the state of specified private endpoint connection.
deletedeleteprivate_endpoint_connection_name, resource_group_name, resource_name, subscription_idDelete the specified private endpoint connection.

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
private_endpoint_connection_namestringThe name of the private endpoint connection associated with the Azure resource. Required.
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 specified private endpoint connection.

SELECT
id,
name,
groupIds,
privateEndpoint,
privateLinkServiceConnectionState,
provisioningState,
systemData,
type
FROM azure.web_pubsub.web_pub_sub_private_endpoint_connections
WHERE private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

UPDATE examples

Update the state of specified private endpoint connection.

UPDATE azure.web_pubsub.web_pub_sub_private_endpoint_connections
SET
properties = '{{ properties }}'
WHERE
private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' --required
AND resource_group_name = '{{ resource_group_name }}' --required
AND resource_name = '{{ resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

Delete the specified private endpoint connection.

DELETE FROM azure.web_pubsub.web_pub_sub_private_endpoint_connections
WHERE private_endpoint_connection_name = '{{ private_endpoint_connection_name }}' --required
AND resource_group_name = '{{ resource_group_name }}' --required
AND resource_name = '{{ resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;