[ML] Remove trailing slashes from ML rest spec (elastic/x-pack-elasticsearch#2350)
Original commit: elastic/x-pack-elasticsearch@f2a3d70562
This commit is contained in:
parent
175e8db3aa
commit
5a63c4d9a2
|
@ -3,7 +3,7 @@
|
|||
"methods": [ "GET" ],
|
||||
"url": {
|
||||
"path": "/_xpack/ml/filters/{filter_id}",
|
||||
"paths": [ "/_xpack/ml/filters/", "/_xpack/ml/filters/{filter_id}" ],
|
||||
"paths": [ "/_xpack/ml/filters", "/_xpack/ml/filters/{filter_id}" ],
|
||||
"parts": {
|
||||
"filter_id": {
|
||||
"type" : "string",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"path": "/_xpack/ml/anomaly_detectors/{job_id}",
|
||||
"paths": [
|
||||
"/_xpack/ml/anomaly_detectors/{job_id}",
|
||||
"/_xpack/ml/anomaly_detectors/"
|
||||
"/_xpack/ml/anomaly_detectors"
|
||||
],
|
||||
"parts": {
|
||||
"job_id": {
|
||||
|
|
Loading…
Reference in New Issue