certificateStatus = $certificateStatus; } /** * @return self::CERTIFICATE_STATUS_* */ public function getCertificateStatus() { return $this->certificateStatus; } /** * Immutable. Credential id that will be used to register with trawler * * @param string $credentialId */ public function setCredentialId($credentialId) { $this->credentialId = $credentialId; } /** * @return string */ public function getCredentialId() { return $this->credentialId; } /** * Description of the certificate * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Required. Name of the certificate * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Output only. Auto generated primary key * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Input only. Raw client certificate which would be registered with trawler * * @param GoogleCloudIntegrationsV1alphaClientCertificate $rawCertificate */ public function setRawCertificate(GoogleCloudIntegrationsV1alphaClientCertificate $rawCertificate) { $this->rawCertificate = $rawCertificate; } /** * @return GoogleCloudIntegrationsV1alphaClientCertificate */ public function getRawCertificate() { return $this->rawCertificate; } /** * Immutable. Requestor ID to be used to register certificate with trawler * * @param string $requestorId */ public function setRequestorId($requestorId) { $this->requestorId = $requestorId; } /** * @return string */ public function getRequestorId() { return $this->requestorId; } /** * Output only. The timestamp after which certificate will expire * * @param string $validEndTime */ public function setValidEndTime($validEndTime) { $this->validEndTime = $validEndTime; } /** * @return string */ public function getValidEndTime() { return $this->validEndTime; } /** * Output only. The timestamp after which certificate will be valid * * @param string $validStartTime */ public function setValidStartTime($validStartTime) { $this->validStartTime = $validStartTime; } /** * @return string */ public function getValidStartTime() { return $this->validStartTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudIntegrationsV1alphaCertificate::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaCertificate');