diskType = $diskType; } /** * @return string */ public function getDiskType() { return $this->diskType; } /** * @param bool */ public function setReadOnly($readOnly) { $this->readOnly = $readOnly; } /** * @return bool */ public function getReadOnly() { return $this->readOnly; } /** * @param string */ public function setSourceImage($sourceImage) { $this->sourceImage = $sourceImage; } /** * @return string */ public function getSourceImage() { return $this->sourceImage; } /** * @param string */ public function setSourceSnapshot($sourceSnapshot) { $this->sourceSnapshot = $sourceSnapshot; } /** * @return string */ public function getSourceSnapshot() { return $this->sourceSnapshot; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GcePersistentDisk::class, 'Google_Service_CloudWorkstations_GcePersistentDisk');