Validates the specified pipeline definition to ensure that it is well formed and can be run without error.
datapipeline_validate_pipeline_definition(pipelineId, pipelineObjects,
parameterObjects, parameterValues)
A list with the following syntax:
list(
validationErrors = list(
list(
id = "string",
errors = list(
"string"
)
)
),
validationWarnings = list(
list(
id = "string",
warnings = list(
"string"
)
)
),
errored = TRUE|FALSE
)
[required] The ID of the pipeline.
[required] The objects that define the pipeline changes to validate against the pipeline.
The parameter objects used with the pipeline.
The parameter values used with the pipeline.
svc$validate_pipeline_definition(
pipelineId = "string",
pipelineObjects = list(
list(
id = "string",
name = "string",
fields = list(
list(
key = "string",
stringValue = "string",
refValue = "string"
)
)
)
),
parameterObjects = list(
list(
id = "string",
attributes = list(
list(
key = "string",
stringValue = "string"
)
)
)
),
parameterValues = list(
list(
id = "string",
stringValue = "string"
)
)
)