Skip to main content

alerts

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

Overview

Namealerts
TypeResource
Idazure.data_box_edge.alerts

Fields

NameDatatypeDescription
idtextThe path ID that uniquely identifies the object.
nametextThe object name.
alert_typetextfield from the properties object
appeared_at_date_timetextfield from the properties object
detailed_informationtextfield from the properties object
deviceNametextfield from the properties object
error_detailstextfield from the properties object
recommendationtextfield from the properties object
resourceGroupNametextfield from the properties object
severitytextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
titletextfield from the properties object
typetextThe hierarchical type of the object.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeviceName, name, resourceGroupName, subscriptionId
list_by_data_box_edge_deviceSELECTdeviceName, resourceGroupName, subscriptionIdGets all the alerts for a Data Box Edge/Data Box Gateway device.

SELECT examples

Gets all the alerts for a Data Box Edge/Data Box Gateway device.

SELECT
id,
name,
alert_type,
appeared_at_date_time,
detailed_information,
deviceName,
error_details,
recommendation,
resourceGroupName,
severity,
subscriptionId,
system_data,
title,
type
FROM azure.data_box_edge.vw_alerts
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';