Skip to content

Commit 7899022

Browse files
authored
Generate code for ECS 8.11 (#365)
* Generate code for ECS 8.11 * ensure we override the templates field limit to 2500 * fix trailing semicolon on newline
1 parent 7c93454 commit 7899022

Some content is hidden

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

56 files changed

+66063
-362
lines changed

src/Elastic.CommonSchema/EcsDocument.Generated.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public partial class EcsDocument : BaseFieldSet
2828
{
2929

3030
/// <summary>
31-
/// Elastic Common Schema version 8.6.0
31+
/// Elastic Common Schema version 8.11.0
3232
/// </summary>
33-
public static string Version => "8.6.0";
33+
public static string Version => "8.11.0";
3434

3535
/// <summary>
3636
/// Container for additional metadata against this event.
@@ -144,6 +144,10 @@ public partial class EcsDocument : BaseFieldSet
144144
[JsonPropertyName("log"), DataMember(Name = "log")]
145145
public Log? Log { get; set; }
146146

147+
///<summary>macho</summary>
148+
[JsonPropertyName("macho"), DataMember(Name = "macho")]
149+
public Macho? Macho { get; set; }
150+
147151
///<summary>network</summary>
148152
[JsonPropertyName("network"), DataMember(Name = "network")]
149153
public Network? Network { get; set; }

src/Elastic.CommonSchema/Entities.Generated.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,13 @@ public class File : FileFieldSet {
308308
///</summary>
309309
[JsonPropertyName("elf"), DataMember(Name = "elf")]
310310
public Elf? Elf { get; set; }
311+
312+
///<summary>
313+
/// <para><c>file.macho</c></para>
314+
/// <example></example>
315+
///</summary>
316+
[JsonPropertyName("macho"), DataMember(Name = "macho")]
317+
public Macho? Macho { get; set; }
311318
}
312319

313320
///<inheritdoc cref="GeoFieldSet"/>
@@ -359,6 +366,10 @@ public class Interface : InterfaceFieldSet {
359366
public partial class Log : LogFieldSet {
360367
}
361368

369+
///<inheritdoc cref="MachoFieldSet"/>
370+
public class Macho : MachoFieldSet {
371+
}
372+
362373
///<inheritdoc cref="NetworkFieldSet"/>
363374
public class Network : NetworkFieldSet {
364375

@@ -474,6 +485,13 @@ public class Process : ProcessFieldSet {
474485
[JsonPropertyName("elf"), DataMember(Name = "elf")]
475486
public Elf? Elf { get; set; }
476487

488+
///<summary>
489+
/// <para><c>process.macho</c></para>
490+
/// <example></example>
491+
///</summary>
492+
[JsonPropertyName("macho"), DataMember(Name = "macho")]
493+
public Macho? Macho { get; set; }
494+
477495
///<summary>
478496
/// <para><c>process.entry_meta.source</c></para>
479497
/// <example></example>

src/Elastic.CommonSchema/FieldSets.Generated.cs

Lines changed: 370 additions & 42 deletions
Large diffs are not rendered by default.

src/Elastic.CommonSchema/IndexComponents.Generated.cs

Lines changed: 864 additions & 185 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)