Skip to content

Commit

Permalink
Speculative fix for failures when comparing instances of V1Beta1DynaK…
Browse files Browse the repository at this point in the history
…ube.
  • Loading branch information
Silvenga committed Sep 20, 2022
1 parent 6b00a4e commit 28c134c
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,19 @@ public class DynaKubeSpec
public class OneAgentSpec
{
[JsonPropertyName("classicFullStack")]
public object? ClassicFullStack { get; set; }
public EmptyObject? ClassicFullStack { get; set; }

[JsonPropertyName("applicationMonitoring")]
public object? ApplicationMonitoring { get; set; }
public EmptyObject? ApplicationMonitoring { get; set; }

[JsonPropertyName("hostMonitoring")]
public object? HostMonitoring { get; set; }
public EmptyObject? HostMonitoring { get; set; }

[JsonPropertyName("cloudNativeFullStack")]
public object? CloudNativeFullStack { get; set; }
public EmptyObject? CloudNativeFullStack { get; set; }
}

public class EmptyObject
{
}
}

0 comments on commit 28c134c

Please sign in to comment.