completionPercent = $completionPercent; } /** * @return int */ public function getCompletionPercent() { return $this->completionPercent; } /** * Output only. Message relating to the progression of a metadata job. * * @param string $message */ public function setMessage($message) { $this->message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * Output only. State of the metadata job. * * Accepted values: STATE_UNSPECIFIED, QUEUED, RUNNING, CANCELING, CANCELED, * SUCCEEDED, FAILED, SUCCEEDED_WITH_ERRORS * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Output only. The time when the status was 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(GoogleCloudDataplexV1MetadataJobStatus::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1MetadataJobStatus');