Module Values.DeleteKxUserRequestSource

Deletes a user in the specified kdb environment.

Sourcetype nonrec t = {
  1. userName : KxUserNameString.t;
    (*

    A unique identifier for the user that you want to delete.

    *)
  2. environmentId : IdType.t;
    (*

    A unique identifier for the kdb environment.

    *)
  3. clientToken : ClientToken.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> userName:KxUserNameString.t -> environmentId:IdType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KxUserNameString.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