Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.event_grid.private_endpoint_connections

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
nametextThe name of the resource
group_idstextfield from the properties object
parentNametextfield from the properties object
parentTypetextfield 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
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTparentName, parentType, privateEndpointConnectionName, resourceGroupName, subscriptionIdGet a specific private endpoint connection under a topic, domain, or partner namespace or namespace.
list_by_resourceSELECTparentName, parentType, resourceGroupName, subscriptionIdGet all private endpoint connections under a topic, domain, or partner namespace or namespace.
deleteDELETEparentName, parentType, privateEndpointConnectionName, resourceGroupName, subscriptionIdDelete a specific private endpoint connection under a topic, domain, or partner namespace or namespace.
updateREPLACEparentName, parentType, privateEndpointConnectionName, resourceGroupName, subscriptionIdUpdate a specific private endpoint connection under a topic, domain or partner namespace.

SELECT examples

Get all private endpoint connections under a topic, domain, or partner namespace or namespace.

SELECT
id,
name,
group_ids,
parentName,
parentType,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
system_data,
type
FROM azure.event_grid.vw_private_endpoint_connections
WHERE parentName = '{{ parentName }}'
AND parentType = '{{ parentType }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

REPLACE example

Replaces all fields in the specified private_endpoint_connections resource.

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

DELETE example

Deletes the specified private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.event_grid.private_endpoint_connections
WHERE parentName = '{{ parentName }}'
AND parentType = '{{ parentType }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';