description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param DockerRepository */ public function setDockerRepository(DockerRepository $dockerRepository) { $this->dockerRepository = $dockerRepository; } /** * @return DockerRepository */ public function getDockerRepository() { return $this->dockerRepository; } /** * @param MavenRepository */ public function setMavenRepository(MavenRepository $mavenRepository) { $this->mavenRepository = $mavenRepository; } /** * @return MavenRepository */ public function getMavenRepository() { return $this->mavenRepository; } /** * @param NpmRepository */ public function setNpmRepository(NpmRepository $npmRepository) { $this->npmRepository = $npmRepository; } /** * @return NpmRepository */ public function getNpmRepository() { return $this->npmRepository; } /** * @param PythonRepository */ public function setPythonRepository(PythonRepository $pythonRepository) { $this->pythonRepository = $pythonRepository; } /** * @return PythonRepository */ public function getPythonRepository() { return $this->pythonRepository; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RemoteRepositoryConfig::class, 'Google_Service_ArtifactRegistry_RemoteRepositoryConfig');