Files
dynamix-golang-sdk/pkg/cloudapi/vgpu/ids.go

11 lines
210 B
Go
Raw Normal View History

2026-05-08 14:18:23 +03:00
package vgpu
// IDs gets array of VGPU IDs from ListVGPU struct
func (l ListVGPU) IDs() []uint64 {
res := make([]uint64, 0, len(l.Data))
for _, v := range l.Data {
res = append(res, v.ID)
}
return res
}