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

The following fields are returned by SELECT queries:

NameDatatypeDescription
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectThe outbound environment endpoint properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, clusterNameGets the network endpoints of all outbound dependencies of a Kusto cluster

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
clusterNamestringThe name of the Kusto cluster.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
;