client.get_dataset_info

Retrieves the DatasetInfo object associated with a dataset.

Input ParametersTypeDefaultDescription
project_idstrNoneThe unique identifier for the project.
dataset_idstrNoneA unique identifier for the dataset.
PROJECT_ID = 'example_project'
DATASET_ID = 'example_dataset'

dataset_info = client.get_dataset_info(
    project_id=PROJECT_ID,
    dataset_id=DATASET_ID
)
Return TypeDescription
fdl.DatasetInfoThe fdl.DatasetInfo() object associated with the specified dataset.
#NA