Update Model Deployment

Update Model Deployment

this will allow you to update a models deployment configuration

Provide the model ID, the deployment configuration and the deployment Type

Request
path Parameters
id
required
string

ID of the Model to clone from

Request Body schema: application/json

Provide the deployment configuration and the deployment Type

deploymentConfig
required
object (Dictionary)
deploymentType
required
string (ModelOperationTypes)
Enum: "train" "predict" "evaluate" "deploy"
Responses
200

Ok

400

Bad Request

500

Internal Server Error

patch/ml/models/{id}/deployment
Request samples
application/json
{
  • "deploymentConfig": {
    },
  • "deploymentType": "train"
}
Response samples
application/json
{
  • "deploymentType": "train",
  • "deploymentConfig": {
    }
}