Files
decort-golang-sdk/pkg/cloudapi/vgpu/ids.go
2026-06-19 17:37:20 +03:00

11 lines
210 B
Go

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
}