pemCertificate = $pemCertificate; } /** * @return string */ public function getPemCertificate() { return $this->pemCertificate; } /** * Optional. Input only. The PEM-encoded private key of the leaf certificate. * * @param string $pemPrivateKey */ public function setPemPrivateKey($pemPrivateKey) { $this->pemPrivateKey = $pemPrivateKey; } /** * @return string */ public function getPemPrivateKey() { return $this->pemPrivateKey; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SelfManagedCertificate::class, 'Google_Service_CertificateManager_SelfManagedCertificate');