certificate = $certificate; } /** * @return string */ public function getCertificate() { return $this->certificate; } /** * @param string */ public function setPrivateKey($privateKey) { $this->privateKey = $privateKey; } /** * @return string */ public function getPrivateKey() { return $this->privateKey; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SslCertificateSelfManagedSslCertificate::class, 'Google_Service_Compute_SslCertificateSelfManagedSslCertificate');