Class: Virtuozzo::SOAP::Types::OpLog::StatsType

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

Overview

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

avg - SOAP::SOAPLong
min - SOAP::SOAPLong
max - SOAP::SOAPLong
total - SOAP::SOAPLong
cur - SOAP::SOAPLong
soft - SOAP::SOAPLong
hard - SOAP::SOAPLong

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil) ⇒ StatsType

Returns a new instance of StatsType.



428
429
430
431
432
433
434
435
436
# File 'lib/virtuozzo/soap/types/op_log.rb', line 428

def initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil)
  @avg = avg
  @min = min
  @max = max
  @total = total
  @cur = cur
  @soft = soft
  @hard = hard
end

Instance Attribute Details

#avgObject

Returns the value of attribute avg.



420
421
422
# File 'lib/virtuozzo/soap/types/op_log.rb', line 420

def avg
  @avg
end

#curObject

Returns the value of attribute cur.



424
425
426
# File 'lib/virtuozzo/soap/types/op_log.rb', line 424

def cur
  @cur
end

#hardObject

Returns the value of attribute hard.



426
427
428
# File 'lib/virtuozzo/soap/types/op_log.rb', line 426

def hard
  @hard
end

#maxObject

Returns the value of attribute max.



422
423
424
# File 'lib/virtuozzo/soap/types/op_log.rb', line 422

def max
  @max
end

#minObject

Returns the value of attribute min.



421
422
423
# File 'lib/virtuozzo/soap/types/op_log.rb', line 421

def min
  @min
end

#softObject

Returns the value of attribute soft.



425
426
427
# File 'lib/virtuozzo/soap/types/op_log.rb', line 425

def soft
  @soft
end

#totalObject

Returns the value of attribute total.



423
424
425
# File 'lib/virtuozzo/soap/types/op_log.rb', line 423

def total
  @total
end