Skip to main content

outbound_network_dependencies_endpoints

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

Overview

Nameoutbound_network_dependencies_endpoints
TypeResource
Idazure.api_management.outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
categorystringThe type of service accessed by the Api Management Service, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory.
endpointsarrayThe endpoints that the Api Management Service reaches the service at.

Methods

NameAccessible byRequired ParamsDescription
list_by_serviceSELECTresourceGroupName, serviceName, subscriptionIdGets the network endpoints of all outbound dependencies of a ApiManagement service.

SELECT examples

Gets the network endpoints of all outbound dependencies of a ApiManagement service.

SELECT
category,
endpoints
FROM azure.api_management.outbound_network_dependencies_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';