Description Usage Arguments Value See Also Examples
Default behavior is to just retrieve all active recipes, no matter on which instance they are running. You may change this behavior in two ways (or combinations thereof):
If instance_uid
is set, only recipes assigned to at least one of these instances are returned.
If include_inactive
is set to TRUE
, also recipes currently not active are returned.
1 | get_recipes(connection, instance_uid = NULL, include_inactive = FALSE)
|
connection |
A connection object, as retrieved from |
instance_uid |
Numeric UID or a vector of numeric UIDs of the instance to filter recipes for. Filtering is inclusive (i.e., recipes are included if they are assigned to at least one of the instances; no need to be assigned to all of them to be returned). If NULL, all recipes are provided. Defaults to |
include_inactive |
If |
A tibble listing all available recipes including its UID, name, the date then the recipe was first created, its description, whether the recipe is active, as well as the number of its runs and the date of the latest run.
1 2 3 4 5 6 7 8 | ## Not run:
connection <- connect('my_db on localhost')
get_recipes(connection)
get_recipes(connection, include_inactive = TRUE)
disconnect(connection)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.