outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a outbound_network_dependencies_endpoints
resource.
Overview
Name | outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure_isv.databricks.outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
category | string | The category of endpoints accessed by the Workspace, e.g. azure-storage, azure-mysql, etc. |
endpoints | array | The endpoints that Workspace connect to |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, workspaceName | 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
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 }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';