Skip to main content

services_alert_feedbacks

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

Overview

Nameservices_alert_feedbacks
TypeResource
Idazure.ad_hybrid_health_service.services_alert_feedbacks

Fields

The following fields are returned by SELECT queries:

The list of alert feedback.

NameDatatypeDescription
commentstringAdditional comments related to the alert.
consentedToSharebooleanIndicates if the alert feedback can be shared from product team.
createdDatestring (date-time)The date and time,in UTC,when the alert was created.
feedbackstringThe feedback for the alert which indicates if the customer likes or dislikes the alert.
levelstringThe alert level which indicates the severity of the alert.
serviceMemberIdstringThe server Id of the alert.
shortNamestringThe alert short name.
statestringThe alert state which can be either active or resolved with multiple resolution types.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, shortNameGets a list of all alert feedback for a given tenant and alert type.

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
serviceNamestringThe name of the service.
shortNamestringThe name of the alert.

SELECT examples

Gets a list of all alert feedback for a given tenant and alert type.

SELECT
comment,
consentedToShare,
createdDate,
feedback,
level,
serviceMemberId,
shortName,
state
FROM azure.ad_hybrid_health_service.services_alert_feedbacks
WHERE serviceName = '{{ serviceName }}' -- required
AND shortName = '{{ shortName }}' -- required
;