Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate code for ECS 8.11 #365

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/Elastic.CommonSchema/EcsDocument.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public partial class EcsDocument : BaseFieldSet
{

/// <summary>
/// Elastic Common Schema version 8.6.0
/// Elastic Common Schema version 8.11.0
/// </summary>
public static string Version => "8.6.0";
public static string Version => "8.11.0";

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

///<summary>macho</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }

///<summary>network</summary>
[JsonPropertyName("network"), DataMember(Name = "network")]
public Network? Network { get; set; }
Expand Down
18 changes: 18 additions & 0 deletions src/Elastic.CommonSchema/Entities.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,13 @@ public class File : FileFieldSet {
///</summary>
[JsonPropertyName("elf"), DataMember(Name = "elf")]
public Elf? Elf { get; set; }

///<summary>
/// <para><c>file.macho</c></para>
/// <example></example>
///</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }
}

///<inheritdoc cref="GeoFieldSet"/>
Expand Down Expand Up @@ -359,6 +366,10 @@ public class Interface : InterfaceFieldSet {
public partial class Log : LogFieldSet {
}

///<inheritdoc cref="MachoFieldSet"/>
public class Macho : MachoFieldSet {
}

///<inheritdoc cref="NetworkFieldSet"/>
public class Network : NetworkFieldSet {

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

///<summary>
/// <para><c>process.macho</c></para>
/// <example></example>
///</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }

///<summary>
/// <para><c>process.entry_meta.source</c></para>
/// <example></example>
Expand Down
412 changes: 370 additions & 42 deletions src/Elastic.CommonSchema/FieldSets.Generated.cs

Large diffs are not rendered by default.

1,049 changes: 864 additions & 185 deletions src/Elastic.CommonSchema/IndexComponents.Generated.cs

Large diffs are not rendered by default.

Loading
Loading