Module Values.AdvancedOptionsStatusSource

Status of the advanced options for the specified Elasticsearch domain. Currently, the following advanced options are available: Option to allow references to indices in an HTTP request body. Must be false when configuring access to individual sub-resources. By default, the value is true. See Configuration Advanced Options for more information. Option to specify the percentage of heap space that is allocated to field data. By default, this setting is unbounded. For more information, see Configuring Advanced Options.

Sourcetype nonrec t = {
  1. options : AdvancedOptions.t option;
    (*

    Specifies the status of advanced options for the specified Elasticsearch domain.

    *)
  2. status : OptionStatus.t option;
    (*

    Specifies the status of OptionStatus for advanced options for the specified Elasticsearch domain.

    *)
}
Sourceval make : ?options:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `Timestamp of UpdateTimestamp.t ]) list ]) 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