Skip to content

Commit 8346989

Browse files
Address review comments
1 parent 42fae9f commit 8346989

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

specification/esql/async_query/AsyncQueryRequest.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,10 @@ export interface Request extends RequestBase {
115115
*/
116116
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
117117
/**
118-
* If provided and `true`, the response will include an extra `_clusters` object with information
119-
* about the clusters that participated in the search along with info such as shards count.
118+
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
119+
* object with information about the clusters that participated in the search along with info such as shards
120+
* count.
121+
* @server_default false
120122
*/
121123
include_ccs_metadata?: boolean
122124
}

specification/esql/query/QueryRequest.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ export interface Request extends RequestBase {
9595
*/
9696
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
9797
/**
98-
* If provided and `true`, the response will include an extra `_clusters` object with information
99-
* about the clusters that participated in the search along with info such as shards count.
98+
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
99+
* object with information about the clusters that participated in the search along with info such as shards
100+
* count.
101+
* @server_default false
100102
*/
101103
include_ccs_metadata?: boolean
102104
}

0 commit comments

Comments
 (0)