ase_regions
Creates, updates, deletes, gets or lists an ase_regions resource.
Overview
| Name | ase_regions |
| Type | Resource |
| Id | azure.web.ase_regions |
Fields
The following fields are returned by SELECT queries:
- list_ase_regions
| Name | Datatype | Description |
|---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
availableOS | array | Available OSs in region. |
availableSku | array | Available Skus in region. |
dedicatedHost | boolean | Dedicated host enabled. |
displayName | string | Display name for region. |
kind | string | Kind of resource. |
standard | boolean | Is region standard. |
type | string | Resource type. |
zoneRedundant | boolean | Zone redundant deployment enabled. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_ase_regions | select | subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list_ase_regions
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
;