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.
REQUIRED | KEY | TYPE | DESCRIPTION |
---|---|---|---|
Yes | featureGroupId | str | The unique ID associated with the feature group. |
Yes | pythonFunctionBindings | List[PythonFunctionArgument] | List of python function arguments. |
KEY | TYPE | DESCRIPTION |
---|---|---|
success | Boolean | true if the call succeeded, false if there was an error |
TYPE | WHEN |
---|---|
DataNotFoundError |
|
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. |