Parameter.get
Was this helpful?
Fetches the parameter, after which parameter.properties will contain a dict with entries corresponding to the properties on the parameter resource definition. Will raise an error if the parameter does not exist.
self (a Parameter)
import redivis
workflow = redivis.workflow("username.workflow_name")
p = workflow.parameter("my_param").get()
print(p.properties)Was this helpful?
Was this helpful?

