Module Values.KxDataviewConfigurationSource

The structure that stores the configuration details of a dataview.

Sourcetype nonrec t = {
  1. dataviewName : KxDataviewName.t option;
    (*

    The unique identifier of the dataview.

    *)
  2. dataviewVersionId : VersionId.t option;
    (*

    The version of the dataview corresponding to a given changeset.

    *)
  3. changesetId : ChangesetId.t option;
    (*

    A unique identifier for the changeset.

    *)
  4. segmentConfigurations : KxDataviewSegmentConfigurationList.t option;
    (*

    The db path and volume configuration for the segmented database.

    *)
}
Sourceval make : ?dataviewName:??? -> ?dataviewVersionId:??? -> ?changesetId:??? -> ?segmentConfigurations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of BooleanValue.t | `List of [> `String of DbPath.t ] list | `String of KxVolumeName.t ]) list ] list | `String of KxDataviewName.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