algorithm = $algorithm; } /** * @return string */ public function getAlgorithm() { return $this->algorithm; } /** * @param string */ public function setCryptoKeyVersion($cryptoKeyVersion) { $this->cryptoKeyVersion = $cryptoKeyVersion; } /** * @return string */ public function getCryptoKeyVersion() { return $this->cryptoKeyVersion; } /** * @param string */ public function setImportJob($importJob) { $this->importJob = $importJob; } /** * @return string */ public function getImportJob() { return $this->importJob; } /** * @param string */ public function setRsaAesWrappedKey($rsaAesWrappedKey) { $this->rsaAesWrappedKey = $rsaAesWrappedKey; } /** * @return string */ public function getRsaAesWrappedKey() { return $this->rsaAesWrappedKey; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ImportCryptoKeyVersionRequest::class, 'Google_Service_CloudKMS_ImportCryptoKeyVersionRequest');