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

NameDatatypeDescription
commentstringAdditional comments related to the alert.
consentedToSharebooleanIndicates if the alert feedback can be shared from product team.
createdDatestringThe 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

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

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 }}'
AND shortName = '{{ shortName }}';