Module Values_0.ComplianceItemEntrySource

Information about a compliance item.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. severity : ComplianceSeverity.t;
    (*

    The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.

    *)
  4. status : ComplianceStatus.t;
    (*

    The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.

    *)
  5. details : ComplianceItemDetails.t option;
    (*

    A "Key": "Value" tag combination for the compliance item.

    *)
}
Sourceval context_ : string
Sourceval make : ?id:??? -> ?title:??? -> ?details:??? -> severity:ComplianceSeverity.t -> status:ComplianceStatus.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t