Module Values.DeleteKxDataviewRequestSource

Deletes the specified dataview. Before deleting a dataview, make sure that it is not in use by any cluster.

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

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

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

    The name of the database whose dataview you want to delete.

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

    The name of the dataview that you want to delete.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : environmentId:EnvironmentId.t -> databaseName:DatabaseName.t -> dataviewName:KxDataviewName.t -> clientToken:ClientTokenString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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