Class: Virtuozzo::SOAP::Drivers::Process::Exec
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Drivers::Process::Exec
- Defined in:
- lib/virtuozzo/soap/drivers/process/types.rb
Overview
http://www.swsoft.com/webservices/vzl/4.0.0/processmexec
status - SOAP::SOAPInt
output - SOAP::SOAPBase64
error - SOAP::SOAPBase64
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#output ⇒ Object
Returns the value of attribute output.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status = nil, output = nil, error = nil) ⇒ Exec
constructor
A new instance of Exec.
Constructor Details
#initialize(status = nil, output = nil, error = nil) ⇒ Exec
2687 2688 2689 2690 2691 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2687 def initialize(status = nil, output = nil, error = nil) @status = status @output = output @error = error end |
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error.
2685 2686 2687 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2685 def error @error end |
#output ⇒ Object
Returns the value of attribute output.
2684 2685 2686 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2684 def output @output end |
#status ⇒ Object
Returns the value of attribute status.
2683 2684 2685 |
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2683 def status @status end |