private_endpoint_connections
Creates, updates, deletes, gets or lists a private_endpoint_connections
resource.
Overview
Name | private_endpoint_connections |
Type | Resource |
Id | azure.notification_hubs.private_endpoint_connections |
Fields
- vw_private_endpoint_connections
- private_endpoint_connections
Name | Datatype | Description |
---|---|---|
group_ids | text | field from the properties object |
namespaceName | text | field from the properties object |
privateEndpointConnectionName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Private Endpoint Connection properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | namespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId | |
list | SELECT | namespaceName, resourceGroupName, subscriptionId | |
delete | DELETE | namespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId | |
update | REPLACE | namespaceName, privateEndpointConnectionName, resourceGroupName, subscriptionId |
SELECT
examples
- vw_private_endpoint_connections
- private_endpoint_connections
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 }}';
SELECT
properties
FROM azure.notification_hubs.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 }}';