lastStartTime = $lastStartTime; } /** * @return string */ public function getLastStartTime() { return $this->lastStartTime; } /** * [Output Only] The next time the scaling schedule is to become active. Note: * this is a timestamp when a schedule is planned to run, but the actual time * might be slightly different. The timestamp is in RFC3339 text format. * * @param string $nextStartTime */ public function setNextStartTime($nextStartTime) { $this->nextStartTime = $nextStartTime; } /** * @return string */ public function getNextStartTime() { return $this->nextStartTime; } /** * [Output Only] The current state of a scaling schedule. * * Accepted values: ACTIVE, DISABLED, OBSOLETE, READY * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScalingScheduleStatus::class, 'Google_Service_Compute_ScalingScheduleStatus');