network_connections_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a network_connections_outbound_network_dependencies_endpoints
resource.
Overview
Name | network_connections_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.dev_center.network_connections_outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
category | string | The type of service that the agent connects to. |
endpoints | array | The endpoints for this service for which the agent requires outbound access. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | networkConnectionName, resourceGroupName, subscriptionId | 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
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 }}';