geo_regions
Creates, updates, deletes, gets or lists a geo_regions
resource.
Overview
Name | geo_regions |
Type | Resource |
Id | azure.app_service.geo_regions |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | GeoRegion resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | sku , linuxWorkersEnabled , xenonWorkersEnabled , linuxDynamicWorkersEnabled | Description for Get a list of available geographical regions. |
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). |
linuxDynamicWorkersEnabled | boolean | Specify true if you want to filter to only regions that support Linux Consumption Workers. |
linuxWorkersEnabled | boolean | Specify true if you want to filter to only regions that support Linux workers. |
sku | string | Name of SKU used to filter the regions. |
xenonWorkersEnabled | boolean | Specify true if you want to filter to only regions that support Xenon workers. |
SELECT
examples
- list
Description for Get a list of available geographical regions.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.geo_regions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND sku = '{{ sku }}'
AND linuxWorkersEnabled = '{{ linuxWorkersEnabled }}'
AND xenonWorkersEnabled = '{{ xenonWorkersEnabled }}'
AND linuxDynamicWorkersEnabled = '{{ linuxDynamicWorkersEnabled }}'
;