cpuCount = $cpuCount; } /** * @return int */ public function getCpuCount() { return $this->cpuCount; } /** * @param string */ public function setMemorySizeInBytes($memorySizeInBytes) { $this->memorySizeInBytes = $memorySizeInBytes; } /** * @return string */ public function getMemorySizeInBytes() { return $this->memorySizeInBytes; } /** * @param int */ public function setShardCount($shardCount) { $this->shardCount = $shardCount; } /** * @return int */ public function getShardCount() { return $this->shardCount; } public function setVcpuCount($vcpuCount) { $this->vcpuCount = $vcpuCount; } public function getVcpuCount() { return $this->vcpuCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MachineConfiguration::class, 'Google_Service_CloudRedis_MachineConfiguration');