count = $count; } /** * @return int */ public function getCount() { return $this->count; } /** * @param float */ public function setCpu($cpu) { $this->cpu = $cpu; } /** * @return float */ public function getCpu() { return $this->cpu; } /** * @param float */ public function setMemoryGb($memoryGb) { $this->memoryGb = $memoryGb; } /** * @return float */ public function getMemoryGb() { return $this->memoryGb; } /** * @param float */ public function setStorageGb($storageGb) { $this->storageGb = $storageGb; } /** * @return float */ public function getStorageGb() { return $this->storageGb; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SchedulerResource::class, 'Google_Service_CloudComposer_SchedulerResource');