Files
decort-golang-sdk/pkg/sdn/logicalports/ids.go
2025-11-14 17:38:59 +03:00

11 lines
233 B
Go

package logicalports
// IDs gets array of IDs from LogicalPortList struct
func (pl LogicalPortsList) IDs() []string {
res := make([]string, 0, len(pl.Ports))
for _, c := range pl.Ports {
res = append(res, c.ID)
}
return res
}