Learn R Programming

datarobot (version 2.9.0)

RequestModelDeployment: Request a model deployment.

Description

Request a model deployment.

Usage

RequestModelDeployment(project, modelId, label, instanceId = NULL,
  description = NULL, status = NULL)

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.

modelId

character. Unique alphanumeric identifier for the model of interest.

label

character. A name for the model deployment.

instanceId

character. Optional. Id of the instance in DataRobot cloud being deployed to.

description

character. Optional. Description for the model deployment.

status

character. Optional. status for the model deployment. Can be "active", "inactive" or "archived". Defaults to "active".

Value

job Id

Examples

Run this code
# NOT RUN {
  projectId <- "59a5af20c80891534e3c2bde"
  modelId <- "5996f820af07fc605e81ead4"
  RequestModelDeployment(projectId, modelId, label = "My Deployment")
# }

Run the code above in your browser using DataLab