Class: Virtuozzo::SOAP::Types::Processm::Exec

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/processm.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

Instance Method Summary collapse

Constructor Details

#initialize(status = nil, output = nil, error = nil) ⇒ Exec

Returns a new instance of Exec.



2689
2690
2691
2692
2693
# File 'lib/virtuozzo/soap/types/processm.rb', line 2689

def initialize(status = nil, output = nil, error = nil)
  @status = status
  @output = output
  @error = error
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



2687
2688
2689
# File 'lib/virtuozzo/soap/types/processm.rb', line 2687

def error
  @error
end

#outputObject

Returns the value of attribute output.



2686
2687
2688
# File 'lib/virtuozzo/soap/types/processm.rb', line 2686

def output
  @output
end

#statusObject

Returns the value of attribute status.



2685
2686
2687
# File 'lib/virtuozzo/soap/types/processm.rb', line 2685

def status
  @status
end