Module Values.DataSetSource

Defines a data set.

Sourcetype nonrec t = {
  1. datasetName : String_.t;
    (*

    The logical identifier for a specific data set (in mainframe format).

    *)
  2. datasetOrg : DatasetOrgAttributes.t;
    (*

    The type of dataset. The only supported value is VSAM.

    *)
  3. recordLength : RecordLength.t;
    (*

    The length of a record.

    *)
  4. relativePath : String_.t option;
    (*

    The relative location of the data set in the database or file system.

    *)
  5. storageType : String_.t option;
    (*

    The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.

    *)
}
Sourceval context_ : string
Sourceval make : ?relativePath:??? -> ?storageType:??? -> datasetName:String_.t -> datasetOrg:DatasetOrgAttributes.t -> recordLength:RecordLength.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of String20.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]) list ]) 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