ArchAstro. Types. ComputerExecResult
(archastro v0.2.0)
Copy Markdown
The result of executing a shell command on an agent's computer environment. Contains the captured output and the process exit code.
Summary
Types
@type t() :: %ArchAstro.Types.ComputerExecResult{ exit_code: integer() | ArchAstro.Unset.t(), output: String.t() | ArchAstro.Unset.t() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()