Module Values.GdgAttributesSource

The required attributes for a generation data group data set. A generation data set is one of a collection of successive, historically related, catalogued data sets that together are known as a generation data group (GDG). Use this structure when you want to import a GDG. For more information on GDG, see Generation data sets.

Sourcetype nonrec t = {
  1. limit : Integer.t option;
    (*

    The maximum number of generation data sets, up to 255, in a GDG.

    *)
  2. rollDisposition : String_.t option;
    (*

    The disposition of the data set in the catalog.

    *)
}
Sourceval make : ?limit:??? -> ?rollDisposition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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