Skip to content

Commit 39072c7

Browse files
authored
[7.17] Misc fixes found validating Java client 8.2 (#1632) (#1665)
1 parent ea8352d commit 39072c7

File tree

4 files changed

+36
-21
lines changed

4 files changed

+36
-21
lines changed

output/schema/schema.json

Lines changed: 26 additions & 17 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
@@ -396,11 +396,15 @@ export enum TranslogDurability {
396396
/**
397397
* (default) fsync and commit after every request. In the event of hardware failure, all acknowledged writes
398398
* will already have been committed to disk.
399+
*
400+
* @aliases REQUEST
399401
*/
400402
request,
401403
/**
402404
* fsync and commit in the background every sync_interval. In the event of a failure, all acknowledged writes
403405
* since the last automatic commit will be discarded.
406+
*
407+
* @aliases ASYNC
404408
*/
405409
async
406410
}
@@ -535,6 +539,8 @@ export enum StorageType {
535539
/**
536540
* Default file system implementation. This will pick the best implementation depending on the operating environment, which
537541
* is currently hybridfs on all supported systems but is subject to change.
542+
*
543+
* @aliases ''
538544
*/
539545
fs,
540546
/**

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)