Skip to main content

network_connections_outbound_network_dependencies_endpoints

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

Overview

Namenetwork_connections_outbound_network_dependencies_endpoints
TypeResource
Idazure.dev_center.network_connections_outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
categorystringThe type of service that the agent connects to.
endpointsarrayThe endpoints for this service for which the agent requires outbound access.

Methods

NameAccessible byRequired ParamsDescription
listSELECTnetworkConnectionName, resourceGroupName, subscriptionIdLists the endpoints that agents may call as part of Dev Box service administration. These FQDNs should be allowed for outbound access in order for the Dev Box service to function.

SELECT examples

Lists the endpoints that agents may call as part of Dev Box service administration. These FQDNs should be allowed for outbound access in order for the Dev Box service to function.

SELECT
category,
endpoints
FROM azure.dev_center.network_connections_outbound_network_dependencies_endpoints
WHERE networkConnectionName = '{{ networkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';