Module Values.CompatibleVersionsMapSource

A map from an ElasticsearchVersion to a list of compatible ElasticsearchVersion s to which the domain can be upgraded.

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

    The current version of Elasticsearch on which a domain is.

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