Skip to content

Commit 54a1229

Browse files
Regen code without local metadata (#6923) (#6928)
Co-authored-by: Steve Gordon <sgordon@hotmail.co.uk>
1 parent 15182b2 commit 54a1229

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+90
-1530
lines changed

src/Elastic.Clients.Elasticsearch/_Generated/Types/Mapping/AggregateMetricDoubleProperty.g.cs

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ public sealed partial class AggregateMetricDoubleProperty : IProperty
4343
[JsonPropertyName("ignore_above")]
4444
public int? IgnoreAbove { get; set; }
4545

46-
[JsonInclude]
47-
[JsonPropertyName("local_metadata")]
48-
public Dictionary<string, object>? LocalMetadata { get; set; }
49-
5046
[JsonInclude]
5147
[JsonPropertyName("meta")]
5248
public Dictionary<string, string>? Meta { get; set; }
@@ -83,8 +79,6 @@ public AggregateMetricDoublePropertyDescriptor() : base()
8379

8480
private int? IgnoreAboveValue { get; set; }
8581

86-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
87-
8882
private Dictionary<string, string>? MetaValue { get; set; }
8983

9084
private ICollection<string> MetricsValue { get; set; }
@@ -131,12 +125,6 @@ public AggregateMetricDoublePropertyDescriptor<TDocument> IgnoreAbove(int? ignor
131125
return Self;
132126
}
133127

134-
public AggregateMetricDoublePropertyDescriptor<TDocument> LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
135-
{
136-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
137-
return Self;
138-
}
139-
140128
public AggregateMetricDoublePropertyDescriptor<TDocument> Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
141129
{
142130
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -198,12 +186,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
198186
writer.WriteNumberValue(IgnoreAboveValue.Value);
199187
}
200188

201-
if (LocalMetadataValue is not null)
202-
{
203-
writer.WritePropertyName("local_metadata");
204-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
205-
}
206-
207189
if (MetaValue is not null)
208190
{
209191
writer.WritePropertyName("meta");
@@ -230,7 +212,7 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
230212
}
231213

232214
AggregateMetricDoubleProperty IBuildableDescriptor<AggregateMetricDoubleProperty>.Build() => new()
233-
{ DefaultMetric = DefaultMetricValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, Metrics = MetricsValue, Properties = PropertiesValue, TimeSeriesMetric = TimeSeriesMetricValue };
215+
{ DefaultMetric = DefaultMetricValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Meta = MetaValue, Metrics = MetricsValue, Properties = PropertiesValue, TimeSeriesMetric = TimeSeriesMetricValue };
234216
}
235217

236218
public sealed partial class AggregateMetricDoublePropertyDescriptor : SerializableDescriptor<AggregateMetricDoublePropertyDescriptor>, IBuildableDescriptor<AggregateMetricDoubleProperty>
@@ -248,8 +230,6 @@ public AggregateMetricDoublePropertyDescriptor() : base()
248230

249231
private int? IgnoreAboveValue { get; set; }
250232

251-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
252-
253233
private Dictionary<string, string>? MetaValue { get; set; }
254234

255235
private ICollection<string> MetricsValue { get; set; }
@@ -296,12 +276,6 @@ public AggregateMetricDoublePropertyDescriptor IgnoreAbove(int? ignoreAbove)
296276
return Self;
297277
}
298278

299-
public AggregateMetricDoublePropertyDescriptor LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
300-
{
301-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
302-
return Self;
303-
}
304-
305279
public AggregateMetricDoublePropertyDescriptor Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
306280
{
307281
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -363,12 +337,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
363337
writer.WriteNumberValue(IgnoreAboveValue.Value);
364338
}
365339

366-
if (LocalMetadataValue is not null)
367-
{
368-
writer.WritePropertyName("local_metadata");
369-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
370-
}
371-
372340
if (MetaValue is not null)
373341
{
374342
writer.WritePropertyName("meta");
@@ -395,5 +363,5 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
395363
}
396364

397365
AggregateMetricDoubleProperty IBuildableDescriptor<AggregateMetricDoubleProperty>.Build() => new()
398-
{ DefaultMetric = DefaultMetricValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, Metrics = MetricsValue, Properties = PropertiesValue, TimeSeriesMetric = TimeSeriesMetricValue };
366+
{ DefaultMetric = DefaultMetricValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Meta = MetaValue, Metrics = MetricsValue, Properties = PropertiesValue, TimeSeriesMetric = TimeSeriesMetricValue };
399367
}

src/Elastic.Clients.Elasticsearch/_Generated/Types/Mapping/BinaryProperty.g.cs

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ public sealed partial class BinaryProperty : IProperty
4747
[JsonPropertyName("ignore_above")]
4848
public int? IgnoreAbove { get; set; }
4949

50-
[JsonInclude]
51-
[JsonPropertyName("local_metadata")]
52-
public Dictionary<string, object>? LocalMetadata { get; set; }
53-
5450
[JsonInclude]
5551
[JsonPropertyName("meta")]
5652
public Dictionary<string, string>? Meta { get; set; }
@@ -89,8 +85,6 @@ public BinaryPropertyDescriptor() : base()
8985

9086
private int? IgnoreAboveValue { get; set; }
9187

92-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
93-
9488
private Dictionary<string, string>? MetaValue { get; set; }
9589

9690
private Elastic.Clients.Elasticsearch.Mapping.Properties? PropertiesValue { get; set; }
@@ -143,12 +137,6 @@ public BinaryPropertyDescriptor<TDocument> IgnoreAbove(int? ignoreAbove)
143137
return Self;
144138
}
145139

146-
public BinaryPropertyDescriptor<TDocument> LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
147-
{
148-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
149-
return Self;
150-
}
151-
152140
public BinaryPropertyDescriptor<TDocument> Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
153141
{
154142
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -220,12 +208,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
220208
writer.WriteNumberValue(IgnoreAboveValue.Value);
221209
}
222210

223-
if (LocalMetadataValue is not null)
224-
{
225-
writer.WritePropertyName("local_metadata");
226-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
227-
}
228-
229211
if (MetaValue is not null)
230212
{
231213
writer.WritePropertyName("meta");
@@ -256,7 +238,7 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
256238
}
257239

258240
BinaryProperty IBuildableDescriptor<BinaryProperty>.Build() => new()
259-
{ CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
241+
{ CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Meta = MetaValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
260242
}
261243

262244
public sealed partial class BinaryPropertyDescriptor : SerializableDescriptor<BinaryPropertyDescriptor>, IBuildableDescriptor<BinaryProperty>
@@ -276,8 +258,6 @@ public BinaryPropertyDescriptor() : base()
276258

277259
private int? IgnoreAboveValue { get; set; }
278260

279-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
280-
281261
private Dictionary<string, string>? MetaValue { get; set; }
282262

283263
private Elastic.Clients.Elasticsearch.Mapping.Properties? PropertiesValue { get; set; }
@@ -330,12 +310,6 @@ public BinaryPropertyDescriptor IgnoreAbove(int? ignoreAbove)
330310
return Self;
331311
}
332312

333-
public BinaryPropertyDescriptor LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
334-
{
335-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
336-
return Self;
337-
}
338-
339313
public BinaryPropertyDescriptor Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
340314
{
341315
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -407,12 +381,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
407381
writer.WriteNumberValue(IgnoreAboveValue.Value);
408382
}
409383

410-
if (LocalMetadataValue is not null)
411-
{
412-
writer.WritePropertyName("local_metadata");
413-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
414-
}
415-
416384
if (MetaValue is not null)
417385
{
418386
writer.WritePropertyName("meta");
@@ -443,5 +411,5 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
443411
}
444412

445413
BinaryProperty IBuildableDescriptor<BinaryProperty>.Build() => new()
446-
{ CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
414+
{ CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Meta = MetaValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
447415
}

src/Elastic.Clients.Elasticsearch/_Generated/Types/Mapping/BooleanProperty.g.cs

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ public sealed partial class BooleanProperty : IProperty
5959
[JsonPropertyName("index")]
6060
public bool? Index { get; set; }
6161

62-
[JsonInclude]
63-
[JsonPropertyName("local_metadata")]
64-
public Dictionary<string, object>? LocalMetadata { get; set; }
65-
6662
[JsonInclude]
6763
[JsonPropertyName("meta")]
6864
public Dictionary<string, string>? Meta { get; set; }
@@ -115,8 +111,6 @@ public BooleanPropertyDescriptor() : base()
115111

116112
private bool? IndexValue { get; set; }
117113

118-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
119-
120114
private Dictionary<string, string>? MetaValue { get; set; }
121115

122116
private bool? NullValueValue { get; set; }
@@ -207,12 +201,6 @@ public BooleanPropertyDescriptor<TDocument> Index(bool? index = true)
207201
return Self;
208202
}
209203

210-
public BooleanPropertyDescriptor<TDocument> LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
211-
{
212-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
213-
return Self;
214-
}
215-
216204
public BooleanPropertyDescriptor<TDocument> Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
217205
{
218206
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -318,12 +306,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
318306
writer.WriteBooleanValue(IndexValue.Value);
319307
}
320308

321-
if (LocalMetadataValue is not null)
322-
{
323-
writer.WritePropertyName("local_metadata");
324-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
325-
}
326-
327309
if (MetaValue is not null)
328310
{
329311
writer.WritePropertyName("meta");
@@ -384,7 +366,7 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
384366
}
385367

386368
BooleanProperty IBuildableDescriptor<BooleanProperty>.Build() => new()
387-
{ Boost = BoostValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fielddata = BuildFielddata(), Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Index = IndexValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, NullValue = NullValueValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
369+
{ Boost = BoostValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fielddata = BuildFielddata(), Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Index = IndexValue, Meta = MetaValue, NullValue = NullValueValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
388370
}
389371

390372
public sealed partial class BooleanPropertyDescriptor : SerializableDescriptor<BooleanPropertyDescriptor>, IBuildableDescriptor<BooleanProperty>
@@ -414,8 +396,6 @@ public BooleanPropertyDescriptor() : base()
414396

415397
private bool? IndexValue { get; set; }
416398

417-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
418-
419399
private Dictionary<string, string>? MetaValue { get; set; }
420400

421401
private bool? NullValueValue { get; set; }
@@ -506,12 +486,6 @@ public BooleanPropertyDescriptor Index(bool? index = true)
506486
return Self;
507487
}
508488

509-
public BooleanPropertyDescriptor LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
510-
{
511-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
512-
return Self;
513-
}
514-
515489
public BooleanPropertyDescriptor Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
516490
{
517491
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -617,12 +591,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
617591
writer.WriteBooleanValue(IndexValue.Value);
618592
}
619593

620-
if (LocalMetadataValue is not null)
621-
{
622-
writer.WritePropertyName("local_metadata");
623-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
624-
}
625-
626594
if (MetaValue is not null)
627595
{
628596
writer.WritePropertyName("meta");
@@ -683,5 +651,5 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
683651
}
684652

685653
BooleanProperty IBuildableDescriptor<BooleanProperty>.Build() => new()
686-
{ Boost = BoostValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fielddata = BuildFielddata(), Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Index = IndexValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, NullValue = NullValueValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
654+
{ Boost = BoostValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fielddata = BuildFielddata(), Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, Index = IndexValue, Meta = MetaValue, NullValue = NullValueValue, Properties = PropertiesValue, Similarity = SimilarityValue, Store = StoreValue };
687655
}

src/Elastic.Clients.Elasticsearch/_Generated/Types/Mapping/ByteNumberProperty.g.cs

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ public sealed partial class ByteNumberProperty : IProperty
6363
[JsonPropertyName("index")]
6464
public bool? Index { get; set; }
6565

66-
[JsonInclude]
67-
[JsonPropertyName("local_metadata")]
68-
public Dictionary<string, object>? LocalMetadata { get; set; }
69-
7066
[JsonInclude]
7167
[JsonPropertyName("meta")]
7268
public Dictionary<string, string>? Meta { get; set; }
@@ -133,8 +129,6 @@ public ByteNumberPropertyDescriptor() : base()
133129

134130
private bool? IndexValue { get; set; }
135131

136-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
137-
138132
private Dictionary<string, string>? MetaValue { get; set; }
139133

140134
private double? NullValueValue { get; set; }
@@ -221,12 +215,6 @@ public ByteNumberPropertyDescriptor<TDocument> Index(bool? index = true)
221215
return Self;
222216
}
223217

224-
public ByteNumberPropertyDescriptor<TDocument> LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
225-
{
226-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
227-
return Self;
228-
}
229-
230218
public ByteNumberPropertyDescriptor<TDocument> Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
231219
{
232220
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -352,12 +340,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
352340
writer.WriteBooleanValue(IndexValue.Value);
353341
}
354342

355-
if (LocalMetadataValue is not null)
356-
{
357-
writer.WritePropertyName("local_metadata");
358-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
359-
}
360-
361343
if (MetaValue is not null)
362344
{
363345
writer.WritePropertyName("meta");
@@ -418,7 +400,7 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
418400
}
419401

420402
ByteNumberProperty IBuildableDescriptor<ByteNumberProperty>.Build() => new()
421-
{ Boost = BoostValue, Coerce = CoerceValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, IgnoreMalformed = IgnoreMalformedValue, Index = IndexValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, NullValue = NullValueValue, OnScriptError = OnScriptErrorValue, Properties = PropertiesValue, Script = ScriptValue, Similarity = SimilarityValue, Store = StoreValue, TimeSeriesDimension = TimeSeriesDimensionValue, TimeSeriesMetric = TimeSeriesMetricValue };
403+
{ Boost = BoostValue, Coerce = CoerceValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, IgnoreMalformed = IgnoreMalformedValue, Index = IndexValue, Meta = MetaValue, NullValue = NullValueValue, OnScriptError = OnScriptErrorValue, Properties = PropertiesValue, Script = ScriptValue, Similarity = SimilarityValue, Store = StoreValue, TimeSeriesDimension = TimeSeriesDimensionValue, TimeSeriesMetric = TimeSeriesMetricValue };
422404
}
423405

424406
public sealed partial class ByteNumberPropertyDescriptor : SerializableDescriptor<ByteNumberPropertyDescriptor>, IBuildableDescriptor<ByteNumberProperty>
@@ -446,8 +428,6 @@ public ByteNumberPropertyDescriptor() : base()
446428

447429
private bool? IndexValue { get; set; }
448430

449-
private Dictionary<string, object>? LocalMetadataValue { get; set; }
450-
451431
private Dictionary<string, string>? MetaValue { get; set; }
452432

453433
private double? NullValueValue { get; set; }
@@ -534,12 +514,6 @@ public ByteNumberPropertyDescriptor Index(bool? index = true)
534514
return Self;
535515
}
536516

537-
public ByteNumberPropertyDescriptor LocalMetadata(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> selector)
538-
{
539-
LocalMetadataValue = selector?.Invoke(new FluentDictionary<string, object>());
540-
return Self;
541-
}
542-
543517
public ByteNumberPropertyDescriptor Meta(Func<FluentDictionary<string, string>, FluentDictionary<string, string>> selector)
544518
{
545519
MetaValue = selector?.Invoke(new FluentDictionary<string, string>());
@@ -665,12 +639,6 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
665639
writer.WriteBooleanValue(IndexValue.Value);
666640
}
667641

668-
if (LocalMetadataValue is not null)
669-
{
670-
writer.WritePropertyName("local_metadata");
671-
JsonSerializer.Serialize(writer, LocalMetadataValue, options);
672-
}
673-
674642
if (MetaValue is not null)
675643
{
676644
writer.WritePropertyName("meta");
@@ -731,5 +699,5 @@ protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions o
731699
}
732700

733701
ByteNumberProperty IBuildableDescriptor<ByteNumberProperty>.Build() => new()
734-
{ Boost = BoostValue, Coerce = CoerceValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, IgnoreMalformed = IgnoreMalformedValue, Index = IndexValue, LocalMetadata = LocalMetadataValue, Meta = MetaValue, NullValue = NullValueValue, OnScriptError = OnScriptErrorValue, Properties = PropertiesValue, Script = ScriptValue, Similarity = SimilarityValue, Store = StoreValue, TimeSeriesDimension = TimeSeriesDimensionValue, TimeSeriesMetric = TimeSeriesMetricValue };
702+
{ Boost = BoostValue, Coerce = CoerceValue, CopyTo = CopyToValue, DocValues = DocValuesValue, Dynamic = DynamicValue, Fields = FieldsValue, IgnoreAbove = IgnoreAboveValue, IgnoreMalformed = IgnoreMalformedValue, Index = IndexValue, Meta = MetaValue, NullValue = NullValueValue, OnScriptError = OnScriptErrorValue, Properties = PropertiesValue, Script = ScriptValue, Similarity = SimilarityValue, Store = StoreValue, TimeSeriesDimension = TimeSeriesDimensionValue, TimeSeriesMetric = TimeSeriesMetricValue };
735703
}

0 commit comments

Comments
 (0)