Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.notification_hubs.private_endpoint_connections

Fields

NameDatatypeDescription
group_idstextfield from the properties object
namespaceNametextfield from the properties object
privateEndpointConnectionNametextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTnamespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId
listSELECTnamespaceName, resourceGroupName, subscriptionId
deleteDELETEnamespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId
updateREPLACEnamespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId

SELECT examples

SELECT
group_ids,
namespaceName,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId
FROM azure.notification_hubs.vw_private_endpoint_connections
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

REPLACE example

Replaces all fields in the specified private_endpoint_connections resource.

/*+ update */
REPLACE azure.notification_hubs.private_endpoint_connections
SET
properties = '{{ properties }}'
WHERE
namespaceName = '{{ namespaceName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.notification_hubs.private_endpoint_connections
WHERE namespaceName = '{{ namespaceName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';