list_modules.RdReturn a data.frame of metadata of available models/decisions
list_modules(
session,
filters = list(),
start = 0,
limit = 20,
verbose = FALSE,
exact = FALSE,
...
)viya_connection object, obtained through session function
list of of names vectors for filter parameters (createdBy, modifiedBy, name). By default it will use the contains operation. For more info visit https://developer.sas.com/apis/rest/Topics/#filters.
the index of the first module to return
maximum number of modules to return
logical, return print API call information
boolean, If the filter query should use "contains" for partial match or "eq" for exact match
additional parameters to be passed to httr::GET such as httr::add_headers
A data.frame with the list of models
if (FALSE) { # \dontrun{
models <- list_modules(sess, filters = list(createdBy = 'myUser'))
models
} # }