Skip to content

Commit

Permalink
[DOCS] Add EQL operation summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Dec 3, 2024
1 parent 0b00127 commit 1e817a4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion specification/eql/delete/EqlDeleteRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import { RequestBase } from '@_types/Base'
import { Id } from '@_types/common'

/**
* Deletes an async EQL search or a stored synchronous EQL search.
* Delete an async EQL search.
* Delete an async EQL search or a stored synchronous EQL search.
* The API also deletes results for the search.
* @rest_spec_name eql.delete
* @availability stack since=7.9.0 stability=stable
Expand Down
3 changes: 2 additions & 1 deletion specification/eql/get/EqlGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import { Id } from '@_types/common'
import { Duration } from '@_types/Time'

/**
* Returns the current status and available results for an async EQL search or a stored synchronous EQL search.
* Get async EQL search results.
* Get the current status and available results for an async EQL search or a stored synchronous EQL search.
* @doc_id eql-async-search-api
* @rest_spec_name eql.get
* @availability stack since=7.9.0 stability=stable
Expand Down
3 changes: 2 additions & 1 deletion specification/eql/get_status/EqlGetStatusRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import { RequestBase } from '@_types/Base'
import { Id } from '@_types/common'

/**
* Returns the current status for an async EQL search or a stored synchronous EQL search without returning results.
* Get the async EQL status.
* Get the current status for an async EQL search or a stored synchronous EQL search without returning results.
* @doc_id eql-async-search-status-api
* @rest_spec_name eql.get_status
* @availability stack since=7.9.0 stability=stable
Expand Down
4 changes: 4 additions & 0 deletions specification/eql/search/EqlSearchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ import { Duration } from '@_types/Time'
import { ResultPosition } from './types'

/**
* Get EQL search results.
* Returns search results for an Event Query Language (EQL) query.
* EQL assumes each document in a data stream or index corresponds to an event.
* @rest_spec_name eql.search
* @availability stack since=7.9.0 stability=stable
* @availability serverless stability=stable visibility=public
* @ext_doc_id eql
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down

0 comments on commit 1e817a4

Please sign in to comment.