extended_zones
Creates, updates, deletes, gets or lists a extended_zones
resource.
Overview
Name | extended_zones |
Type | Resource |
Id | azure.edge_zones.extended_zones |
Fields
- vw_extended_zones
- extended_zones
Name | Datatype | Description |
---|---|---|
display_name | text | field from the properties object |
extendedZoneName | text | field from the properties object |
geography | text | field from the properties object |
geography_group | text | field from the properties object |
home_location | text | field from the properties object |
latitude | text | field from the properties object |
longitude | text | field from the properties object |
provisioning_state | text | field from the properties object |
region_category | text | field from the properties object |
region_type | text | field from the properties object |
regional_display_name | text | field from the properties object |
registration_state | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of an Extended Zone resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | extendedZoneName, subscriptionId | Gets an Azure Extended Zone for a subscription |
list_by_subscription | SELECT | subscriptionId | Lists the Azure Extended Zones available to a subscription |
register | EXEC | extendedZoneName, subscriptionId | Registers a subscription for an Extended Zone |
unregister | EXEC | extendedZoneName, subscriptionId | Unregisters a subscription for an Extended Zone |
SELECT
examples
Lists the Azure Extended Zones available to a subscription
- vw_extended_zones
- extended_zones
SELECT
display_name,
extendedZoneName,
geography,
geography_group,
home_location,
latitude,
longitude,
provisioning_state,
region_category,
region_type,
regional_display_name,
registration_state,
subscriptionId
FROM azure.edge_zones.vw_extended_zones
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.edge_zones.extended_zones
WHERE subscriptionId = '{{ subscriptionId }}';