Skip to content

Commit 96e9e19

Browse files
committed
Revert Products.cs changes
1 parent 5abea00 commit 96e9e19

File tree

1 file changed

+2
-13
lines changed
  • src/Elastic.Documentation.Configuration/Builder

1 file changed

+2
-13
lines changed

src/Elastic.Documentation.Configuration/Builder/Products.cs

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,13 @@
66

77
namespace Elastic.Documentation.Configuration.Builder;
88

9-
public record Product(string Id, string DisplayName, HashSet<Product>? SubProduct = null);
9+
public record Product(string Id, string DisplayName);
1010

1111
public static class Products
1212
{
1313
public static FrozenSet<Product> All { get; } = [
1414
new("apm", "APM"),
15-
new("apm-agent", "APM Agent", [
16-
new Product("apm-agent-android", "APM Android Agent"),
17-
new Product("apm-agent-dotnet", "APM .NET Agent"),
18-
new Product("apm-agent-go", "APM Go Agent"),
19-
new Product("apm-agent-java", "APM Java Agent"),
20-
new Product("apm-agent-nodejs", "APM Node.js Agent"),
21-
new Product("apm-agent-php", "APM PHP Agent"),
22-
new Product("apm-agent-python", "APM Python Agent"),
23-
new Product("apm-agent-ruby", "APM Ruby Agent"),
24-
new Product("apm-agent-rum-js", "APM RUM JS Agent"),
25-
new Product("apm-agent-ios", "APM RUM React Agent"),
26-
]),
15+
new("apm-agent", "APM Agent"),
2716
new("auditbeat", "Auditbeat"),
2817
new("beats", "Beats"),
2918
new("cloud-control-ecctl", "Elastic Cloud Control ECCTL"),

0 commit comments

Comments
 (0)