blockName = $blockName; } /** * @return string */ public function getBlockName() { return $this->blockName; } /** * @param string */ public function setDiskUsed($diskUsed) { $this->diskUsed = $diskUsed; } /** * @return string */ public function getDiskUsed() { return $this->diskUsed; } /** * @param string[] */ public function setExecutors($executors) { $this->executors = $executors; } /** * @return string[] */ public function getExecutors() { return $this->executors; } /** * @param string */ public function setMemoryUsed($memoryUsed) { $this->memoryUsed = $memoryUsed; } /** * @return string */ public function getMemoryUsed() { return $this->memoryUsed; } /** * @param string */ public function setStorageLevel($storageLevel) { $this->storageLevel = $storageLevel; } /** * @return string */ public function getStorageLevel() { return $this->storageLevel; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RddPartitionInfo::class, 'Google_Service_Dataproc_RddPartitionInfo');