Class: Veewee::Provider::Core::Helper::SshResult
- Inherits:
-
Object
- Object
- Veewee::Provider::Core::Helper::SshResult
- Defined in:
- lib/veewee/provider/core/helper/ssh.rb
Instance Attribute Summary (collapse)
-
- (Object) status
Returns the value of attribute status.
-
- (Object) stderr
Returns the value of attribute stderr.
-
- (Object) stdout
Returns the value of attribute stdout.
Instance Method Summary (collapse)
-
- (SshResult) initialize(stdout, stderr, status)
constructor
A new instance of SshResult.
Constructor Details
- (SshResult) initialize(stdout, stderr, status)
A new instance of SshResult
11 12 13 14 15 |
# File 'lib/veewee/provider/core/helper/ssh.rb', line 11 def initialize(stdout,stderr,status) @stdout=stdout @stderr=stderr @status=status end |
Instance Attribute Details
- (Object) status
Returns the value of attribute status
9 10 11 |
# File 'lib/veewee/provider/core/helper/ssh.rb', line 9 def status @status end |
- (Object) stderr
Returns the value of attribute stderr
8 9 10 |
# File 'lib/veewee/provider/core/helper/ssh.rb', line 8 def stderr @stderr end |
- (Object) stdout
Returns the value of attribute stdout
7 8 9 |
# File 'lib/veewee/provider/core/helper/ssh.rb', line 7 def stdout @stdout end |