outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists an outbound_network_dependencies_endpoints resource.
Overview
| Name | outbound_network_dependencies_endpoints |
| Type | Resource |
| Id | azure.api_management.outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT queries:
- list_by_service
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_service | select | subscriptionId, resourceGroupName, serviceName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
serviceName | string | The name of the API Management service. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list_by_service
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
;