family = $family; } /** * @return string */ public function getFamily() { return $this->family; } /** * Optional. Use VM image name to find the image. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Required. The name of the Google Cloud project that this VM image belongs * to. Format: `{project_id}` * * @param string $project */ public function setProject($project) { $this->project = $project; } /** * @return string */ public function getProject() { return $this->project; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VmImage::class, 'Google_Service_AIPlatformNotebooks_VmImage');