Module Values.CompatibilitySource

Compatibility information.

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

    The supported Kubernetes version of the cluster.

    *)
  2. platformVersions : StringList.t option;
    (*

    The supported compute platform.

    *)
  3. defaultVersion : Boolean.t option;
    (*

    The supported default version.

    *)
}
Sourceval make : ?clusterVersion:??? -> ?platformVersions:??? -> ?defaultVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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