Learn R Programming

datarobot (version 2.9.0)

GetModelDeploymentActionLog: Retrieve an action log for a model deployment.

Description

Retrieve an action log for a model deployment.

Usage

GetModelDeploymentActionLog(modelDeploymentId, limit = NULL, offset = NULL)

Arguments

modelDeploymentId

character. ID of the model deployment to retrieve.

limit

integer. At most this many results are returned. Defaults to no limit.

offset

integer. This many results will be skipped. Defaults to 0.

Value

dataRobotModelDeploymentActionLog object containing the following information:

  • action character. The action taken. One of either "deployed" or "created".

  • performedBy list. A list detailing information about the user taking the action. Contains the following:

    • username character. The username of the user taking the action.

    • firstName character. The first name of that user.

    • lastName character. The last name of that user.

  • performedAt datetime. The date and time the action was performed, in ISO-8601 format.

Examples

Run this code
# NOT RUN {
  modelDeploymentId <- "59a5af20c80891534e3c2bde"
  serviceHealth <- GetModelDeploymentServiceStatistics(modelDeploymentId)
  serviceHealth2 <- GetModelDeploymentServiceStatistics(modelDeploymentId,
# }

Run the code above in your browser using DataLab