Skip to main content

ase_regions

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

Overview

Namease_regions
TypeResource
Idazure.web.ase_regions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
availableOSarrayAvailable OSs in region.
availableSkuarrayAvailable Skus in region.
dedicatedHostbooleanDedicated host enabled.
displayNamestringDisplay name for region.
kindstringKind of resource.
standardbooleanIs region standard.
typestringResource type.
zoneRedundantbooleanZone redundant deployment enabled.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ase_regionsselectsubscription_idGet a list of available ASE regions and its supported Skus. Description 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
subscription_idstring

SELECT examples

Get a list of available ASE regions and its supported Skus. Description for get a list of available ASE regions and its supported Skus.

SELECT
id,
name,
availableOS,
availableSku,
dedicatedHost,
displayName,
kind,
standard,
type,
zoneRedundant
FROM azure.web.ase_regions
WHERE subscription_id = '{{ subscription_id }}' -- required
;