func (l nodeResponseList) Less(i, j int) bool { return natsort.Compare(l[i].Name, l[j].Name) }
func (l searchResponseList) Less(i, j int) bool { return natsort.Compare(l[i].hostResponse.Name, l[j].hostResponse.Name) }
func (r ItemListResponse) Less(i, j int) bool { return natsort.Compare(r[i].Name, r[j].Name) }
func (r StringListResponse) Less(i, j int) bool { return natsort.Compare(r[i], r[j]) }
func (r ScaleValueListResponse) Less(i, j int) bool { return natsort.Compare(r[i].Name, r[j].Name) }
func (r CollectionListResponse) Less(i, j int) bool { return natsort.Compare(r[i].Name, r[j].Name) }