Skip to main content

environments_outbound_network_dependencies_endpoints

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

Overview

Nameenvironments_outbound_network_dependencies_endpoints
TypeResource
Idazure.app_service.environments_outbound_network_dependencies_endpoints

Fields

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

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, resourceGroupName, subscriptionIdDescription for Get the network endpoints of all outbound dependencies of an App Service Environment.

SELECT examples

Description for Get the network endpoints of all outbound dependencies of an App Service Environment.

SELECT
category,
endpoints
FROM azure.app_service.environments_outbound_network_dependencies_endpoints
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';