repository = $repository; } /** * @return string */ public function getRepository() { return $this->repository; } /** * Optional. The tag of the container image. If not specified, this defaults * to the latest tag. * * @param string $tag */ public function setTag($tag) { $this->tag = $tag; } /** * @return string */ public function getTag() { return $this->tag; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ContainerImage::class, 'Google_Service_AIPlatformNotebooks_ContainerImage');