We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
A new endpoint has been added for reseting anomaly detection jobs elastic/elasticsearch#73908
POST _ml/anomaly_detectors/<job_id>/_reset
I imagine the request type will looks something like this
export interface MlResetJobRequest extends RequestBase { job_id: Id wait_for_completion?: boolean }
MlJob will also need updating with new properties added with this reset work
MlJob
class MlJob { ... + blocked?: MlJobBlocked }
where MlJobBlocked should look like this:
MlJobBlocked
MlJobBlocked { reason: 'delete' | 'revert' | 'reset'; task_id?: string; }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
A new endpoint has been added for reseting anomaly detection jobs
elastic/elasticsearch#73908
I imagine the request type will looks something like this
MlJob
will also need updating with new properties added with this reset workclass MlJob { ... + blocked?: MlJobBlocked }
where
MlJobBlocked
should look like this:The text was updated successfully, but these errors were encountered: