Module Values.NotebookMetadataSource

Contains metadata for notebook, including the notebook name, ID, workgroup, and time created.

Sourcetype nonrec t = {
  1. notebookId : NotebookId.t option;
    (*

    The notebook ID.

    *)
  2. name : NotebookName.t option;
    (*

    The name of the notebook.

    *)
  3. workGroup : WorkGroupName.t option;
    (*

    The name of the Spark enabled workgroup to which the notebook belongs.

    *)
  4. creationTime : Date.t option;
    (*

    The time when the notebook was created.

    *)
  5. type_ : NotebookType.t option;
    (*

    The type of notebook. Currently, the only valid type is IPYNB.

    *)
  6. lastModifiedTime : Date.t option;
    (*

    The time when the notebook was last modified.

    *)
}
Sourceval make : ?notebookId:??? -> ?name:??? -> ?workGroup:??? -> ?creationTime:??? -> ?type_:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NotebookId.t | `Timestamp of Date.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