-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Add REST spec for the update data frame analytics endpoint (#59253…
- Loading branch information
1 parent
1ad00d1
commit d323f8d
Showing
2 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
x-pack/plugin/src/test/resources/rest-api-spec/api/ml.update_data_frame_analytics.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"ml.update_data_frame_analytics":{ | ||
"documentation":{ | ||
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/current/update-dfanalytics.html", | ||
"description":"Updates certain properties of a data frame analytics job." | ||
}, | ||
"stability":"experimental", | ||
"url":{ | ||
"paths":[ | ||
{ | ||
"path":"/_ml/data_frame/analytics/{id}/_update", | ||
"methods":[ | ||
"POST" | ||
], | ||
"parts":{ | ||
"id":{ | ||
"type":"string", | ||
"description":"The ID of the data frame analytics to update" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"body":{ | ||
"description":"The data frame analytics settings to update", | ||
"required":true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters