algorithm = $algorithm; } public function getAlgorithm() { return $this->algorithm; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setPem($pem) { $this->pem = $pem; } public function getPem() { return $this->pem; } public function setPemCrc32c($pemCrc32c) { $this->pemCrc32c = $pemCrc32c; } public function getPemCrc32c() { return $this->pemCrc32c; } public function setProtectionLevel($protectionLevel) { $this->protectionLevel = $protectionLevel; } 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');