func (n *NodeEntry) DeviceDelete(id string) { n.Devices = utils.SortedStringsDelete(n.Devices, id) }
func (v *VolumeEntry) BrickDelete(id string) { v.Bricks = utils.SortedStringsDelete(v.Bricks, id) }
func (c *ClusterEntry) VolumeDelete(id string) { c.Info.Volumes = utils.SortedStringsDelete(c.Info.Volumes, id) }
func (c *ClusterEntry) NodeDelete(id string) { c.Info.Nodes = utils.SortedStringsDelete(c.Info.Nodes, id) }
func (d *DeviceEntry) BrickDelete(id string) { d.Bricks = utils.SortedStringsDelete(d.Bricks, id) }