Skip to main content

region_healths

Creates, updates, deletes, gets or lists a region_healths resource.

Overview

Nameregion_healths
TypeResource
Idazure_stack.infrastructure_insights_admin.region_healths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
locationstringThe Azure Region where the resource lives
propertiesobjectContains information related to the health of a region.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, locationReturns the requested health status of a region.
listselectsubscriptionId, resourceGroupName$filterReturns the list of all health status for the region.

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
locationstringName of the region
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringSubscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
$filterstringOData filter parameter.

SELECT examples

Returns the requested health status of a region.

SELECT
location,
properties,
tags
FROM azure_stack.infrastructure_insights_admin.region_healths
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
;