Module Values.JobLogSource

Job log.

Sourcetype nonrec t = {
  1. logDateTime : ISO8601DatetimeString.t option;
    (*

    Job log event date and time.

    *)
  2. event : JobLogEvent.t option;
    (*

    Job log event.

    *)
  3. eventData : JobLogEventData.t option;
    (*

    Job event data

    *)
}
Sourceval make : ?logDateTime:??? -> ?event:??? -> ?eventData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ISO8601DatetimeString.t | `Structure of (string * [> `Integer of StrictlyPositiveInteger.t | `String of SourceServerID.t ]) 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