message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * Optional. The status of the secret. * * Accepted values: STATUS_UNSPECIFIED, UNKNOWN, VALID, INVALID * * @param self::STATUS_* $status */ public function setStatus($status) { $this->status = $status; } /** * @return self::STATUS_* */ public function getStatus() { return $this->status; } /** * Optional. The time the secret status was last updated. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SecretStatus::class, 'Google_Service_OnDemandScanning_SecretStatus');