Skip to main content

emerging_issues

Creates, updates, deletes, gets or lists an emerging_issues resource.

Overview

Nameemerging_issues
TypeResource
Idazure.resource_health.emerging_issues

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
refreshTimestampstring (date-time)Timestamp for when last time refreshed for ongoing emerging issue.
statusActiveEventsarrayThe list of emerging issues of active event type.
statusBannersarrayThe list of emerging issues of banner type.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectissue_nameGets Azure services' emerging issues.
listselectLists Azure services' emerging issues.

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
issue_namestringThe name of the emerging issue. "default" Required.

SELECT examples

Gets Azure services' emerging issues.

SELECT
id,
name,
refreshTimestamp,
statusActiveEvents,
statusBanners,
systemData,
type
FROM azure.resource_health.emerging_issues
WHERE issue_name = '{{ issue_name }}' -- required
;