service_healths
Creates, updates, deletes, gets or lists a service_healths
resource.
Overview
Name | service_healths |
Type | Resource |
Id | azure_stack.infrastructure_insights_admin.service_healths |
Fields
- vw_service_healths
- service_healths
Name | Datatype | Description |
---|---|---|
alert_summary | text | field from the properties object |
display_name | text | field from the properties object |
health_state | text | field from the properties object |
infra_uri | text | field from the properties object |
location | text | The Azure Region where the resource lives |
namespace | text | field from the properties object |
registration_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
route_prefix | text | field from the properties object |
serviceHealth | text | field from the properties object |
service_location | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
location | string | The Azure Region where the resource lives |
properties | object | Holds information about the health of a service. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, serviceHealth, subscriptionId | Returns the requested service health object. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns the list of all resource provider health states. |
SELECT
examples
Returns the list of all resource provider health states.
- vw_service_healths
- service_healths
SELECT
alert_summary,
display_name,
health_state,
infra_uri,
location,
namespace,
registration_id,
resourceGroupName,
route_prefix,
serviceHealth,
service_location,
subscriptionId,
tags
FROM azure_stack.infrastructure_insights_admin.vw_service_healths
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure_stack.infrastructure_insights_admin.service_healths
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';