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
The following fields are returned by SELECT
queries:
- get
- list
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. |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , location | Returns the requested health status of a region. | |
list | select | subscriptionId , resourceGroupName | $filter | Returns 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.
Name | Datatype | Description |
---|---|---|
location | string | Name of the region |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
$filter | string | OData filter parameter. |
SELECT
examples
- get
- list
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
;
Returns the list of all health status for the region.
SELECT
location,
properties,
tags
FROM azure_stack.infrastructure_insights_admin.region_healths
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND $filter = '{{ $filter }}'
;