Method
suggestFeatureGroupTemplateForFeatureGroup GET
Copy GET

Suggest values for a feature gruop template, based on a feature group.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes featureGroupId str Unique identifier associated with the feature group to use for suggesting values to use in the template.
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
result FeatureGroupTemplate
KEY TYPE Description
featureGroupTemplateId str The unique identifier for this feature group template.
description str A user-friendly text description of this feature group template.
featureGroupId str The unique identifier for the feature group used to create this template.
isSystemTemplate bool True if this is a system template returned from a user organization.
name str The user-friendly name of this feature group template.
templateSql str SQL that can include variables which will be replaced by values from the template config to resolve this template SQL into a valid SQL query for a feature group.
templateVariables dict A map, from template variable names to parameters for replacing those template variables with values (e.g. to values and metadata on how to resolve those values).
createdAt str When the feature group template was created.
updatedAt str When the feature group template was updated.

Exceptions:

TYPE WHEN
DataNotFoundError

featureGroupId is not found.

Language: