GetBlueprintDocumentation {datarobot} | R Documentation |
Get documentation for tasks used in the blueprint
Description
Get documentation for tasks used in the blueprint
Usage
GetBlueprintDocumentation(project, blueprintId)
Arguments
project |
character. Either (1) a character string giving the unique alphanumeric identifier for the project, or (2) a list containing the element projectId with this identifier. |
blueprintId |
character. Id of blueprint to retrieve. |
Value
list with following components
- task
Character string name of the task described in document
- description
Character string task description
- title
Character string title of document
- parameters
List of parameters that task can received in human-readable format with following components: name, type, description
- links
List of external lines used in document with following components: name, url
- references
List of references used in document with following components: name, url
Examples
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
modelId <- "5996f820af07fc605e81ead4"
model <- GetModel(projectId, modelId)
blueprintId <- model$blueprintId
GetBlueprintDocumentation(projectId, blueprintId)
## End(Not run)
[Package datarobot version 2.18.6 Index]