Skip to content

Commit

Permalink
fix(instance): volume_total_size should be a uint64 (#1436)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Oct 18, 2022
1 parent 2508d84 commit 9a8efc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/instance/v1/instance_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -926,9 +926,9 @@ type Dashboard struct {

VolumesBSSDCount uint32 `json:"volumes_b_ssd_count"`

VolumesLSSDTotalSize uint32 `json:"volumes_l_ssd_total_size"`
VolumesLSSDTotalSize scw.Size `json:"volumes_l_ssd_total_size"`

VolumesBSSDTotalSize uint32 `json:"volumes_b_ssd_total_size"`
VolumesBSSDTotalSize scw.Size `json:"volumes_b_ssd_total_size"`

PrivateNicsCount uint32 `json:"private_nics_count"`

Expand Down

0 comments on commit 9a8efc6

Please sign in to comment.