Module Values.CurrentSearchProgressSource

This contains information results retrieved from a search job that may not have completed.

Sourcetype nonrec t = {
  1. recoveryPointsScannedCount : Integer.t option;
    (*

    This number is the sum of all backups that have been scanned so far during a search job.

    *)
  2. itemsScannedCount : Long.t option;
    (*

    This number is the sum of all items that have been scanned so far during a search job.

    *)
  3. itemsMatchedCount : Long.t option;
    (*

    This number is the sum of all items that match the item filters in a search job in progress.

    *)
}
Sourceval make : ?recoveryPointsScannedCount:??? -> ?itemsScannedCount:??? -> ?itemsMatchedCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.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