UpdateDeploymentDriftTrackingSettings {datarobot}R Documentation

Update drift tracking settings for a deployment.

Description

Update drift tracking settings for a deployment.

Usage

UpdateDeploymentDriftTrackingSettings(
  deploymentId,
  targetDriftEnabled = NULL,
  featureDriftEnabled = NULL,
  maxWait = 600
)

Arguments

deploymentId

character. The ID of the deployment.

targetDriftEnabled

logical. Optional. Set to TRUE to enable target drift. Set to FALSE to disable.

featureDriftEnabled

logical. Optional. Set to TRUE to enable feature drift. Set to FALSE to disable.

maxWait

integer. How long to wait (in seconds) for the computation to complete before returning a timeout error? (Default 600 seconds)

Value

A list with the following information on drift tracking:

Examples

## Not run: 
  deploymentId <- "5e319d2e422fbd6b58a5edad"
  UpdateDeploymentDriftTrackingSettings(deploymentId, targetDriftEnabled = TRUE)

## End(Not run)

[Package datarobot version 2.18.6 Index]