@@ -42,7 +42,7 @@ async def close_job(
42
42
body : t .Optional [t .Dict [str , t .Any ]] = None ,
43
43
) -> ObjectApiResponse [t .Any ]:
44
44
"""
45
- Close anomaly detection jobs A job can be opened and closed multiple times throughout
45
+ Close anomaly detection jobs. A job can be opened and closed multiple times throughout
46
46
its lifecycle. A closed job cannot receive data or perform analysis operations,
47
47
but you can still explore and navigate results. When you close a job, it runs
48
48
housekeeping tasks such as pruning the model history, flushing buffers, calculating
@@ -393,7 +393,7 @@ async def delete_job(
393
393
wait_for_completion : t .Optional [bool ] = None ,
394
394
) -> ObjectApiResponse [t .Any ]:
395
395
"""
396
- Deletes an anomaly detection job. All job configuration, model state and results
396
+ Delete an anomaly detection job. All job configuration, model state and results
397
397
are deleted. It is not currently possible to delete multiple jobs using wildcards
398
398
or a comma separated list. If you delete a job that has a datafeed, the request
399
399
first tries to delete the datafeed. This behavior is equivalent to calling the
@@ -1665,12 +1665,12 @@ async def open_job(
1665
1665
body : t .Optional [t .Dict [str , t .Any ]] = None ,
1666
1666
) -> ObjectApiResponse [t .Any ]:
1667
1667
"""
1668
- Opens one or more anomaly detection jobs. An anomaly detection job must be opened
1669
- in order for it to be ready to receive and analyze data. It can be opened and
1670
- closed multiple times throughout its lifecycle. When you open a new job, it starts
1671
- with an empty model. When you open an existing job, the most recent model state
1672
- is automatically loaded. The job is ready to resume its analysis from where it
1673
- left off, once new data is received.
1668
+ Open anomaly detection jobs. An anomaly detection job must be opened in order
1669
+ for it to be ready to receive and analyze data. It can be opened and closed multiple
1670
+ times throughout its lifecycle. When you open a new job, it starts with an empty
1671
+ model. When you open an existing job, the most recent model state is automatically
1672
+ loaded. The job is ready to resume its analysis from where it left off, once
1673
+ new data is received.
1674
1674
1675
1675
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/ml-open-job.html>`_
1676
1676
@@ -2471,8 +2471,8 @@ async def put_job(
2471
2471
body : t .Optional [t .Dict [str , t .Any ]] = None ,
2472
2472
) -> ObjectApiResponse [t .Any ]:
2473
2473
"""
2474
- Instantiates an anomaly detection job. If you include a `datafeed_config`, you
2475
- must have read index privileges on the source index.
2474
+ Create an anomaly detection job. If you include a `datafeed_config`, you must
2475
+ have read index privileges on the source index.
2476
2476
2477
2477
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/ml-put-job.html>`_
2478
2478
0 commit comments