description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setEndOffset($endOffset) { $this->endOffset = $endOffset; } /** * @return string */ public function getEndOffset() { return $this->endOffset; } public function setInputRowsPerSecond($inputRowsPerSecond) { $this->inputRowsPerSecond = $inputRowsPerSecond; } public function getInputRowsPerSecond() { return $this->inputRowsPerSecond; } /** * @param string */ public function setLatestOffset($latestOffset) { $this->latestOffset = $latestOffset; } /** * @return string */ public function getLatestOffset() { return $this->latestOffset; } /** * @param string[] */ public function setMetrics($metrics) { $this->metrics = $metrics; } /** * @return string[] */ public function getMetrics() { return $this->metrics; } /** * @param string */ public function setNumInputRows($numInputRows) { $this->numInputRows = $numInputRows; } /** * @return string */ public function getNumInputRows() { return $this->numInputRows; } public function setProcessedRowsPerSecond($processedRowsPerSecond) { $this->processedRowsPerSecond = $processedRowsPerSecond; } public function getProcessedRowsPerSecond() { return $this->processedRowsPerSecond; } /** * @param string */ public function setStartOffset($startOffset) { $this->startOffset = $startOffset; } /** * @return string */ public function getStartOffset() { return $this->startOffset; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SourceProgress::class, 'Google_Service_Dataproc_SourceProgress');