Skip to main content

subscription_deployment_locations

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

Overview

Namesubscription_deployment_locations
TypeResource
Idazure.app_service.subscription_deployment_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
hostingEnvironmentDeploymentInfosarrayAvailable App Service Environments with basic information.
hostingEnvironmentsarrayAvailable App Service Environments with full descriptions of the environments.
locationsarrayAvailable regions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionIdDescription 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.

NameDatatypeDescription
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

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
;