algorithm = $algorithm; } /** * @return string */ public function getAlgorithm() { return $this->algorithm; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPem($pem) { $this->pem = $pem; } /** * @return string */ public function getPem() { return $this->pem; } /** * @param string */ public function setPemCrc32c($pemCrc32c) { $this->pemCrc32c = $pemCrc32c; } /** * @return string */ public function getPemCrc32c() { return $this->pemCrc32c; } /** * @param string */ public function setProtectionLevel($protectionLevel) { $this->protectionLevel = $protectionLevel; } /** * @return string */ public function getProtectionLevel() { return $this->protectionLevel; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PublicKey::class, 'Google_Service_CloudKMS_PublicKey');