Module Values.UpdateKxDataviewRequestSource

Updates the specified dataview. The dataviews get automatically updated when any new changesets are ingested. Each update of the dataview creates a new version, including changeset details and cache configurations

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t;
    (*

    A unique identifier for the kdb environment, where you want to update the dataview.

    *)
  2. databaseName : DatabaseName.t;
    (*

    The name of the database.

    *)
  3. dataviewName : KxDataviewName.t;
    (*

    The name of the dataview that you want to update.

    *)
  4. description : Description.t option;
    (*

    The description for a dataview.

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

    A unique identifier for the changeset.

    *)
  6. 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.

    *)
  7. clientToken : ClientTokenString.t;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?changesetId:??? -> ?segmentConfigurations:??? -> environmentId:EnvironmentId.t -> databaseName:DatabaseName.t -> dataviewName:KxDataviewName.t -> clientToken:ClientTokenString.t -> 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 EnvironmentId.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