gravitino.dto.requests.function_update_request.RemoveImplRequest¶
- class gravitino.dto.requests.function_update_request.RemoveImplRequest(parameters: List[FunctionParamDTO], runtime: str)¶
Bases:
FunctionUpdateRequest,DataClassJsonMixinRequest to remove an implementation from a definition.
- __init__(parameters: List[FunctionParamDTO], runtime: str)¶
Methods
__init__(parameters, runtime)from_dict(kvs, *[, infer_missing])from_json(s, *[, parse_float, parse_int, ...])Returns the function change.
schema(*[, infer_missing, only, exclude, ...])to_dict([encode_json])to_json(*[, skipkeys, ensure_ascii, ...])validate()Ensures that a constructed instance of a REST message is valid according to the REST spec.
Attributes
dataclass_json_config- function_change() FunctionChange¶
Returns the function change.
- validate()¶
Ensures that a constructed instance of a REST message is valid according to the REST spec.
This is needed when parsing data that comes from external sources and the object might have been constructed without all the required fields present.
- Raises:
IllegalArgumentException: If the message is not valid.