@@ -164,15 +164,15 @@ export class SparseVectorStats {
164
164
}
165
165
166
166
export class DenseVectorOffHeapStats {
167
- total_size_bytes ? : long
167
+ total_size_bytes : long
168
168
total_size ?: ByteSize
169
- total_veb_size_bytes ? : long
169
+ total_veb_size_bytes : long
170
170
total_veb_size ?: ByteSize
171
- total_vec_size_bytes ? : long
171
+ total_vec_size_bytes : long
172
172
total_vec_size ?: ByteSize
173
- total_veq_size_bytes ? : long
173
+ total_veq_size_bytes : long
174
174
total_veq_size ?: ByteSize
175
- total_vex_size_bytes ? : long
175
+ total_vex_size_bytes : long
176
176
total_vex_size ?: ByteSize
177
177
fielddata ?: Dictionary < string , Dictionary < string , long > >
178
178
}
@@ -359,7 +359,7 @@ export class SynonymsStats {
359
359
export class IndicesVersions {
360
360
index_count : integer
361
361
primary_shard_count : integer
362
- total_primary_bytes ? : long
362
+ total_primary_bytes : long
363
363
total_primary_size ?: ByteSize
364
364
version : VersionString
365
365
}
@@ -373,7 +373,7 @@ export class ClusterJvm {
373
373
/**
374
374
* Uptime duration, in milliseconds, since JVM last started.
375
375
*/
376
- max_uptime_in_millis ? : DurationValue < UnitMillis >
376
+ max_uptime_in_millis : DurationValue < UnitMillis >
377
377
/**
378
378
* Uptime duration since JVM last started.
379
379
*/
@@ -396,15 +396,15 @@ export class ClusterJvmMemory {
396
396
/**
397
397
* Maximum amount of memory, in bytes, available for use by the heap across all selected nodes.
398
398
*/
399
- heap_max_in_bytes ? : long
399
+ heap_max_in_bytes : long
400
400
/**
401
401
* Maximum amount of memory available for use by the heap across all selected nodes.
402
402
*/
403
403
heap_max ?: ByteSize
404
404
/**
405
405
* Memory, in bytes, currently in use by the heap across all selected nodes.
406
406
*/
407
- heap_used_in_bytes ? : long
407
+ heap_used_in_bytes : long
408
408
/**
409
409
* Memory currently in use by the heap across all selected nodes.
410
410
*/
@@ -664,7 +664,7 @@ export class SnapshotCurrentCounts {
664
664
665
665
export class PerRepositoryStats {
666
666
type : string
667
- oldest_start_time_millis ? : UnitMillis
667
+ oldest_start_time_millis : UnitMillis
668
668
oldest_start_time ?: DateFormat
669
669
current_counts : RepositoryStatsCurrentCounts
670
670
}
@@ -729,7 +729,7 @@ export class OperatingSystemMemoryInfo {
729
729
/**
730
730
* Amount, in bytes, of free physical memory across all selected nodes.
731
731
*/
732
- free_in_bytes ? : long
732
+ free_in_bytes : long
733
733
/**
734
734
* Amount of free physical memory across all selected nodes.
735
735
*/
@@ -742,7 +742,7 @@ export class OperatingSystemMemoryInfo {
742
742
/**
743
743
* Total amount, in bytes, of physical memory across all selected nodes.
744
744
*/
745
- total_in_bytes ? : long
745
+ total_in_bytes : long
746
746
/**
747
747
* Total amount of physical memory across all selected nodes.
748
748
*/
@@ -751,7 +751,7 @@ export class OperatingSystemMemoryInfo {
751
751
/**
752
752
* Amount, in bytes, of physical memory in use across all selected nodes.
753
753
*/
754
- used_in_bytes ? : long
754
+ used_in_bytes : long
755
755
/**
756
756
* Amount of physical memory in use across all selected nodes.
757
757
*/
0 commit comments