subscription_deployment_locations
Creates, updates, deletes, gets or lists a subscription_deployment_locations
resource.
Overview
Name | subscription_deployment_locations |
Type | Resource |
Id | azure.app_service.subscription_deployment_locations |
Fields
The following fields are returned by SELECT
queries:
- get
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 | select | subscriptionId | 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 |
---|---|---|
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- get
Description for Gets list of available geo regions plus ministamps
SELECT
hostingEnvironmentDeploymentInfos,
hostingEnvironments,
locations
FROM azure.app_service.subscription_deployment_locations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;