outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists an outbound_network_dependencies_endpoints resource.
Overview
| Name | outbound_network_dependencies_endpoints |
| Type | Resource |
| Id | azure_isv.databricks.outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT queries:
- list
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, workspace_name, subscription_id | Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified Workspace. 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 _. |
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.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The name of the workspace. Required. |
SELECT examples
- list
Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified Workspace. 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 resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;