Skip to contents

Updates information for a specified user-defined function on TileDB Cloud. Please provide all parameters to be set, not only the ones that need changing.

Usage

update_udf_info(
  namespace,
  name,
  type,
  func = NULL,
  func_text = NULL,
  version = NULL,
  image_name = NULL,
  readme = NULL,
  license_id = NULL,
  license_text = NULL,
  tags = NULL
)

Arguments

namespace

Namespace for the UDF to be stored in, e.g. mynamespace. If omitted, defaults to username.

name

character Name for the function to be stored under in TileDB Cloud, e.g. myudfname.

type

character One of generic, single_array, or multi_array.

func

An R function which takes a dataframe as first argument.

version

character Optional version string.

image_name

character

readme

README text to be displayed in the TileDB Cloud UI.

license_id

character See the TileDB Cloud UI for options.

license_text

character See the TileDB Cloud UI for options.

tags

list(character) Tags to apply to the UDF.

exec_raw

character Text to display in the TileDB Cloud UI's Preview tab. If omitted, a full deparse of func is used. You can set this to something shorter for brevity if you like.

Value

No return value.