action = $action; } /** * @return self::ACTION_* */ public function getAction() { return $this->action; } /** * Optional. The container image before this instance upgrade. * * @param string $containerImage */ public function setContainerImage($containerImage) { $this->containerImage = $containerImage; } /** * @return string */ public function getContainerImage() { return $this->containerImage; } /** * Immutable. The time that this instance upgrade history entry is created. * * @param string $createTime */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Optional. The framework of this notebook instance. * * @param string $framework */ public function setFramework($framework) { $this->framework = $framework; } /** * @return string */ public function getFramework() { return $this->framework; } /** * Optional. The snapshot of the boot disk of this notebook instance before * upgrade. * * @param string $snapshot */ public function setSnapshot($snapshot) { $this->snapshot = $snapshot; } /** * @return string */ public function getSnapshot() { return $this->snapshot; } /** * Output only. The state of this instance upgrade history entry. * * Accepted values: STATE_UNSPECIFIED, STARTED, SUCCEEDED, FAILED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Optional. Target VM Version, like m63. * * @param string $targetVersion */ public function setTargetVersion($targetVersion) { $this->targetVersion = $targetVersion; } /** * @return string */ public function getTargetVersion() { return $this->targetVersion; } /** * Optional. The version of the notebook instance before this upgrade. * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } /** * Optional. The VM image before this instance upgrade. * * @param string $vmImage */ public function setVmImage($vmImage) { $this->vmImage = $vmImage; } /** * @return string */ public function getVmImage() { return $this->vmImage; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UpgradeHistoryEntry::class, 'Google_Service_AIPlatformNotebooks_UpgradeHistoryEntry');