Skip to main content

disk_pools_outbound_network_dependencies_endpoints

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

Overview

Namedisk_pools_outbound_network_dependencies_endpoints
TypeResource
Idazure.storage_pool.disk_pools_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
listSELECTdiskPoolName, resourceGroupName, subscriptionIdGets the network endpoints of all outbound dependencies of a Disk Pool

SELECT examples

Gets the network endpoints of all outbound dependencies of a Disk Pool

SELECT
category,
endpoints
FROM azure.storage_pool.disk_pools_outbound_network_dependencies_endpoints
WHERE diskPoolName = '{{ diskPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';