address = $address; } /** * @return string */ public function getAddress() { return $this->address; } /** * @param string */ public function setDiskUsed($diskUsed) { $this->diskUsed = $diskUsed; } /** * @return string */ public function getDiskUsed() { return $this->diskUsed; } /** * @param string */ public function setMemoryRemaining($memoryRemaining) { $this->memoryRemaining = $memoryRemaining; } /** * @return string */ public function getMemoryRemaining() { return $this->memoryRemaining; } /** * @param string */ public function setMemoryUsed($memoryUsed) { $this->memoryUsed = $memoryUsed; } /** * @return string */ public function getMemoryUsed() { return $this->memoryUsed; } /** * @param string */ public function setOffHeapMemoryRemaining($offHeapMemoryRemaining) { $this->offHeapMemoryRemaining = $offHeapMemoryRemaining; } /** * @return string */ public function getOffHeapMemoryRemaining() { return $this->offHeapMemoryRemaining; } /** * @param string */ public function setOffHeapMemoryUsed($offHeapMemoryUsed) { $this->offHeapMemoryUsed = $offHeapMemoryUsed; } /** * @return string */ public function getOffHeapMemoryUsed() { return $this->offHeapMemoryUsed; } /** * @param string */ public function setOnHeapMemoryRemaining($onHeapMemoryRemaining) { $this->onHeapMemoryRemaining = $onHeapMemoryRemaining; } /** * @return string */ public function getOnHeapMemoryRemaining() { return $this->onHeapMemoryRemaining; } /** * @param string */ public function setOnHeapMemoryUsed($onHeapMemoryUsed) { $this->onHeapMemoryUsed = $onHeapMemoryUsed; } /** * @return string */ public function getOnHeapMemoryUsed() { return $this->onHeapMemoryUsed; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RddDataDistribution::class, 'Google_Service_Dataproc_RddDataDistribution');