Module Values.SessionSummarySource

Contains summary information about a session.

Sourcetype nonrec t = {
  1. sessionId : SessionId.t option;
    (*

    The session ID.

    *)
  2. description : DescriptionString.t option;
    (*

    The session description.

    *)
  3. engineVersion : EngineVersion.t option;
    (*

    The engine version used by the session (for example, PySpark engine version 3).

    *)
  4. notebookVersion : NameString.t option;
    (*

    The notebook version.

    *)
  5. status : SessionStatus.t option;
    (*

    Contains information about the session status.

    *)
}
Sourceval make : ?sessionId:??? -> ?description:??? -> ?engineVersion:??? -> ?notebookVersion:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SessionId.t | `Structure of (string * [> `Enum of string | `String of NameString.t | `Timestamp of Date.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