disk_pools_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a disk_pools_outbound_network_dependencies_endpoints
resource.
Overview
Name | disk_pools_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.storage_pool.disk_pools_outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
category | string | The type of service accessed by the App Service Environment, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory. |
endpoints | array | The endpoints that the App Service Environment reaches the service at. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , diskPoolName | Gets 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.
Name | Datatype | Description |
---|---|---|
diskPoolName | string | The name of the Disk Pool. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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
;