Values.ServiceSoftwareOptionsSourceThe current options of an Elasticsearch domain service software options.
type nonrec t = {currentVersion : String_.t option;The current service software version that is present on the domain.
*)newVersion : String_.t option;The new service software version if one is available.
*)updateAvailable : Boolean.t option;True if you are able to update you service software version. False if you are not able to update your service software version.
*)cancellable : Boolean.t option;True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.
*)updateStatus : DeploymentStatus.t option;The status of your service software update. This field can take the following values: ELIGIBLE, PENDING_UPDATE, IN_PROGRESS, COMPLETED, and NOT_ELIGIBLE.
*)description : String_.t option;The description of the UpdateStatus.
*)automatedUpdateDate : DeploymentCloseDateTimeStamp.t option;Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.
*)optionalDeployment : Boolean.t option;True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of String_.t
| `Timestamp of DeploymentCloseDateTimeStamp.t ])
list ]