caviumCerts = $caviumCerts; } /** * @return string[] */ public function getCaviumCerts() { return $this->caviumCerts; } /** * Google card certificate chain corresponding to the attestation. * * @param string[] $googleCardCerts */ public function setGoogleCardCerts($googleCardCerts) { $this->googleCardCerts = $googleCardCerts; } /** * @return string[] */ public function getGoogleCardCerts() { return $this->googleCardCerts; } /** * Google partition certificate chain corresponding to the attestation. * * @param string[] $googlePartitionCerts */ public function setGooglePartitionCerts($googlePartitionCerts) { $this->googlePartitionCerts = $googlePartitionCerts; } /** * @return string[] */ public function getGooglePartitionCerts() { return $this->googlePartitionCerts; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CertificateChains::class, 'Google_Service_CloudKMS_CertificateChains');