Skip to main content

outbound_network_dependencies_endpoints

Creates, updates, deletes, gets or lists an outbound_network_dependencies_endpoints resource.

Overview

Nameoutbound_network_dependencies_endpoints
TypeResource
Idazure_isv.databricks.outbound_network_dependencies_endpoints

Fields

The following fields are returned by SELECT queries:

The response contains list of outbound network dependency endpoints

NameDatatypeDescription
categorystringThe category of endpoints accessed by the Workspace, e.g. azure-storage, azure-mysql, etc.
endpointsarrayThe endpoints that Workspace connect to

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, workspaceName, subscriptionIdGets the list of endpoints that VNET Injected Workspace calls Azure Databricks Control Plane. You must configure outbound access with these endpoints. For more information, see https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/udr

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
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

Gets the list of endpoints that VNET Injected Workspace calls Azure Databricks Control Plane. You must configure outbound access with these endpoints. For more information, see https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/udr

SELECT
category,
endpoints
FROM azure_isv.databricks.outbound_network_dependencies_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;