baseUrl = $baseUrl; } /** * @return string */ public function getBaseUrl() { return $this->baseUrl; } /** * The display name of the repository. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * URIs of GPG keys. * * @param string[] $gpgKeys */ public function setGpgKeys($gpgKeys) { $this->gpgKeys = $gpgKeys; } /** * @return string[] */ public function getGpgKeys() { return $this->gpgKeys; } /** * Required. A one word, unique name for this repository. This is the `repo * id` in the zypper config file and also the `display_name` if `display_name` * is omitted. This id is also used as the unique identifier when checking for * GuestPolicy conflicts. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OSPolicyResourceRepositoryResourceZypperRepository::class, 'Google_Service_OSConfig_OSPolicyResourceRepositoryResourceZypperRepository');