Module Values_1.UserDefinedFunctionInputSource

A structure used to create or update a user-defined function.

Sourcetype nonrec t = {
  1. functionName : Values_0.NameString.t option;
    (*

    The name of the function.

    *)
  2. className : Values_0.NameString.t option;
    (*

    The Java class that contains the function code.

    *)
  3. ownerName : Values_0.NameString.t option;
    (*

    The owner of the function.

    *)
  4. functionType : FunctionType.t option;
    (*

    The type of the function.

    *)
  5. ownerType : PrincipalType.t option;
    (*

    The owner type.

    *)
  6. resourceUris : ResourceUriList.t option;
    (*

    The resource URIs for the function.

    *)
}
Sourceval make : ?functionName:??? -> ?className:??? -> ?ownerName:??? -> ?functionType:??? -> ?ownerType:??? -> ?resourceUris:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of URI.t ]) list ] list | `String of Values_0.NameString.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