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
types. Each `dsl.PipelineParam` represents a parameter whose value is usually
111
-
only known at run time. The parameter can be a one for which the user provides
112
-
a value at pipeline run time, or it can be an output from an upstream
113
-
component.
119
+
* Values in the `arguments` list that's used by the `dsl.ContainerOp` constructor above must be either Python scalar types (such as `str` and ` int`) or [`dsl.PipelineParam`](https://github.com/kubeflow/pipelines/blob/master/sdk/python/kfp/dsl/_pipeline_param.py) types. Each `dsl.PipelineParam` represents a parameter whose value is usually only known at run time. The value is
120
+
either provided by the user at pipeline run time or received as an output from an upstream component.
114
121
* Although the value of each `dsl.PipelineParam` is only available at run time,
115
122
you can still use the parameters inline in the `arguments` by using `%s`
116
123
variable substitution. At run time the argument contains the value of the
0 commit comments