Skip to main content

managed_clusters_outbound_network_dependencies_endpoints

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

Overview

Namemanaged_clusters_outbound_network_dependencies_endpoints
TypeResource
Idazure.aks.managed_clusters_outbound_network_dependencies_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
categorystringThe category of endpoints accessed by the AKS agent node, e.g. azure-resource-management, apiserver, etc.
endpointsarrayThe endpoints that AKS agent nodes connect to

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, resourceNameGets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed cluster. The operation returns properties of each egress endpoint.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the managed cluster resource.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed cluster. The operation returns properties of each egress endpoint.

SELECT
category,
endpoints
FROM azure.aks.managed_clusters_outbound_network_dependencies_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;