Class: OvirtSDK4::TemplateVersion
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#base_template ⇒ Template
Returns the value of the
base_template
attribute. -
#base_template=(value) ⇒ Object
Sets the value of the
base_template
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#initialize(opts = {}) ⇒ TemplateVersion
constructor
Creates a new instance of the TemplateVersion class.
-
#version_name ⇒ String
Returns the value of the
version_name
attribute. -
#version_name=(value) ⇒ Object
Sets the value of the
version_name
attribute. -
#version_number ⇒ Integer
Returns the value of the
version_number
attribute. -
#version_number=(value) ⇒ Object
Sets the value of the
version_number
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ TemplateVersion
Creates a new instance of the OvirtSDK4::TemplateVersion class.
23413 23414 23415 23416 23417 23418 |
# File 'lib/ovirtsdk4/types.rb', line 23413 def initialize(opts = {}) super(opts) self.base_template = opts[:base_template] self.version_name = opts[:version_name] self.version_number = opts[:version_number] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
23423 23424 23425 23426 23427 23428 |
# File 'lib/ovirtsdk4/types.rb', line 23423 def ==(other) super && @base_template == other.base_template && @version_name == other.version_name && @version_number == other.version_number end |
#base_template ⇒ Template
Returns the value of the base_template
attribute.
23343 23344 23345 |
# File 'lib/ovirtsdk4/types.rb', line 23343 def base_template @base_template end |
#base_template=(value) ⇒ Object
Sets the value of the base_template
attribute.
The value
parameter can be an instance of OvirtSDK4::Template 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.
23356 23357 23358 23359 23360 23361 |
# File 'lib/ovirtsdk4/types.rb', line 23356 def base_template=(value) if value.is_a?(Hash) value = Template.new(value) end @base_template = value end |
#hash ⇒ Object
Generates a hash value for this object.
23433 23434 23435 23436 23437 23438 |
# File 'lib/ovirtsdk4/types.rb', line 23433 def hash super + @base_template.hash + @version_name.hash + @version_number.hash end |
#version_name ⇒ String
Returns the value of the version_name
attribute.
23368 23369 23370 |
# File 'lib/ovirtsdk4/types.rb', line 23368 def version_name @version_name end |
#version_name=(value) ⇒ Object
Sets the value of the version_name
attribute.
23377 23378 23379 |
# File 'lib/ovirtsdk4/types.rb', line 23377 def version_name=(value) @version_name = value end |
#version_number ⇒ Integer
Returns the value of the version_number
attribute.
23386 23387 23388 |
# File 'lib/ovirtsdk4/types.rb', line 23386 def version_number @version_number end |
#version_number=(value) ⇒ Object
Sets the value of the version_number
attribute.
23395 23396 23397 |
# File 'lib/ovirtsdk4/types.rb', line 23395 def version_number=(value) @version_number = value end |