alerts
Creates, updates, deletes, gets or lists a alerts
resource.
Overview
Name | alerts |
Type | Resource |
Id | azure.data_box_edge.alerts |
Fields
- vw_alerts
- alerts
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The object name. |
alert_type | text | field from the properties object |
appeared_at_date_time | text | field from the properties object |
detailed_information | text | field from the properties object |
deviceName | text | field from the properties object |
error_details | text | field from the properties object |
recommendation | text | field from the properties object |
resourceGroupName | text | field from the properties object |
severity | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
title | text | field from the properties object |
type | text | The hierarchical type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The object name. |
properties | object | Properties of alert. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, name, resourceGroupName, subscriptionId | |
list_by_data_box_edge_device | SELECT | deviceName, resourceGroupName, subscriptionId | Gets 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.
- vw_alerts
- alerts
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_box_edge.alerts
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';