clusters_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a clusters_outbound_network_dependencies_endpoints
resource.
Overview
Name | clusters_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.data_explorer.clusters_outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Endpoints accessed for a common purpose that the Kusto Service Environment requires outbound network access to. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | clusterName, resourceGroupName, subscriptionId | Gets the network endpoints of all outbound dependencies of a Kusto cluster |
SELECT
examples
Gets the network endpoints of all outbound dependencies of a Kusto cluster
SELECT
etag,
properties
FROM azure.data_explorer.clusters_outbound_network_dependencies_endpoints
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';