GetPrimeFileFromJobId {datarobot} | R Documentation |
Retrieve a specific Prime file from a DataRobot project for corresponding jobId
Description
Retrieve a specific Prime file from a DataRobot project for corresponding jobId
Usage
GetPrimeFileFromJobId(project, jobId, maxWait = 600)
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. |
jobId |
numeric. Unique integer identifier (return for example by |
maxWait |
numeric. maximum time to wait (in sec) before job completed. |
Value
List with following elements:
- language
Character string. Code programming language
- isValid
logical flag indicating if code passed validation
- rulesetId
Integer identifier for the ruleset
- parentModelId
Unique alphanumeric identifier for the parent model
- projectId
Unique alphanumeric identifier for the project
- id
Unique alphanumeric identifier for the Prime file
- modelId
Unique alphanumeric identifier for the model
Examples
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
initialJobs <- ListModelJobs(project)
job <- initialJobs[[1]]
modelJobId <- job$modelJobId
GetPrimeFileFromJobId(projectId, modelJobId)
## End(Not run)
[Package datarobot version 2.18.6 Index]