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
The values for the variables declared in the template
[optional]
resource_meta_data
Dict[str, object]
Metadata for any of the resources used in the template. The current metadata for all resources used in the template is fetched at the start of the template run. This provided metadata is used to overwrite this current metadata
fromwaylay.services.rules.models.template_run_with_graph_specificationimportTemplateRunWithGraphSpecification# TODO update the JSON string belowjson="{}"# create an instance of TemplateRunWithGraphSpecification from a JSON stringtemplate_run_with_graph_specification_instance=TemplateRunWithGraphSpecification.from_json(json)
# print the JSON string representation of the objectprintTemplateRunWithGraphSpecification.to_json()
# convert the object into a dicttemplate_run_with_graph_specification_dict=template_run_with_graph_specification_instance.to_dict()
# create an instance of TemplateRunWithGraphSpecification from a dicttemplate_run_with_graph_specification_form_dict=template_run_with_graph_specification.from_dict(template_run_with_graph_specification_dict)