image = $image; } /** * @return string */ public function getImage() { return $this->image; } /** * Optional. Image tag to use. This will generally be the full path to an * image, such as "gcr.io/my-project/busybox:1.2.3" or "gcr.io/my- * project/busybox@sha256:abc123". * * @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(BuildArtifact::class, 'Google_Service_CloudDeploy_BuildArtifact');