Module Values_2.UserDefinedFunctionSource

Represents the equivalent of a Hive user-defined function (UDF) definition.

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

    The name of the function.

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

    The name of the catalog database that contains the function.

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

    The Java class that contains the function code.

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

    The owner of the function.

    *)
  5. functionType : Values_1.FunctionType.t option;
    (*

    The type of the function.

    *)
  6. ownerType : Values_1.PrincipalType.t option;
    (*

    The owner type.

    *)
  7. createTime : Values_0.Timestamp.t option;
    (*

    The time at which the function was created.

    *)
  8. resourceUris : Values_1.ResourceUriList.t option;
    (*

    The resource URIs for the function.

    *)
  9. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog in which the function resides.

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