args = $args; } /** * @return string */ public function getArgs() { return $this->args; } /** * @param string */ public function setCommand($command) { $this->command = $command; } /** * @return string */ public function getCommand() { return $this->command; } /** * @param int */ public function setTimeoutSeconds($timeoutSeconds) { $this->timeoutSeconds = $timeoutSeconds; } /** * @return int */ public function getTimeoutSeconds() { return $this->timeoutSeconds; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ShellCommand::class, 'Google_Service_WorkloadManager_ShellCommand');