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.
39472 39473 39474 39475 39476 |
# File 'lib/ovirtsdk4/types.rb', line 39472 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.
39481 39482 39483 39484 39485 |
# File 'lib/ovirtsdk4/types.rb', line 39481 def ==(other) super && @address == other.address && @external_host_provider == other.external_host_provider end |
#address ⇒ String
Returns the value of the address
attribute.
39342 39343 39344 |
# File 'lib/ovirtsdk4/types.rb', line 39342 def address @address end |
#address=(value) ⇒ Object
Sets the value of the address
attribute.
39351 39352 39353 |
# File 'lib/ovirtsdk4/types.rb', line 39351 def address=(value) @address = value end |
#comment ⇒ String
Returns the value of the comment
attribute.
39360 39361 39362 |
# File 'lib/ovirtsdk4/types.rb', line 39360 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
39369 39370 39371 |
# File 'lib/ovirtsdk4/types.rb', line 39369 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
39378 39379 39380 |
# File 'lib/ovirtsdk4/types.rb', line 39378 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
39387 39388 39389 |
# File 'lib/ovirtsdk4/types.rb', line 39387 def description=(value) @description = value end |
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the external_host_provider
attribute.
39396 39397 39398 |
# File 'lib/ovirtsdk4/types.rb', line 39396 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.
39409 39410 39411 39412 39413 39414 |
# File 'lib/ovirtsdk4/types.rb', line 39409 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.
39490 39491 39492 39493 39494 |
# File 'lib/ovirtsdk4/types.rb', line 39490 def hash super + @address.hash + @external_host_provider.hash end |
#id ⇒ String
Returns the value of the id
attribute.
39421 39422 39423 |
# File 'lib/ovirtsdk4/types.rb', line 39421 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
39430 39431 39432 |
# File 'lib/ovirtsdk4/types.rb', line 39430 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
39439 39440 39441 |
# File 'lib/ovirtsdk4/types.rb', line 39439 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
39448 39449 39450 |
# File 'lib/ovirtsdk4/types.rb', line 39448 def name=(value) @name = value end |