subscription_deployment_locations
Creates, updates, deletes, gets or lists a subscription_deployment_locations resource.
Overview
| Name | subscription_deployment_locations |
| Type | Resource |
| Id | azure.web.subscription_deployment_locations |
Fields
The following fields are returned by SELECT queries:
- get_subscription_deployment_locations
| Name | Datatype | Description |
|---|---|---|
hostingEnvironmentDeploymentInfos | array | Available App Service Environments with basic information. |
hostingEnvironments | array | Available App Service Environments with full descriptions of the environments. |
locations | array | Available regions. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_subscription_deployment_locations | select | subscription_id | Gets list of available geo regions plus ministamps. Description for Gets list of available geo regions plus ministamps. |
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 |
|---|---|---|
subscription_id | string |
SELECT examples
- get_subscription_deployment_locations
Gets list of available geo regions plus ministamps. Description for Gets list of available geo regions plus ministamps.
SELECT
hostingEnvironmentDeploymentInfos,
hostingEnvironments,
locations
FROM azure.web.subscription_deployment_locations
WHERE subscription_id = '{{ subscription_id }}' -- required
;