Skip to content

featurebyte.Deployment.list

list(
include_id: Optional[bool]=True,
feature_list_id: Union[ObjectId, str, NoneType]=None
) -> DataFrame

Description

Returns a DataFrame that lists the deployments by their names, feature list names, feature list versions, number of features, and whether the features are enabled.

Parameters

  • include_id: Optional[bool]
    default: True
    Whether to include id in the list.

  • feature_list_id: Union[ObjectId, str, NoneType]
    Filter deployments by feature list ID.

Returns

  • DataFrame
    Table of objects.

Examples

List all deployments.

>>> deployments = fb.Deployment.list()