apt = $apt; } /** * @return AptSettings */ public function getApt() { return $this->apt; } /** * @param GooSettings */ public function setGoo(GooSettings $goo) { $this->goo = $goo; } /** * @return GooSettings */ public function getGoo() { return $this->goo; } /** * @param bool */ public function setMigInstancesAllowed($migInstancesAllowed) { $this->migInstancesAllowed = $migInstancesAllowed; } /** * @return bool */ public function getMigInstancesAllowed() { return $this->migInstancesAllowed; } /** * @param ExecStep */ public function setPostStep(ExecStep $postStep) { $this->postStep = $postStep; } /** * @return ExecStep */ public function getPostStep() { return $this->postStep; } /** * @param ExecStep */ public function setPreStep(ExecStep $preStep) { $this->preStep = $preStep; } /** * @return ExecStep */ public function getPreStep() { return $this->preStep; } /** * @param string */ public function setRebootConfig($rebootConfig) { $this->rebootConfig = $rebootConfig; } /** * @return string */ public function getRebootConfig() { return $this->rebootConfig; } /** * @param WindowsUpdateSettings */ public function setWindowsUpdate(WindowsUpdateSettings $windowsUpdate) { $this->windowsUpdate = $windowsUpdate; } /** * @return WindowsUpdateSettings */ public function getWindowsUpdate() { return $this->windowsUpdate; } /** * @param YumSettings */ public function setYum(YumSettings $yum) { $this->yum = $yum; } /** * @return YumSettings */ public function getYum() { return $this->yum; } /** * @param ZypperSettings */ public function setZypper(ZypperSettings $zypper) { $this->zypper = $zypper; } /** * @return ZypperSettings */ public function getZypper() { return $this->zypper; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PatchConfig::class, 'Google_Service_OSConfig_PatchConfig');