Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure_isv.databricks.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

OK - Returns the private endpoint connection properties of a workspace

NameDatatypeDescription
idstringThe resource identifier.
namestringThe resource name.
propertiesobjectThe private endpoint connection properties.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, workspaceName, subscriptionId, privateEndpointConnectionNameGet a private endpoint connection properties for a workspace
listselectresourceGroupName, workspaceName, subscriptionIdList private endpoint connections of the workspace
createinsertresourceGroupName, workspaceName, subscriptionId, privateEndpointConnectionName, data__propertiesUpdate the status of a private endpoint connection with the specified name
deletedeleteresourceGroupName, workspaceName, subscriptionId, privateEndpointConnectionNameRemove private endpoint connection with the specified name

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
privateEndpointConnectionNamestringThe name of the private endpoint connection
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
workspaceNamestringThe name of the workspace.

SELECT examples

Get a private endpoint connection properties for a workspace

SELECT
id,
name,
properties,
type
FROM azure_isv.databricks.private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

Update the status of a private endpoint connection with the specified name

INSERT INTO azure_isv.databricks.private_endpoint_connections (
data__properties,
resourceGroupName,
workspaceName,
subscriptionId,
privateEndpointConnectionName
)
SELECT
'{{ properties }}' /* required */,
'{{ resourceGroupName }}',
'{{ workspaceName }}',
'{{ subscriptionId }}',
'{{ privateEndpointConnectionName }}'
RETURNING
id,
name,
properties,
type
;

DELETE examples

Remove private endpoint connection with the specified name

DELETE FROM azure_isv.databricks.private_endpoint_connections
WHERE resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;