executionId = $executionId; } /** * @return string */ public function getExecutionId() { return $this->executionId; } /** * Line number from which new logs should be fetched. * * @param int $nextLineNumber */ public function setNextLineNumber($nextLineNumber) { $this->nextLineNumber = $nextLineNumber; } /** * @return int */ public function getNextLineNumber() { return $this->nextLineNumber; } /** * The name of the pod where the command is executed. * * @param string $pod */ public function setPod($pod) { $this->pod = $pod; } /** * @return string */ public function getPod() { return $this->pod; } /** * The namespace of the pod where the command is executed. * * @param string $podNamespace */ public function setPodNamespace($podNamespace) { $this->podNamespace = $podNamespace; } /** * @return string */ public function getPodNamespace() { return $this->podNamespace; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PollAirflowCommandRequest::class, 'Google_Service_CloudComposer_PollAirflowCommandRequest');