customGpuDriverPath = $customGpuDriverPath; } /** * @return string */ public function getCustomGpuDriverPath() { return $this->customGpuDriverPath; } /** * Optional. Whether the end user authorizes Google Cloud to install GPU * driver on this VM instance. If this field is empty or set to false, the GPU * driver won't be installed. Only applicable to instances with GPUs. * * @param bool $enableGpuDriver */ public function setEnableGpuDriver($enableGpuDriver) { $this->enableGpuDriver = $enableGpuDriver; } /** * @return bool */ public function getEnableGpuDriver() { return $this->enableGpuDriver; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GPUDriverConfig::class, 'Google_Service_AIPlatformNotebooks_GPUDriverConfig');