Class: OvirtSDK4::BlockStatistic

Inherits:
Struct
  • Object
show all
Defined in:
lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb

Instance Method Summary collapse

Methods included from Type

#dig, #href, #href=

Constructor Details

#initialize(opts = {}) ⇒ BlockStatistic

Creates a new instance of the OvirtSDK4::BlockStatistic class.

Parameters:

  • opts (Hash) (defaults to: {})

    A hash containing the attributes of the object. The keys of the hash should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.

Options Hash (opts):

  • :statistics (Array<Statistic>, Array<Hash>)

    The values of attribute statistics.



1485
1486
1487
1488
# File 'lib/ovirtsdk4/types.rb', line 1485

def initialize(opts = {})
  super(opts)
  self.statistics = opts[:statistics]
end

Instance Method Details

#==(other) ⇒ Object

Returns true if self and other have the same attributes and values.



1493
1494
1495
1496
# File 'lib/ovirtsdk4/types.rb', line 1493

def ==(other)
  super &&
  @statistics == other.statistics
end

#hashObject

Generates a hash value for this object.



1501
1502
1503
1504
# File 'lib/ovirtsdk4/types.rb', line 1501

def hash
  super +
  @statistics.hash
end

#statisticsArray<Statistic>

Returns the value of the statistics attribute.

Returns:



1454
1455
1456
# File 'lib/ovirtsdk4/types.rb', line 1454

def statistics
  @statistics
end

#statistics=(list) ⇒ Object

Sets the value of the statistics attribute.

Parameters:



1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
# File 'lib/ovirtsdk4/types.rb', line 1463

def statistics=(list)
  if list.class == Array
    list = List.new(list)
    list.each_with_index do |value, index|
      if value.is_a?(Hash)
        list[index] = Statistic.new(value)
      end
    end
  end
  @statistics = list
end