Module Values.CompatibleVersionsMapSource

A map of OpenSearch or Elasticsearch versions and the versions you can upgrade them to.

Sourcetype nonrec t = {
  1. sourceVersion : VersionString.t option;
    (*

    The current version that the OpenSearch Service domain is running.

    *)
  2. targetVersions : VersionList.t option;
    (*

    The possible versions that you can upgrade the domain to.

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