Skip to main content

outbound_network_dependencies_endpoints

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

Overview

Nameoutbound_network_dependencies_endpoints
TypeResource
Idazure.api_management.outbound_network_dependencies_endpoints

Fields

The following fields are returned by SELECT queries:

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_serviceselectsubscriptionId, resourceGroupName, serviceNameGets the network endpoints of all outbound dependencies of a ApiManagement service.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
;