bootDiskSizeGb = $bootDiskSizeGb; } /** * @return int */ public function getBootDiskSizeGb() { return $this->bootDiskSizeGb; } /** * Type of the boot disk (default is "pd-ssd"). Valid values: "pd-ssd" * (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard * Disk Drive). * * @param string $bootDiskType */ public function setBootDiskType($bootDiskType) { $this->bootDiskType = $bootDiskType; } /** * @return string */ public function getBootDiskType() { return $this->bootDiskType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudMlV1DiskConfig::class, 'Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1DiskConfig');