Skip to content

Commit 1e3fbcd

Browse files
[Backport 8.2] Misc fixes found validating Java client 8.2 (#1641)
Co-authored-by: Sylvain Wallez <[email protected]>
1 parent 5284727 commit 1e3fbcd

File tree

4 files changed

+38
-23
lines changed

4 files changed

+38
-23
lines changed

output/schema/schema.json

Lines changed: 28 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/indices/_types/IndexSettings.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,15 @@ export enum TranslogDurability {
349349
/**
350350
* (default) fsync and commit after every request. In the event of hardware failure, all acknowledged writes
351351
* will already have been committed to disk.
352+
*
353+
* @aliases REQUEST
352354
*/
353355
request,
354356
/**
355357
* fsync and commit in the background every sync_interval. In the event of a failure, all acknowledged writes
356358
* since the last automatic commit will be discarded.
359+
*
360+
* @aliases ASYNC
357361
*/
358362
async
359363
}
@@ -496,6 +500,8 @@ export enum StorageType {
496500
/**
497501
* Default file system implementation. This will pick the best implementation depending on the operating environment, which
498502
* is currently hybridfs on all supported systems but is subject to change.
503+
*
504+
* @aliases ''
499505
*/
500506
fs,
501507
/**

specification/indices/create/IndicesCreateResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ export class Response {
2323
body: {
2424
index: IndexName
2525
shards_acknowledged: boolean
26-
acknowledged?: boolean
26+
acknowledged: boolean
2727
}
2828
}

0 commit comments

Comments
 (0)