Skip to content

Commit

Permalink
Add optional body to ml.open_job and ml.forecast APIs (#81594)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Dec 9, 2021
1 parent 17c211b commit b57ffab
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
"accept": [ "application/json"],
"content_type": ["application/json"]
},
"url":{
"paths":[
Expand Down Expand Up @@ -41,6 +42,10 @@
"required":false,
"description":"The max memory able to be used by the forecast. Default is 20mb."
}
},
"body":{
"description": "Query parameters can be specified in the body",
"required":false
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
"accept": [ "application/json"],
"content_type": ["application/json"]
},
"url":{
"paths":[
Expand All @@ -24,6 +25,10 @@
}
}
]
},
"body":{
"description": "Query parameters can be specified in the body",
"required":false
}
}
}

0 comments on commit b57ffab

Please sign in to comment.