func isManagedbyVCH(sess *session.Session, moref types.ManagedObjectReference) bool { var vm mo.VirtualMachine // current attributes we care about attrib := []string{"resourcePool"} // populate the vm properties ctx := context.Background() if err := sess.RetrieveOne(ctx, moref, attrib, &vm); err != nil { log.Errorf("Failed to query registered vm object %s: %s", moref.String(), err) return false } if *vm.ResourcePool != Config.ResourcePool.Reference() { log.Debugf("container vm %q does not belong to this VCH, ignoring", vm.Config.Name) return false } return true }