Module Values.OccurrencesSource

The detected occurrences of sensitive data.

Sourcetype nonrec t = {
  1. lineRanges : Ranges.t option;
    (*

    Occurrences of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.

    *)
  2. offsetRanges : Ranges.t option;
    (*

    Occurrences of sensitive data detected in a binary text file.

    *)
  3. pages : Pages.t option;
    (*

    Occurrences of sensitive data in an Adobe Portable Document Format (PDF) file.

    *)
  4. records : Records.t option;
    (*

    Occurrences of sensitive data in an Apache Avro object container or an Apache Parquet file.

    *)
  5. cells : Cells.t option;
    (*

    Occurrences of sensitive data detected in Microsoft Excel workbooks, comma-separated value (CSV) files, or tab-separated value (TSV) files.

    *)
}
Sourceval make : ?lineRanges:??? -> ?offsetRanges:??? -> ?pages:??? -> ?records:??? -> ?cells:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Long of Long.t | `String of NonEmptyString.t | `Structure of (string * [> `Long of Long.t ]) list ]) list ] list ]) 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