Class: OvirtSDK4::Image

Inherits:
Identified 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 = {}) ⇒ Image

Creates a new instance of the OvirtSDK4::Image 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):

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :id (String)

    The value of attribute id.

  • :name (String)

    The value of attribute name.

  • :size (Integer)

    The value of attribute size.

  • :storage_domain (StorageDomain, Hash)

    The value of attribute storage_domain.

  • :type (ImageFileType)

    The value of attribute type.



5774
5775
5776
5777
5778
5779
# File 'lib/ovirtsdk4/types.rb', line 5774

def initialize(opts = {})
  super(opts)
  self.size = opts[:size]
  self.storage_domain = opts[:storage_domain]
  self.type = opts[:type]
end

Instance Method Details

#==(other) ⇒ Object

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



5784
5785
5786
5787
5788
5789
# File 'lib/ovirtsdk4/types.rb', line 5784

def ==(other)
  super &&
  @size == other.size &&
  @storage_domain == other.storage_domain &&
  @type == other.type
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


5624
5625
5626
# File 'lib/ovirtsdk4/types.rb', line 5624

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


5633
5634
5635
# File 'lib/ovirtsdk4/types.rb', line 5633

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


5642
5643
5644
# File 'lib/ovirtsdk4/types.rb', line 5642

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


5651
5652
5653
# File 'lib/ovirtsdk4/types.rb', line 5651

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



5794
5795
5796
5797
5798
5799
# File 'lib/ovirtsdk4/types.rb', line 5794

def hash
  super +
  @size.hash +
  @storage_domain.hash +
  @type.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


5660
5661
5662
# File 'lib/ovirtsdk4/types.rb', line 5660

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


5669
5670
5671
# File 'lib/ovirtsdk4/types.rb', line 5669

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


5678
5679
5680
# File 'lib/ovirtsdk4/types.rb', line 5678

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


5687
5688
5689
# File 'lib/ovirtsdk4/types.rb', line 5687

def name=(value)
  @name = value
end

#sizeInteger

Returns the value of the size attribute.

Returns:

  • (Integer)


5696
5697
5698
# File 'lib/ovirtsdk4/types.rb', line 5696

def size
  @size
end

#size=(value) ⇒ Object

Sets the value of the size attribute.

Parameters:

  • value (Integer)


5705
5706
5707
# File 'lib/ovirtsdk4/types.rb', line 5705

def size=(value)
  @size = value
end

#storage_domainStorageDomain

Returns the value of the storage_domain attribute.

Returns:



5714
5715
5716
# File 'lib/ovirtsdk4/types.rb', line 5714

def storage_domain
  @storage_domain
end

#storage_domain=(value) ⇒ Object

Sets the value of the storage_domain attribute.

The value parameter can be an instance of StorageDomain or a hash. If it is a hash then a new instance will be created passing the hash as the opts parameter to the constructor.

Parameters:



5727
5728
5729
5730
5731
5732
# File 'lib/ovirtsdk4/types.rb', line 5727

def storage_domain=(value)
  if value.is_a?(Hash)
    value = StorageDomain.new(value)
  end
  @storage_domain = value
end

#typeImageFileType

Returns the value of the type attribute.

Returns:



5739
5740
5741
# File 'lib/ovirtsdk4/types.rb', line 5739

def type
  @type
end

#type=(value) ⇒ Object

Sets the value of the type attribute.

Parameters:



5748
5749
5750
# File 'lib/ovirtsdk4/types.rb', line 5748

def type=(value)
  @type = value
end