dependencies = $dependencies; } /** * @return UpgradeDependency[] */ public function getDependencies() { return $this->dependencies; } /** * @param bool */ public function setHasDependencies($hasDependencies) { $this->hasDependencies = $hasDependencies; } /** * @return bool */ public function getHasDependencies() { return $this->hasDependencies; } /** * @param bool */ public function setIsInstalled($isInstalled) { $this->isInstalled = $isInstalled; } /** * @return bool */ public function getIsInstalled() { return $this->isInstalled; } /** * @param string */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VmwareVersionInfo::class, 'Google_Service_GKEOnPrem_VmwareVersionInfo');