Module Values.SearchScopeSummarySource

The summary of the specified search job scope, including: TotalBackupsToScanCount, the number of recovery points returned by the search. TotalItemsToScanCount, the number of items returned by the search.

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

    This is the count of the total number of backups that will be scanned in a search.

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

    This is the count of the total number of items that will be scanned in a search.

    *)
}
Sourceval make : ?totalRecoveryPointsToScanCount:??? -> ?totalItemsToScanCount:??? -> 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