You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/basic/state.md
+9
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,15 @@ state = PipelineRunState(
32
32
])
33
33
```
34
34
35
+
The following `RunParameterType` values are available:
36
+
37
+
*`RunParameterType.Parameter` to set a pipeline parameter: `@pipeline().parameters.<parameter_name>`
38
+
*`RunParameterType.Global` to set a global parameter: `@pipeline().globalParameters.<global_parameter_name>`
39
+
*`RunParameterType.System` to set a system parameter: `@pipeline().<system_parameter_name>`
40
+
*`RunParameterType.Dataset` to set a dataset: `@dataset().<dataset_name>`
41
+
*`RunParameterType.LinkedService` to set a linked service: `@linkedService().<linked_service_name>`
42
+
*`RunParameterType.LibraryVariables` to set a library variable: `@pipeline().libraryVariables.<variable_name>`
43
+
35
44
### Activity results
36
45
37
46
In the scenario where an activity has an expression that references the output of another activity `activity('another_activity_name').output.some_field`, the `PipelineRunState` can be used to configure the output of the `another_activity_name` activity.
0 commit comments