Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2024 11:46 AM
@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 dynamic value references:
{{tasks.[task_name].values.[value_name]}}vs.
{{job.parameters.[name]}} This works for reading Parameters in the Workflow itself, such as:
Is there an analogous way to read a Job parameter within a Notebook? The Note on this page seems to indicate that these dynamic value references are available in Notebooks, but how do you reference them in Python?