services_alert_feedbacks
Creates, updates, deletes, gets or lists a services_alert_feedbacks
resource.
Overview
Name | services_alert_feedbacks |
Type | Resource |
Id | azure.ad_hybrid_health_service.services_alert_feedbacks |
Fields
Name | Datatype | Description |
---|---|---|
comment | string | Additional comments related to the alert. |
consentedToShare | boolean | Indicates if the alert feedback can be shared from product team. |
createdDate | string | The date and time,in UTC,when the alert was created. |
feedback | string | The feedback for the alert which indicates if the customer likes or dislikes the alert. |
level | string | The alert level which indicates the severity of the alert. |
serviceMemberId | string | The server Id of the alert. |
shortName | string | The alert short name. |
state | string | The alert state which can be either active or resolved with multiple resolution types. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | serviceName, shortName | Gets 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 }}';