client.get_baseline

get_baseline helps get the configuration parameters of the existing baseline

Input ParameterTypeRequiredDescription
project_idstringYesThe unique identifier for the project
model_idstringYesThe unique identifier for the model
baseline_idstringYesThe unique identifier for the baseline
PROJECT_NAME = 'example_project'
MODEL_NAME = 'example_model'
BASELINE_NAME = 'example_preconfigured'


baseline = client.get_baseline(
  project_id=PROJECT_NAME,
  model_id=MODEL_NAME,
  baseline_id=BASELINE_NAME,
)
Return TypeDescription
fdl.BaselineBaseline schema object with all the configuration parameters