Class: Virtuozzo::SOAP::Types::PerfMon::ProcessesType

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



228
229
230
231
232
233
234
235
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 228

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.



221
222
223
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 221

def run
  @run
end

#sleepObject

Returns the value of attribute sleep.



223
224
225
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 223

def sleep
  @sleep
end

#stoppedObject

Returns the value of attribute stopped.



225
226
227
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 225

def stopped
  @stopped
end

#totalObject

Returns the value of attribute total.



226
227
228
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 226

def total
  @total
end

#uninterruptObject

Returns the value of attribute uninterrupt.



224
225
226
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 224

def uninterrupt
  @uninterrupt
end

#zombieObject

Returns the value of attribute zombie.



222
223
224
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 222

def zombie
  @zombie
end