an update to my answer: Databricks has advised us that the `dbutils.notebook.entry_point` method is not supported (could be deprecated), and the recommended way to read in a job parameter is through widgets, i.e. `dbutils.widgets.get("param_key")` (...
A coworker has answered this question for me, posting it for anyone else looking for an answer:run_parameters = dbutils.notebook.entry_point.getCurrentBindings() context = json.loads(dbutils.notebook.entry_point.getDbutils().notebook().getContext().t...
@Retired_mod This method works for Task parameters. Is there a way to access Job parameters that apply to the entire workflow, set under a heading like this in the UI:I am able to read Job parameters in a different way from Task parameters using dyn...