Module Values.NodeOptionSource

Configuration settings for defining the node type within a cluster.

Sourcetype nonrec t = {
  1. nodeType : NodeOptionsNodeType.t option;
    (*

    Defines the type of node, such as coordinating nodes.

    *)
  2. nodeConfig : NodeConfig.t option;
    (*

    Configuration options for defining the setup of any node type.

    *)
}
Sourceval make : ?nodeType:??? -> ?nodeConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.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