Module Values.UpdateNamedQueryInputSource

Updates a NamedQuery object. The database or workgroup cannot be updated.

Sourcetype nonrec t = {
  1. namedQueryId : NamedQueryId.t;
    (*

    The unique identifier (UUID) of the query.

    *)
  2. name : NameString.t;
    (*

    The name of the query.

    *)
  3. description : NamedQueryDescriptionString.t option;
    (*

    The query description.

    *)
  4. queryString : QueryString.t;
    (*

    The contents of the query with all query statements.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> namedQueryId:NamedQueryId.t -> name:NameString.t -> queryString:QueryString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NamedQueryId.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