workspace_private_endpoint_connections
Creates, updates, deletes, gets or lists a workspace_private_endpoint_connections
resource.
Overview
Name | workspace_private_endpoint_connections |
Type | Resource |
Id | azure_extras.healthcare.workspace_private_endpoint_connections |
Fields
- vw_workspace_private_endpoint_connections
- workspace_private_endpoint_connections
Name | Datatype | Description |
---|---|---|
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 |
system_data | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of the PrivateEndpointConnectProperties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Gets the specified private endpoint connection associated with the workspace. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | Lists all private endpoint connections for a workspace. |
create_or_update | INSERT | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Update the state of the specified private endpoint connection associated with the workspace. |
delete | DELETE | privateEndpointConnectionName, resourceGroupName, subscriptionId, workspaceName | Deletes a private endpoint connection. |
SELECT
examples
Lists all private endpoint connections for a workspace.
- vw_workspace_private_endpoint_connections
- workspace_private_endpoint_connections
SELECT
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
system_data,
workspaceName
FROM azure_extras.healthcare.vw_workspace_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
properties,
systemData
FROM azure_extras.healthcare.workspace_private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new workspace_private_endpoint_connections
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.healthcare.workspace_private_endpoint_connections (
privateEndpointConnectionName,
resourceGroupName,
subscriptionId,
workspaceName,
systemData,
properties
)
SELECT
'{{ privateEndpointConnectionName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ systemData }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
- name: properties
value:
- 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 workspace_private_endpoint_connections
resource.
/*+ delete */
DELETE FROM azure_extras.healthcare.workspace_private_endpoint_connections
WHERE privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';