Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Add warning about bypassing ML PUT APIs #38509

Merged
merged 2 commits into from
Feb 8, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/reference/ml/apis/put-datafeed.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Instantiates a {dfeed}.
You must create a job before you create a {dfeed}. You can associate only one
{dfeed} to each job.

IMPORTANT: Putting a {dfeed} must be done via this API only. Do not put a {dfeed}
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
directly to the `.ml-config` index using the Elasticsearch Index API.
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
If {es} {security-features} are enabled, make sure no `write`
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
privileges are granted to anyone over the `.ml-config` index.
droberts195 marked this conversation as resolved.
Show resolved Hide resolved


==== Path Parameters

Expand Down
8 changes: 7 additions & 1 deletion docs/reference/ml/apis/put-job.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ Instantiates a job.

`PUT _ml/anomaly_detectors/<job_id>`

//===== Description
===== Description

IMPORTANT: Putting a job must be done via this API only. Do not put a job
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
directly to the `.ml-config` index using the Elasticsearch Index API.
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
If {es} {security-features} are enabled, make sure no `write`
droberts195 marked this conversation as resolved.
Show resolved Hide resolved
privileges are granted to anyone over the `.ml-config` index.
droberts195 marked this conversation as resolved.
Show resolved Hide resolved


==== Path Parameters

Expand Down