We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58bca4d commit c737df6Copy full SHA for c737df6
src/Nest/XPack/License/GetLicense/GetLicenseResponse.cs
@@ -36,6 +36,9 @@ public class LicenseInformation
36
[DataMember(Name ="max_nodes")]
37
public long MaxNodes { get; internal set; }
38
39
+ [DataMember(Name = "max_resource_units")]
40
+ public int? MaxResourceUnits { get; internal set; }
41
+
42
[DataMember(Name ="status")]
43
public LicenseStatus Status { get; internal set; }
44
src/Nest/XPack/License/GetLicense/LicenseType.cs
@@ -29,6 +29,9 @@ public enum LicenseType
29
Gold,
30
31
[EnumMember(Value = "platinum")]
32
- Platinum
+ Platinum,
33
34
+ [EnumMember(Value = "enterprise")]
35
+ Enterprise,
}
0 commit comments