Class: Virtuozzo::SOAP::Types::Scheduler::StatsType

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



579
580
581
582
583
584
585
586
587
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 579

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.



571
572
573
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 571

def avg
  @avg
end

#curObject

Returns the value of attribute cur.



575
576
577
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 575

def cur
  @cur
end

#hardObject

Returns the value of attribute hard.



577
578
579
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 577

def hard
  @hard
end

#maxObject

Returns the value of attribute max.



573
574
575
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 573

def max
  @max
end

#minObject

Returns the value of attribute min.



572
573
574
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 572

def min
  @min
end

#softObject

Returns the value of attribute soft.



576
577
578
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 576

def soft
  @soft
end

#totalObject

Returns the value of attribute total.



574
575
576
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 574

def total
  @total
end