Parameter.get

Parameter.get() → self

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.

Returns

self (a Parameter)

Examples

import redivis

workflow = redivis.workflow("username.workflow_name")
p = workflow.parameter("my_param").get()

print(p.properties)

Was this helpful?