Class: Bsdkrun::CommandResult
- Inherits:
-
Data
- Object
- Data
- Bsdkrun::CommandResult
- Defined in:
- lib/bsdkrun/types.rb
Overview
The outcome of a Client lifecycle mutation (+stopMachine+,
startMachine, removeMachines, updateMachine, commitMachine, ...).
A non-zero exit_code is a value to inspect, not necessarily a failure —
mirrors +daemon/src/graphql.rs+'s CommandResult.
Instance Attribute Summary collapse
- #exit_code ⇒ Integer readonly
- #stderr ⇒ String readonly
- #stdout ⇒ String readonly
Instance Attribute Details
#exit_code ⇒ Integer (readonly)
211 |
# File 'lib/bsdkrun/types.rb', line 211 CommandResult = Data.define(:exit_code, :stdout, :stderr) |
#stderr ⇒ String (readonly)
211 |
# File 'lib/bsdkrun/types.rb', line 211 CommandResult = Data.define(:exit_code, :stdout, :stderr) |
#stdout ⇒ String (readonly)
211 |
# File 'lib/bsdkrun/types.rb', line 211 CommandResult = Data.define(:exit_code, :stdout, :stderr) |