Learn R Programming

datarobot (version 2.9.0)

ListModelDeployments: Retrieve information about all model deployments throughout your projects.

Description

Retrieve information about all model deployments throughout your projects.

Usage

ListModelDeployments(limit = NULL, offset = NULL, query = NULL,
  orderBy = NULL, status = NULL)

Arguments

limit

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

offset

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

query

character. Filter the model deployments by matching labels and descriptions with the specified string. Partial matches are included, too. Matches are case insensitive.

orderBy

character. How the model deployments are ordered. Supported attributes for ordering: label, exportTarget, status, type. Prefix attribute name with dash to sort in descending order, e.g., orderBy = "-label". Only one field can be selected.

status

character. Filter the list of deployments by status. Must be one of: "active", "inactive", "archived". Valid statuses can be seen in ModelDeploymentStatus.

Value

data.frame containing information about each model deployment. See GetModelDeployment for details.

Examples

Run this code
# NOT RUN {
 ListModelDeployments()
# }

Run the code above in your browser using DataLab