createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * @param string */ public function setDagTimeout($dagTimeout) { $this->dagTimeout = $dagTimeout; } /** * @return string */ public function getDagTimeout() { return $this->dagTimeout; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param OrderedJob[] */ public function setJobs($jobs) { $this->jobs = $jobs; } /** * @return OrderedJob[] */ public function getJobs() { return $this->jobs; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param TemplateParameter[] */ public function setParameters($parameters) { $this->parameters = $parameters; } /** * @return TemplateParameter[] */ public function getParameters() { return $this->parameters; } /** * @param WorkflowTemplatePlacement */ public function setPlacement(WorkflowTemplatePlacement $placement) { $this->placement = $placement; } /** * @return WorkflowTemplatePlacement */ public function getPlacement() { return $this->placement; } /** * @param string */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * @param int */ public function setVersion($version) { $this->version = $version; } /** * @return int */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(WorkflowTemplate::class, 'Google_Service_Dataproc_WorkflowTemplate');