clusterName = $clusterName; } /** * @return string */ public function getClusterName() { return $this->clusterName; } /** * @param ClusterConfig */ public function setConfig(ClusterConfig $config) { $this->config = $config; } /** * @return ClusterConfig */ public function getConfig() { return $this->config; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ManagedCluster::class, 'Google_Service_Dataproc_ManagedCluster');