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.



1530
1531
1532
1533
# File 'lib/ovirtsdk4/types.rb', line 1530

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.



1538
1539
1540
1541
# File 'lib/ovirtsdk4/types.rb', line 1538

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

#hashObject

Generates a hash value for this object.



1546
1547
1548
1549
# File 'lib/ovirtsdk4/types.rb', line 1546

def hash
  super +
  @statistics.hash
end

#statisticsArray<Statistic>

Returns the value of the statistics attribute.

Returns:



1499
1500
1501
# File 'lib/ovirtsdk4/types.rb', line 1499

def statistics
  @statistics
end

#statistics=(list) ⇒ Object

Sets the value of the statistics attribute.

Parameters:



1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
# File 'lib/ovirtsdk4/types.rb', line 1508

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