Module Values.ConfigurationsSource

Broker configuration information

Sourcetype nonrec t = {
  1. current : ConfigurationId.t option;
    (*

    The broker's current configuration.

    *)
  2. history : ConfigurationId.t list option;
    (*

    The history of configurations applied to the broker.

    *)
  3. pending : ConfigurationId.t option;
    (*

    The broker's pending configuration.

    *)
}
Sourceval make : ?current:??? -> ?history:??? -> ?pending:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `Structure of (string * [> `Integer of int | `String of string ]) 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