get_child_runs {azuremlsdk} | R Documentation |
Get all children for the current run selected by specified filters
Description
Get all children for the current run selected by specified filters.
Usage
get_child_runs(
parent_run,
recursive = FALSE,
tags = NULL,
properties = NULL,
type = NULL,
status = NULL
)
Arguments
parent_run |
The parent |
recursive |
Boolean indicating whether to recurse through all descendants. |
tags |
If specified, returns runs matching specified "tag" or list(tag = value). |
properties |
If specified, returns runs matching specified "property" or list(property = value). |
type |
If specified, returns runs matching this type. |
status |
If specified, returns runs with status specified "status". |
Value
A list of child runs, Run
objects.
[Package azuremlsdk version 1.10.0 Index]