private_link_services_private_endpoint_connections
Creates, updates, deletes, gets or lists a private_link_services_private_endpoint_connections
resource.
Overview
Name | private_link_services_private_endpoint_connections |
Type | Resource |
Id | azure.network.private_link_services_private_endpoint_connections |
Fields
- vw_private_link_services_private_endpoint_connections
- private_link_services_private_endpoint_connections
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | text | A unique read-only string that changes whenever the resource is updated. |
link_identifier | text | field from the properties object |
peConnectionName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_endpoint_location | 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 |
serviceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of the PrivateEndpointConnectProperties. |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | peConnectionName, resourceGroupName, serviceName, subscriptionId | Get the specific private end point connection by specific private link service in the resource group. |
list | SELECT | resourceGroupName, serviceName, subscriptionId | Gets all private end point connections for a specific private link service. |
delete | DELETE | peConnectionName, resourceGroupName, serviceName, subscriptionId | Delete private end point connection for a private link service in a subscription. |
update | REPLACE | peConnectionName, resourceGroupName, serviceName, subscriptionId | Approve or reject private end point connection for a private link service in a subscription. |
SELECT
examples
Gets all private end point connections for a specific private link service.
- vw_private_link_services_private_endpoint_connections
- private_link_services_private_endpoint_connections
SELECT
id,
name,
etag,
link_identifier,
peConnectionName,
private_endpoint,
private_endpoint_location,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
serviceName,
subscriptionId,
type
FROM azure.network.vw_private_link_services_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.private_link_services_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified private_link_services_private_endpoint_connections
resource.
/*+ update */
REPLACE azure.network.private_link_services_private_endpoint_connections
SET
properties = '{{ properties }}',
name = '{{ name }}',
id = '{{ id }}'
WHERE
peConnectionName = '{{ peConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified private_link_services_private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure.network.private_link_services_private_endpoint_connections
WHERE peConnectionName = '{{ peConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';