Module Values.SystemVersionSummarySource

Information about the compatible system versions that can be used with a specific Exadata shape and Grid Infrastructure (GI) version.

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

    The version of GI software.

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

    The Exadata hardware model.

    *)
  3. systemVersions : StringList.t option;
    (*

    The Exadata system versions that are compatible with the specified Exadata shape and GI version.

    *)
}
Sourceval make : ?giVersion:??? -> ?shape:??? -> ?systemVersions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `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