private_endpoint_connections
Creates, updates, deletes, gets or lists a private_endpoint_connections
resource.
Overview
Name | private_endpoint_connections |
Type | Resource |
Id | azure.healthdataaiservices.private_endpoint_connections |
Fields
- vw_private_endpoint_connections
- private_endpoint_connections
Name | Datatype | Description |
---|---|---|
deidServiceName | text | field from the properties object |
group_ids | 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 | Properties of the private endpoint connection. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Get a specific private connection |
list_by_deid_service | SELECT | deidServiceName, resourceGroupName, subscriptionId | List private endpoint connections on the given resource |
create | INSERT | deidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Create a Private endpoint connection |
delete | DELETE | deidServiceName, privateEndpointConnectionName, resourceGroupName, subscriptionId | Delete the private endpoint connection |
SELECT
examples
List private endpoint connections on the given resource
- vw_private_endpoint_connections
- private_endpoint_connections
SELECT
deidServiceName,
group_ids,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId
FROM azure.healthdataaiservices.vw_private_endpoint_connections
WHERE deidServiceName = '{{ deidServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.healthdataaiservices.private_endpoint_connections
WHERE deidServiceName = '{{ deidServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new private_endpoint_connections
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.healthdataaiservices.private_endpoint_connections (
deidServiceName,
privateEndpointConnectionName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ deidServiceName }}',
'{{ privateEndpointConnectionName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: groupIds
value:
- string
- name: privateEndpoint
value:
- name: id
value: string
- name: privateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
- name: provisioningState
value: []
DELETE
example
Deletes the specified private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure.healthdataaiservices.private_endpoint_connections
WHERE deidServiceName = '{{ deidServiceName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';