error = $error; } /** * @return string */ public function getError() { return $this->error; } /** * The unique ID of the command execution for polling. * * @param string $executionId */ public function setExecutionId($executionId) { $this->executionId = $executionId; } /** * @return string */ public function getExecutionId() { return $this->executionId; } /** * 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(ExecuteAirflowCommandResponse::class, 'Google_Service_CloudComposer_ExecuteAirflowCommandResponse');