File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -396,11 +396,15 @@ export enum TranslogDurability {
396
396
/**
397
397
* (default) fsync and commit after every request. In the event of hardware failure, all acknowledged writes
398
398
* will already have been committed to disk.
399
+ *
400
+ * @aliases REQUEST
399
401
*/
400
402
request ,
401
403
/**
402
404
* fsync and commit in the background every sync_interval. In the event of a failure, all acknowledged writes
403
405
* since the last automatic commit will be discarded.
406
+ *
407
+ * @aliases ASYNC
404
408
*/
405
409
async
406
410
}
@@ -535,6 +539,8 @@ export enum StorageType {
535
539
/**
536
540
* Default file system implementation. This will pick the best implementation depending on the operating environment, which
537
541
* is currently hybridfs on all supported systems but is subject to change.
542
+ *
543
+ * @aliases ''
538
544
*/
539
545
fs ,
540
546
/**
Original file line number Diff line number Diff line change @@ -23,6 +23,6 @@ export class Response {
23
23
body : {
24
24
index : IndexName
25
25
shards_acknowledged : boolean
26
- acknowledged ? : boolean
26
+ acknowledged : boolean
27
27
}
28
28
}
You can’t perform that action at this time.
0 commit comments