Values_0.ComplianceItemEntrySourceInformation about a compliance item.
type nonrec t = {id : ComplianceItemId.t option;The compliance item ID. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article.
*)title : ComplianceItemTitle.t option;The title of the compliance item. For example, if the compliance item is a Windows patch, the title could be the title of the KB article for the patch; for example: Security Update for Active Directory Federation Services.
*)severity : ComplianceSeverity.t;The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.
*)status : ComplianceStatus.t;The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
*)details : ComplianceItemDetails.t option;A "Key": "Value" tag combination for the compliance item.
*)}val make :
?id:??? ->
?title:??? ->
?details:??? ->
severity:ComplianceSeverity.t ->
status:ComplianceStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of AttributeName.t ] * [> `String of AttributeValue.t ])
list
| `String of ComplianceItemId.t ])
list ]