Module Values_0.SeveritySummarySource

The number of managed nodes found for each patch severity level defined in the request filter.

Sourcetype nonrec t = {
  1. criticalCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of Critical. Critical severity is determined by the organization that published the compliance items.

    *)
  2. highCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of high. High severity is determined by the organization that published the compliance items.

    *)
  3. mediumCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of medium. Medium severity is determined by the organization that published the compliance items.

    *)
  4. lowCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of low. Low severity is determined by the organization that published the compliance items.

    *)
  5. informationalCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of informational. Informational severity is determined by the organization that published the compliance items.

    *)
  6. unspecifiedCount : ComplianceSummaryCount.t option;
    (*

    The total number of resources or compliance items that have a severity level of unspecified. Unspecified severity is determined by the organization that published the compliance items.

    *)
}
Sourceval make : ?criticalCount:??? -> ?highCount:??? -> ?mediumCount:??? -> ?lowCount:??? -> ?informationalCount:??? -> ?unspecifiedCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ComplianceSummaryCount.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