File tree Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 20
20
import { RequestBase } from '@_types/Base'
21
21
22
22
/**
23
+ * Clear an SQL search cursor.
23
24
* @rest_spec_name sql.clear_cursor
24
25
* @availability stack since=6.3.0 stability=stable
25
26
* @availability serverless stability=stable visibility=public
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ import { RequestBase } from '@_types/Base'
21
21
import { Id } from '@_types/common'
22
22
23
23
/**
24
+ * Delete an async SQL search.
25
+ * Delete an async SQL search or a stored synchronous SQL search.
26
+ * If the search is still running, the API cancels it.
24
27
* @rest_spec_name sql.delete_async
25
28
* @availability stack since=7.15.0 stability=stable
26
29
* @availability serverless stability=stable visibility=public
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ import { Id } from '@_types/common'
22
22
import { Duration } from '@_types/Time'
23
23
24
24
/**
25
+ * Get async SQL search results.
26
+ * Get the current status and available results for an async SQL search or stored synchronous SQL search.
25
27
* @rest_spec_name sql.get_async
26
28
* @availability stack since=7.15.0 stability=stable
27
29
* @availability serverless stability=stable visibility=public
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ import { RequestBase } from '@_types/Base'
21
21
import { Id } from '@_types/common'
22
22
23
23
/**
24
+ * Get the async SQL search status.
25
+ * Get the current status of an async SQL search or a stored synchronous SQL search.
24
26
* @rest_spec_name sql.get_async_status
25
27
* @availability stack since=7.15.0 stability=stable
26
28
* @availability serverless stability=stable visibility=public
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ import { QueryContainer } from '@_types/query_dsl/abstractions'
26
26
import { Duration , TimeZone } from '@_types/Time'
27
27
28
28
/**
29
+ * Get SQL search results.
30
+ * Run an SQL request.
29
31
* @rest_spec_name sql.query
30
32
* @availability stack since=6.3.0 stability=stable
31
33
* @availability serverless stability=stable visibility=public
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ import { QueryContainer } from '@_types/query_dsl/abstractions'
23
23
import { TimeZone } from '@_types/Time'
24
24
25
25
/**
26
+ * Translate SQL into Elasticsearch queries.
27
+ * Translate an SQL search into a search API request containing Query DSL.
26
28
* @rest_spec_name sql.translate
27
29
* @availability stack since=6.3.0 stability=stable
28
30
* @availability serverless stability=stable visibility=public
You can’t perform that action at this time.
0 commit comments