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

The following fields are returned by SELECT queries:

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, diskPoolNameGets the network endpoints of all outbound dependencies of a Disk Pool

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.

NameDatatypeDescription
diskPoolNamestringThe name of the Disk Pool.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND diskPoolName = '{{ diskPoolName }}' -- required
;