Module Values.KxDataviewActiveVersionSource

The active version of the dataview that is currently in use by this cluster.

Sourcetype nonrec t = {
  1. changesetId : ChangesetId.t option;
    (*

    A unique identifier for the changeset.

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

    The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.

    *)
  3. attachedClusters : AttachedClusterList.t option;
    (*

    The list of clusters that are currently using this dataview.

    *)
  4. createdTimestamp : Timestamp.t option;
    (*

    The timestamp at which the dataview version was active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  5. versionId : VersionId.t option;
    (*

    A unique identifier of the active version.

    *)
}
Sourceval make : ?changesetId:??? -> ?segmentConfigurations:??? -> ?attachedClusters:??? -> ?createdTimestamp:??? -> ?versionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of KxClusterName.t | `Structure of (string * [> `Boolean of BooleanValue.t | `List of [> `String of DbPath.t ] list | `String of KxVolumeName.t ]) list ] list | `String of ChangesetId.t | `Timestamp of Timestamp.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