Values_0.ComplianceItemSourceInformation about the compliance as defined by the resource type. For example, for a patch resource type, Items includes information about the PatchSeverity, Classification, and so on.
type nonrec t = {complianceType : ComplianceTypeName.t option;The compliance type. For example, Association (for a State Manager association), Patch, or Custom:string are all valid compliance types.
*)resourceType : ComplianceResourceType.t option;The type of resource. ManagedInstance is currently the only supported resource type.
*)resourceId : ComplianceResourceId.t option;An ID for the resource. For a managed node, this is the node ID.
*)id : ComplianceItemId.t option;An ID for the compliance item. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article; for example: KB4010320.
*)title : ComplianceItemTitle.t option;A title for 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.
*)status : ComplianceStatus.t option;The status of the compliance item. An item is either COMPLIANT, NON_COMPLIANT, or an empty string (for Windows patches that aren't applicable).
*)severity : ComplianceSeverity.t option;The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.
*)executionSummary : ComplianceExecutionSummary.t option;A summary for the compliance item. The summary includes an execution ID, the execution type (for example, command), and the execution time. For State Manager associations, the ExecutionTime value represents when the compliance status was captured and aggregated by the Systems Manager service, not necessarily when the underlying association was executed on the managed node. State Manager updates compliance status for all associations on an instance whenever any association executes, which means multiple associations may show the same execution time even if they were executed at different times.
*)details : ComplianceItemDetails.t option;A "Key": "Value" tag combination for the compliance item.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of AttributeName.t ] * [> `String of AttributeValue.t ])
list
| `String of ComplianceTypeName.t
| `Structure of
(string
* [> `String of ComplianceExecutionId.t
| `Timestamp of DateTime.t ])
list ])
list ]