Class: Virtuozzo::SOAP::Types::Processm::ProcessesType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/processm.rb

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/typesprocessesType

run - SOAP::SOAPInt
zombie - SOAP::SOAPInt
sleep - SOAP::SOAPInt
uninterrupt - SOAP::SOAPInt
stopped - SOAP::SOAPInt
total - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(run = nil, zombie = nil, sleep = nil, uninterrupt = nil, stopped = nil, total = nil) ⇒ ProcessesType

Returns a new instance of ProcessesType.



836
837
838
839
840
841
842
843
# File 'lib/virtuozzo/soap/types/processm.rb', line 836

def initialize(run = nil, zombie = nil, sleep = nil, uninterrupt = nil, stopped = nil, total = nil)
  @run = run
  @zombie = zombie
  @sleep = sleep
  @uninterrupt = uninterrupt
  @stopped = stopped
  @total = total
end

Instance Attribute Details

#runObject

Returns the value of attribute run.



829
830
831
# File 'lib/virtuozzo/soap/types/processm.rb', line 829

def run
  @run
end

#sleepObject

Returns the value of attribute sleep.



831
832
833
# File 'lib/virtuozzo/soap/types/processm.rb', line 831

def sleep
  @sleep
end

#stoppedObject

Returns the value of attribute stopped.



833
834
835
# File 'lib/virtuozzo/soap/types/processm.rb', line 833

def stopped
  @stopped
end

#totalObject

Returns the value of attribute total.



834
835
836
# File 'lib/virtuozzo/soap/types/processm.rb', line 834

def total
  @total
end

#uninterruptObject

Returns the value of attribute uninterrupt.



832
833
834
# File 'lib/virtuozzo/soap/types/processm.rb', line 832

def uninterrupt
  @uninterrupt
end

#zombieObject

Returns the value of attribute zombie.



830
831
832
# File 'lib/virtuozzo/soap/types/processm.rb', line 830

def zombie
  @zombie
end