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 | resource_group_name, service_name, subscription_id | 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 |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
service_name | string | The name of the API Management service. Required. |
subscription_id | string |
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 resource_group_name = '{{ resource_group_name }}' -- required
AND service_name = '{{ service_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;