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
The following fields are returned by SELECT queries:
- list
The list of alert feedback.
| 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 (date-time) | 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | serviceName, shortName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
serviceName | string | The name of the service. |
shortName | string | The name of the alert. |
SELECT examples
- list
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
;