@@ -164,15 +164,15 @@ export class SparseVectorStats {
164164}
165165
166166export class DenseVectorOffHeapStats {
167- total_size_bytes ? : long
167+ total_size_bytes : long
168168 total_size ?: ByteSize
169- total_veb_size_bytes ? : long
169+ total_veb_size_bytes : long
170170 total_veb_size ?: ByteSize
171- total_vec_size_bytes ? : long
171+ total_vec_size_bytes : long
172172 total_vec_size ?: ByteSize
173- total_veq_size_bytes ? : long
173+ total_veq_size_bytes : long
174174 total_veq_size ?: ByteSize
175- total_vex_size_bytes ? : long
175+ total_vex_size_bytes : long
176176 total_vex_size ?: ByteSize
177177 fielddata ?: Dictionary < string , Dictionary < string , long > >
178178}
@@ -359,7 +359,7 @@ export class SynonymsStats {
359359export class IndicesVersions {
360360 index_count : integer
361361 primary_shard_count : integer
362- total_primary_bytes ? : long
362+ total_primary_bytes : long
363363 total_primary_size ?: ByteSize
364364 version : VersionString
365365}
@@ -373,7 +373,7 @@ export class ClusterJvm {
373373 /**
374374 * Uptime duration, in milliseconds, since JVM last started.
375375 */
376- max_uptime_in_millis ? : DurationValue < UnitMillis >
376+ max_uptime_in_millis : DurationValue < UnitMillis >
377377 /**
378378 * Uptime duration since JVM last started.
379379 */
@@ -396,15 +396,15 @@ export class ClusterJvmMemory {
396396 /**
397397 * Maximum amount of memory, in bytes, available for use by the heap across all selected nodes.
398398 */
399- heap_max_in_bytes ? : long
399+ heap_max_in_bytes : long
400400 /**
401401 * Maximum amount of memory available for use by the heap across all selected nodes.
402402 */
403403 heap_max ?: ByteSize
404404 /**
405405 * Memory, in bytes, currently in use by the heap across all selected nodes.
406406 */
407- heap_used_in_bytes ? : long
407+ heap_used_in_bytes : long
408408 /**
409409 * Memory currently in use by the heap across all selected nodes.
410410 */
@@ -664,7 +664,7 @@ export class SnapshotCurrentCounts {
664664
665665export class PerRepositoryStats {
666666 type : string
667- oldest_start_time_millis ? : UnitMillis
667+ oldest_start_time_millis : UnitMillis
668668 oldest_start_time ?: DateFormat
669669 current_counts : RepositoryStatsCurrentCounts
670670}
@@ -729,7 +729,7 @@ export class OperatingSystemMemoryInfo {
729729 /**
730730 * Amount, in bytes, of free physical memory across all selected nodes.
731731 */
732- free_in_bytes ? : long
732+ free_in_bytes : long
733733 /**
734734 * Amount of free physical memory across all selected nodes.
735735 */
@@ -742,7 +742,7 @@ export class OperatingSystemMemoryInfo {
742742 /**
743743 * Total amount, in bytes, of physical memory across all selected nodes.
744744 */
745- total_in_bytes ? : long
745+ total_in_bytes : long
746746 /**
747747 * Total amount of physical memory across all selected nodes.
748748 */
@@ -751,7 +751,7 @@ export class OperatingSystemMemoryInfo {
751751 /**
752752 * Amount, in bytes, of physical memory in use across all selected nodes.
753753 */
754- used_in_bytes ? : long
754+ used_in_bytes : long
755755 /**
756756 * Amount of physical memory in use across all selected nodes.
757757 */
0 commit comments