averageIops = $averageIops; } /** * @return float */ public function getAverageIops() { return $this->averageIops; } /** * Optional. Average read IOPS sampled over a short window. Must be non- * negative. If both read and write are zero they are ignored. * * @param float $averageReadIops */ public function setAverageReadIops($averageReadIops) { $this->averageReadIops = $averageReadIops; } /** * @return float */ public function getAverageReadIops() { return $this->averageReadIops; } /** * Optional. Average write IOPS sampled over a short window. Must be non- * negative. If both read and write are zero they are ignored. * * @param float $averageWriteIops */ public function setAverageWriteIops($averageWriteIops) { $this->averageWriteIops = $averageWriteIops; } /** * @return float */ public function getAverageWriteIops() { return $this->averageWriteIops; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DiskUsageSample::class, 'Google_Service_MigrationCenterAPI_DiskUsageSample');