Use the get_data_domain() method to retrieve the DataDomain based on the feature store's repo and data domain.
There are no parameters for this function.
Example setup
>>> from teradataml import FeatureStore
Example: Get the DataDomain
Create FeatureStore for repo 'vfs_v1'.
>>> fs = FeatureStore('vfs_v1', data_domain='sales')
Repo vfs_v1 does not exist. Run FeatureStore.setup() to create the repo and setup FeatureStore.
Set up FeatureStore for this repository.
>>> fs.setup()
True
Get DataDomain from FeatureStore.
>>> fs.get_data_domain()
DataDomain(repo=vfs_v1, data_domain=sales)