@@ -101,7 +101,7 @@ export class ClusterIndices {
101
101
/**
102
102
* Contains statistics about analyzers and analyzer components used in selected nodes.
103
103
*/
104
- analysis : CharFilterTypes
104
+ analysis ? : CharFilterTypes
105
105
/** Contains statistics about memory used for completion in selected nodes. */
106
106
completion : CompletionStats
107
107
/** Total number of indices with shards assigned to selected nodes. */
@@ -130,7 +130,7 @@ export class ClusterIndices {
130
130
/**
131
131
* Contains statistics about field mappings in selected nodes.
132
132
*/
133
- mappings : FieldTypesMappings
133
+ mappings ? : FieldTypesMappings
134
134
/**
135
135
* Contains statistics about analyzers and analyzer components used in selected nodes.
136
136
* @doc_id analyzer-anatomy
@@ -139,11 +139,11 @@ export class ClusterIndices {
139
139
/**
140
140
* Contains statistics about indexed dense vector
141
141
*/
142
- dense_vector ? : DenseVectorStats
142
+ dense_vector : DenseVectorStats
143
143
/**
144
144
* Contains statistics about indexed sparse vector
145
145
*/
146
- sparse_vector ? : SparseVectorStats
146
+ sparse_vector : SparseVectorStats
147
147
}
148
148
149
149
export class SearchUsageStats {
@@ -188,11 +188,11 @@ export class FieldTypesMappings {
188
188
/**
189
189
* Total number of fields in all non-system indices.
190
190
*/
191
- total_field_count ?: integer
191
+ total_field_count ?: long
192
192
/**
193
193
* Total number of fields in all non-system indices, accounting for mapping deduplication.
194
194
*/
195
- total_deduplicated_field_count ?: integer
195
+ total_deduplicated_field_count ?: long
196
196
/**
197
197
* Total size of all mappings after deduplication and compression.
198
198
*/
0 commit comments