count = $count; } /** * @return int */ public function getCount() { return $this->count; } /** * Optional. CPU request and limit for a single Airflow DAG processor replica. * * @param float $cpu */ public function setCpu($cpu) { $this->cpu = $cpu; } /** * @return float */ public function getCpu() { return $this->cpu; } /** * Optional. Memory (GB) request and limit for a single Airflow DAG processor * replica. * * @param float $memoryGb */ public function setMemoryGb($memoryGb) { $this->memoryGb = $memoryGb; } /** * @return float */ public function getMemoryGb() { return $this->memoryGb; } /** * Optional. Storage (GB) request and limit for a single Airflow DAG processor * replica. * * @param float $storageGb */ 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(DagProcessorResource::class, 'Google_Service_CloudComposer_DagProcessorResource');