Class: OvirtSDK4::ExternalHost
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::ExternalHost
- 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. -
#address ⇒ String
Returns the value of the
address
attribute. -
#address=(value) ⇒ Object
Sets the value of the
address
attribute. -
#comment ⇒ String
Returns the value of the
comment
attribute. -
#comment=(value) ⇒ Object
Sets the value of the
comment
attribute. -
#description ⇒ String
Returns the value of the
description
attribute. -
#description=(value) ⇒ Object
Sets the value of the
description
attribute. -
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the
external_host_provider
attribute. -
#external_host_provider=(value) ⇒ Object
Sets the value of the
external_host_provider
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#initialize(opts = {}) ⇒ ExternalHost
constructor
Creates a new instance of the ExternalHost class.
-
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ ExternalHost
Creates a new instance of the OvirtSDK4::ExternalHost class.
40327 40328 40329 40330 40331 |
# File 'lib/ovirtsdk4/types.rb', line 40327 def initialize(opts = {}) super(opts) self.address = opts[:address] self.external_host_provider = opts[:external_host_provider] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
40336 40337 40338 40339 40340 |
# File 'lib/ovirtsdk4/types.rb', line 40336 def ==(other) super && @address == other.address && @external_host_provider == other.external_host_provider end |
#address ⇒ String
Returns the value of the address
attribute.
40197 40198 40199 |
# File 'lib/ovirtsdk4/types.rb', line 40197 def address @address end |
#address=(value) ⇒ Object
Sets the value of the address
attribute.
40206 40207 40208 |
# File 'lib/ovirtsdk4/types.rb', line 40206 def address=(value) @address = value end |
#comment ⇒ String
Returns the value of the comment
attribute.
40215 40216 40217 |
# File 'lib/ovirtsdk4/types.rb', line 40215 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
40224 40225 40226 |
# File 'lib/ovirtsdk4/types.rb', line 40224 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
40233 40234 40235 |
# File 'lib/ovirtsdk4/types.rb', line 40233 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
40242 40243 40244 |
# File 'lib/ovirtsdk4/types.rb', line 40242 def description=(value) @description = value end |
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the external_host_provider
attribute.
40251 40252 40253 |
# File 'lib/ovirtsdk4/types.rb', line 40251 def external_host_provider @external_host_provider end |
#external_host_provider=(value) ⇒ Object
Sets the value of the external_host_provider
attribute.
The value
parameter can be an instance of OvirtSDK4::ExternalHostProvider 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.
40264 40265 40266 40267 40268 40269 |
# File 'lib/ovirtsdk4/types.rb', line 40264 def external_host_provider=(value) if value.is_a?(Hash) value = ExternalHostProvider.new(value) end @external_host_provider = value end |
#hash ⇒ Object
Generates a hash value for this object.
40345 40346 40347 40348 40349 |
# File 'lib/ovirtsdk4/types.rb', line 40345 def hash super + @address.hash + @external_host_provider.hash end |
#id ⇒ String
Returns the value of the id
attribute.
40276 40277 40278 |
# File 'lib/ovirtsdk4/types.rb', line 40276 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
40285 40286 40287 |
# File 'lib/ovirtsdk4/types.rb', line 40285 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
40294 40295 40296 |
# File 'lib/ovirtsdk4/types.rb', line 40294 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
40303 40304 40305 |
# File 'lib/ovirtsdk4/types.rb', line 40303 def name=(value) @name = value end |