REST APIの変更履歴¶
変更履歴には、 DataRobotのREST APIクライアントの各バージョンのリリースにおける、注目すべき変更点のリストが含まれています。 DataRobotの最新バージョンの変更点を見るには、以下の変更履歴を参照し、目次で過去のバージョンを見ます。
DataRobot REST API v2.36の変更履歴¶
新機能¶
-
Added new endpoints for role based access management. Uses the following endpoints:
-
GET /api/v2/accessRoles/
GET /api/v2/accessRoles/{role_id}/
POST /api/v2/accessRoles/
PUT /api/v2/accessRoles/{role_id}/
DELETE /api/v2/accessRoles/{role_id}/
-
GET /api/v2/accessRoles/users/
-
Added an endpoint that initializes the incremental learning model and begins training using the chunking service
POST /api/v2/projects/(projectId)/incrementalLearningModels/fromSampleModel/
. To use it, enable the feature flag "Sample Data to Start Project." -
Added an endpoint for retrieving the
model_history
of a deploymentGET /api/v2/deployments/(deploymentId)/modelHistory/
. -
Added new APIs for secure configuration management. Uses the following endpoints:
-
POST /api/v2/secureConfigs/
GET /api/v2/secureConfigSchemas/
GET /api/v2/secureConfigSchemas/(secureConfigSchemaId)/
PATCH /api/v2/secureConfigs/(secureConfigId)/
GET /api/v2/secureConfigs/(secureConfigId)/values/
GET /api/v2/secureConfigs/(secureConfigId)/sharedRoles/
PATCH /api/v2/secureConfigs/(secureConfigId)/sharedRoles/
- The
start
andend
query parameters are no longer required forGET /api/v2/deployments/(deploymentId)/dataQualityView/
. Defaults will be provided for a one week span when not specified. - The
start
andend
body parameters are no longer required forPOST /api/v2/deployments/{deploymentId}/predictionDataExports/
. Defaults will be provided for a one week span when not specified.
使用非推奨のサマリー¶
- Removed the field
capabilities
fromGET /api/v2/deployments/
andGET /api/v2/deployments/(deploymentId)/
, after being deprecated in 2.29. Instead, useGET /api/v2/deployments/(deploymentId)/capabilities/
. - Removed the query param
targetClasses
fromGET /api/v2/deployments/(deploymentId)/accuracy/
andGET /api/v2/deployments/(deploymentId)/accuracyOverTime/
, after being deprecated in 2.31. Instead, usetargetClass
query param. - Deprecated
metrics
andmodelId
fields fromGET /api/v2/deployments/(deploymentId)/accuracy/
, usedata
field in the same endpoint instead. The deprecated fields will be removed in 2.40.