protected function _getObjectFromKind($kind)
 {
     if ($this->_config === null) {
         throw new AdapterException('Missing config object, it is required for mapping response to objects');
     }
     $version = $this->_config->getAPIVersion();
     $classToLoad = "\\DevStub\\KubernetesAPIClient\\Entity\\" . $version . "\\" . $kind;
     return new $classToLoad();
 }