configs = $configs; } /** * @return string[] */ public function getConfigs() { return $this->configs; } /** * @param SkaffoldGitSource */ public function setGit(SkaffoldGitSource $git) { $this->git = $git; } /** * @return SkaffoldGitSource */ public function getGit() { return $this->git; } /** * @param SkaffoldGCBRepoSource */ public function setGoogleCloudBuildRepo(SkaffoldGCBRepoSource $googleCloudBuildRepo) { $this->googleCloudBuildRepo = $googleCloudBuildRepo; } /** * @return SkaffoldGCBRepoSource */ public function getGoogleCloudBuildRepo() { return $this->googleCloudBuildRepo; } /** * @param SkaffoldGCSSource */ public function setGoogleCloudStorage(SkaffoldGCSSource $googleCloudStorage) { $this->googleCloudStorage = $googleCloudStorage; } /** * @return SkaffoldGCSSource */ public function getGoogleCloudStorage() { return $this->googleCloudStorage; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SkaffoldModules::class, 'Google_Service_CloudDeploy_SkaffoldModules');