region_healths
Creates, updates, deletes, gets or lists a region_healths
resource.
Overview
Name | region_healths |
Type | Resource |
Id | azure_stack.infrastructure_insights_admin.region_healths |
Fields
- vw_region_healths
- region_healths
Name | Datatype | Description |
---|---|---|
alert_summary | text | field from the properties object |
location | text | The Azure Region where the resource lives |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
usage_metrics | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The Azure Region where the resource lives |
properties | object | Contains information related to the health of a region. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, subscriptionId | Returns the requested health status of a region. |
list | SELECT | resourceGroupName, subscriptionId | Returns the list of all health status for the region. |
SELECT
examples
Returns the list of all health status for the region.
- vw_region_healths
- region_healths
SELECT
alert_summary,
location,
resourceGroupName,
subscriptionId,
tags,
usage_metrics
FROM azure_stack.infrastructure_insights_admin.vw_region_healths
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure_stack.infrastructure_insights_admin.region_healths
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';