MCPcopy Create free account
hub / github.com/feast-dev/feast / _list_data_sources

Method _list_data_sources

sdk/python/feast/infra/registry/sql.py:658–669  ·  view source on GitHub ↗
(
        self, project: str, tags: Optional[dict[str, str]], **kwargs
    )

Source from the content-addressed store, hash-verified

656 )
657
658 def _list_data_sources(
659 self, project: str, tags: Optional[dict[str, str]], **kwargs
660 ) -> List[DataSource]:
661 return self._list_objects(
662 data_sources,
663 project,
664 DataSourceProto,
665 DataSource,
666 "data_source_proto",
667 tags=tags,
668 **kwargs,
669 )
670
671 def apply_data_source(
672 self, data_source: DataSource, project: str, commit: bool = True

Callers

nothing calls this directly

Calls 1

_list_objectsMethod · 0.95

Tested by

no test coverage detected