Module Values_0.JdbcTargetSource

Specifies a JDBC data store to crawl.

Sourcetype nonrec t = {
  1. connectionName : ConnectionName.t option;
    (*

    The name of the connection to use to connect to the JDBC target.

    *)
  2. path : Path.t option;
    (*

    The path of the JDBC target.

    *)
  3. exclusions : PathList.t option;
    (*

    A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

    *)
  4. enableAdditionalMetadata : EnableAdditionalMetadata.t option;
    (*

    Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database. If you do not need additional metadata, keep the field empty.

    *)
}
Sourceval make : ?connectionName:??? -> ?path:??? -> ?exclusions:??? -> ?enableAdditionalMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of Path.t ] list | `String of ConnectionName.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