rest-api-spec.api.ml.get_jobs.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
The newest version!
{
"ml.get_jobs":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-job.html",
"description":"Retrieves configuration information for anomaly detection jobs."
},
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
},
"url":{
"paths":[
{
"path":"/_ml/anomaly_detectors/{job_id}",
"methods":[
"GET"
],
"parts":{
"job_id":{
"type":"string",
"description":"The ID of the jobs to fetch"
}
}
},
{
"path":"/_ml/anomaly_detectors",
"methods":[
"GET"
]
}
]
},
"params":{
"allow_no_match":{
"type":"boolean",
"required":false,
"description":"Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified)"
},
"exclude_generated": {
"required": false,
"type": "boolean",
"default": false,
"description": "Omits fields that are illegal to set on job PUT"
}
}
}
}