Skip to content

Commit 96809fc

Browse files
committed
revise discovery data model to use long instead of uint for disk size
1 parent ad55987 commit 96809fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Scripts/Services/Discovery/v1/DataModels.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ public class DiskUsage
9898
/// <summary>
9999
/// Number of bytes used on the environment's disk capacity.
100100
/// </summary>
101-
public uint used_bytes { get; set; }
101+
public long used_bytes { get; set; }
102102
/// <summary>
103103
/// Total number of bytes available in the environment's disk capacity.
104104
/// </summary>
105-
public uint total_bytes { get; set; }
105+
public long total_bytes { get; set; }
106106
/// <summary>
107107
/// Amount of disk capacity used, in KB or GB format.
108108
/// </summary>
@@ -126,11 +126,11 @@ public class MemoryUsage
126126
/// <summary>
127127
/// Number of bytes used in the environment's memory capacity.
128128
/// </summary>
129-
public uint used_bytes { get; set; }
129+
public long used_bytes { get; set; }
130130
/// <summary>
131131
/// Total number of bytes available in the environment's memory capacity.
132132
/// </summary>
133-
public uint total_bytes { get; set; }
133+
public long total_bytes { get; set; }
134134
/// <summary>
135135
/// Amount of memory capacity used, in KB or GB format.
136136
/// </summary>

0 commit comments

Comments
 (0)