desc = $desc; } /** * @return string */ public function getDesc() { return $this->desc; } /** * @param SqlPlanMetric[] */ public function setMetrics($metrics) { $this->metrics = $metrics; } /** * @return SqlPlanMetric[] */ public function getMetrics() { return $this->metrics; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param SparkPlanGraphNodeWrapper[] */ public function setNodes($nodes) { $this->nodes = $nodes; } /** * @return SparkPlanGraphNodeWrapper[] */ public function getNodes() { return $this->nodes; } /** * @param string */ public function setSparkPlanGraphClusterId($sparkPlanGraphClusterId) { $this->sparkPlanGraphClusterId = $sparkPlanGraphClusterId; } /** * @return string */ public function getSparkPlanGraphClusterId() { return $this->sparkPlanGraphClusterId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SparkPlanGraphCluster::class, 'Google_Service_Dataproc_SparkPlanGraphCluster');