Skip to main content

ase_regions

Creates, updates, deletes, gets or lists an ase_regions resource.

Overview

Namease_regions
TypeResource
Idazure.app_service.ase_regions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectASE region resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdDescription for get a list of available ASE regions and its supported Skus.

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 get a list of available ASE regions and its supported Skus.

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.ase_regions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;