Skip to content

Commit 4de2c90

Browse files
committed
Add missing ClusterStateInfo.cs
1 parent 6a87a52 commit 4de2c90

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Nest/Enums/ClusterStateInfo.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
3+
namespace Nest
4+
{
5+
[Flags]
6+
public enum ClusterStateInfo
7+
{
8+
All = 0,
9+
ExcludeNodes = 1 << 1,
10+
ExcludeRoutingTable = 1 << 2,
11+
ExcludeMetadata = 1 << 3,
12+
ExcludeBlocks = 1 << 4
13+
}
14+
}

0 commit comments

Comments
 (0)