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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | The outbound environment endpoint properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , clusterName | Gets 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.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the Kusto cluster. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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
;