Method
updateFeatureGroupPythonFunctionBindings PATCH
Copy PATCH

Updates an existing Feature Group's Python function bindings from a user-provided Python Function. If a list of feature groups are supplied within the Python function bindings, we will provide DataFrames (Pandas in the case of Python) with the materialized feature groups for those input feature groups as arguments to the function.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes featureGroupId str The unique ID associated with the feature group.
Yes pythonFunctionBindings List[PythonFunctionArgument] List of python function arguments.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error

Exceptions:

TYPE WHEN
DataNotFoundError

featureGroupId is not found.

InvalidParameterError

If the feature group is not associated with a Python function.

DataNotFoundError

If the inputs to the feature group are not found.

ConflictError

If the Python function bindings are invalid.

Language: