gravitino.client.generic_function.GenericFunction¶
- class gravitino.client.generic_function.GenericFunction(function_dto: FunctionDTO)¶
Bases:
FunctionA generic implementation of the Function interface.
- __init__(function_dto: FunctionDTO)¶
Create a GenericFunction from a FunctionDTO.
- Args:
function_dto: The function DTO.
Methods
__init__(function_dto)Create a GenericFunction from a FunctionDTO.
Returns the audit information.
comment()Returns the optional comment of the function.
Returns the definitions of the function.
Returns whether the function is deterministic.
Returns the function type.
name()Returns the function name.
- comment() str | None¶
Returns the optional comment of the function.
- definitions() List[FunctionDefinition]¶
Returns the definitions of the function.
- deterministic() bool¶
Returns whether the function is deterministic.
- function_type() FunctionType¶
Returns the function type.
- name() str¶
Returns the function name.