Skip to content

Commit 9a8efc6

Browse files
authored
fix(instance): volume_total_size should be a uint64 (#1436)
1 parent 2508d84 commit 9a8efc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/instance/v1/instance_sdk.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -926,9 +926,9 @@ type Dashboard struct {
926926

927927
VolumesBSSDCount uint32 `json:"volumes_b_ssd_count"`
928928

929-
VolumesLSSDTotalSize uint32 `json:"volumes_l_ssd_total_size"`
929+
VolumesLSSDTotalSize scw.Size `json:"volumes_l_ssd_total_size"`
930930

931-
VolumesBSSDTotalSize uint32 `json:"volumes_b_ssd_total_size"`
931+
VolumesBSSDTotalSize scw.Size `json:"volumes_b_ssd_total_size"`
932932

933933
PrivateNicsCount uint32 `json:"private_nics_count"`
934934

0 commit comments

Comments
 (0)