Skip to content

Commit 67545eb

Browse files
authored
feat(instance): set b_ssd volume type as deprecated (scaleway#2313)
1 parent 53c1e83 commit 67545eb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

api/instance/v1/instance_sdk.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,11 +1921,13 @@ type Dashboard struct {
19211921

19221922
VolumesLSSDCount uint32 `json:"volumes_l_ssd_count"`
19231923

1924-
VolumesBSSDCount uint32 `json:"volumes_b_ssd_count"`
1924+
// Deprecated
1925+
VolumesBSSDCount *uint32 `json:"volumes_b_ssd_count"`
19251926

19261927
VolumesLSSDTotalSize scw.Size `json:"volumes_l_ssd_total_size"`
19271928

1928-
VolumesBSSDTotalSize scw.Size `json:"volumes_b_ssd_total_size"`
1929+
// Deprecated
1930+
VolumesBSSDTotalSize *scw.Size `json:"volumes_b_ssd_total_size"`
19291931

19301932
PrivateNicsCount uint32 `json:"private_nics_count"`
19311933

0 commit comments

Comments
 (0)