Class: Virtuozzo::SOAP::Types::PerfMon::UsageType
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Types::PerfMon::UsageType
- Defined in:
- lib/virtuozzo/soap/types/perf_mon.rb
Overview
http://www.swsoft.com/webservices/vzl/4.0.0/typesusageType
total - SOAP::SOAPLong
used - SOAP::SOAPLong
free - SOAP::SOAPLong
Instance Attribute Summary collapse
-
#free ⇒ Object
Returns the value of attribute free.
-
#total ⇒ Object
Returns the value of attribute total.
-
#used ⇒ Object
Returns the value of attribute used.
Instance Method Summary collapse
-
#initialize(total = nil, used = nil, free = nil) ⇒ UsageType
constructor
A new instance of UsageType.
Constructor Details
#initialize(total = nil, used = nil, free = nil) ⇒ UsageType
Returns a new instance of UsageType.
810 811 812 813 814 |
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 810 def initialize(total = nil, used = nil, free = nil) @total = total @used = used @free = free end |
Instance Attribute Details
#free ⇒ Object
Returns the value of attribute free.
808 809 810 |
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 808 def free @free end |
#total ⇒ Object
Returns the value of attribute total.
806 807 808 |
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 806 def total @total end |
#used ⇒ Object
Returns the value of attribute used.
807 808 809 |
# File 'lib/virtuozzo/soap/types/perf_mon.rb', line 807 def used @used end |