Skip to main content

clusters_outbound_network_dependencies_endpoints

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

Overview

Nameclusters_outbound_network_dependencies_endpoints
TypeResource
Idazure.data_explorer.clusters_outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectEndpoints accessed for a common purpose that the Kusto Service Environment requires outbound network access to.

Methods

NameAccessible byRequired ParamsDescription
listSELECTclusterName, resourceGroupName, subscriptionIdGets 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 }}';