Module Values.DatabaseSource

Contains metadata information for a database in a data catalog.

Sourcetype nonrec t = {
  1. name : NameString.t option;
    (*

    The name of the database.

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

    An optional description of the database.

    *)
  3. parameters : ParametersMap.t option;
    (*

    A set of custom key/value pairs.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.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