outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a outbound_network_dependencies_endpoints
resource.
Overview
Name | outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.api_management.outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
category | string | The type of service accessed by the Api Management Service, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory. |
endpoints | array | The endpoints that the Api Management Service reaches the service at. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_service | SELECT | resourceGroupName, serviceName, subscriptionId | Gets 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 }}';