currentNumWorkers = $currentNumWorkers; } /** * @return string */ public function getCurrentNumWorkers() { return $this->currentNumWorkers; } /** * @param StructuredMessage */ public function setDescription(StructuredMessage $description) { $this->description = $description; } /** * @return StructuredMessage */ public function getDescription() { return $this->description; } /** * @param string */ public function setEventType($eventType) { $this->eventType = $eventType; } /** * @return string */ public function getEventType() { return $this->eventType; } /** * @param string */ public function setTargetNumWorkers($targetNumWorkers) { $this->targetNumWorkers = $targetNumWorkers; } /** * @return string */ public function getTargetNumWorkers() { return $this->targetNumWorkers; } /** * @param string */ public function setTime($time) { $this->time = $time; } /** * @return string */ public function getTime() { return $this->time; } /** * @param string */ public function setWorkerPool($workerPool) { $this->workerPool = $workerPool; } /** * @return string */ public function getWorkerPool() { return $this->workerPool; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AutoscalingEvent::class, 'Google_Service_Dataflow_AutoscalingEvent');