Skip to main content

account_outbound_network_dependencies_endpoints

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

Overview

Nameaccount_outbound_network_dependencies_endpoints
TypeResource
Idazure.batch.account_outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
categorystringThe type of service that the Batch service connects to.
endpointsarrayThe endpoints for this service to which the Batch service makes outbound calls.

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, resourceGroupName, subscriptionIdLists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.

SELECT examples

Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch service administration. If you are deploying a Pool inside of a virtual network that you specify, you must make sure your network allows outbound access to these endpoints. Failure to allow access to these endpoints may cause Batch to mark the affected nodes as unusable. For more information about creating a pool inside of a virtual network, see https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network.

SELECT
category,
endpoints
FROM azure.batch.account_outbound_network_dependencies_endpoints
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';