Module Values.GetDataSourceInputSource

Returns a DataSource that includes metadata and data file information, as well as the current status of the DataSource. GetDataSource provides results in normal or verbose format. The verbose format adds the schema description and the list of files pointed to by the DataSource to the normal format.

Sourcetype nonrec t = {
  1. dataSourceId : EntityId.t;
    (*

    The ID assigned to the DataSource at creation.

    *)
  2. verbose : Verbose.t option;
    (*

    Specifies whether the GetDataSource operation should return DataSourceSchema. If true, DataSourceSchema is returned. If false, DataSourceSchema is not returned.

    *)
}
Sourceval context_ : string
Sourceval make : ?verbose:??? -> dataSourceId:EntityId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Verbose.t | `String of EntityId.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