Transforms a directed acyclic graph (DAG) into code.
glue_create_script(DagNodes, DagEdges, Language)
A list with the following syntax:
list(
PythonScript = "string",
ScalaCode = "string"
)
A list of the nodes in the DAG.
A list of the edges in the DAG.
The programming language of the resulting code from the DAG.
svc$create_script(
DagNodes = list(
list(
Id = "string",
NodeType = "string",
Args = list(
list(
Name = "string",
Value = "string",
Param = TRUE|FALSE
)
),
LineNumber = 123
)
),
DagEdges = list(
list(
Source = "string",
Target = "string",
TargetParameter = "string"
)
),
Language = "PYTHON"|"SCALA"
)