Class: RpsGetIoStatsReturn

Inherits:
Object
  • Object
show all
Defined in:
lib/ovhrb/manager/manager.rb

Overview

http://soapi.ovh.com/managerrpsGetIoStatsReturn

Constant Summary collapse

@@schema_type =
"rpsGetIoStatsReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["average", ["RpsGetIOStatsDetailStruct", XSD::QName.new(nil, "average")]], ["current", ["RpsGetIOStatsDetailStruct", XSD::QName.new(nil, "current")]], ["max", ["RpsGetIOStatsDetailStruct", XSD::QName.new(nil, "max")]], ["image", ["SOAP::SOAPString", XSD::QName.new(nil, "image")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(average = nil, current = nil, max = nil, image = nil) ⇒ RpsGetIoStatsReturn

Returns a new instance of RpsGetIoStatsReturn.



1775
1776
1777
1778
1779
1780
# File 'lib/ovhrb/manager/manager.rb', line 1775

def initialize(average = nil, current = nil, max = nil, image = nil)
  @average = average
  @current = current
  @max = max
  @image = image
end

Instance Attribute Details

#averageObject

Returns the value of attribute average.



1770
1771
1772
# File 'lib/ovhrb/manager/manager.rb', line 1770

def average
  @average
end

#currentObject

Returns the value of attribute current.



1771
1772
1773
# File 'lib/ovhrb/manager/manager.rb', line 1771

def current
  @current
end

#imageObject

Returns the value of attribute image.



1773
1774
1775
# File 'lib/ovhrb/manager/manager.rb', line 1773

def image
  @image
end

#maxObject

Returns the value of attribute max.



1772
1773
1774
# File 'lib/ovhrb/manager/manager.rb', line 1772

def max
  @max
end