managed_clusters_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a managed_clusters_outbound_network_dependencies_endpoints resource.
Overview
| Name | managed_clusters_outbound_network_dependencies_endpoints |
| Type | Resource |
| Id | azure.aks.managed_clusters_outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
category | string | The category of endpoints accessed by the AKS agent node, e.g. azure-resource-management, apiserver, etc. |
endpoints | array | The endpoints that AKS agent nodes connect to |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, resourceName | 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. |
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 |
|---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the managed cluster resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
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
;