Class: OvirtSDK4::ExternalNetworkProviderConfiguration
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::ExternalNetworkProviderConfiguration
- 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. -
#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_network_provider ⇒ ExternalProvider
Returns the value of the
external_network_provider
attribute. -
#external_network_provider=(value) ⇒ Object
Sets the value of the
external_network_provider
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#host ⇒ Host
Returns the value of the
host
attribute. -
#host=(value) ⇒ Object
Sets the value of the
host
attribute. -
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#initialize(opts = {}) ⇒ ExternalNetworkProviderConfiguration
constructor
Creates a new instance of the ExternalNetworkProviderConfiguration 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 = {}) ⇒ ExternalNetworkProviderConfiguration
Creates a new instance of the OvirtSDK4::ExternalNetworkProviderConfiguration class.
40729 40730 40731 40732 40733 |
# File 'lib/ovirtsdk4/types.rb', line 40729 def initialize(opts = {}) super(opts) self.external_network_provider = opts[:external_network_provider] self.host = opts[:host] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
40738 40739 40740 40741 40742 |
# File 'lib/ovirtsdk4/types.rb', line 40738 def ==(other) super && @external_network_provider == other.external_network_provider && @host == other.host end |
#comment ⇒ String
Returns the value of the comment
attribute.
40592 40593 40594 |
# File 'lib/ovirtsdk4/types.rb', line 40592 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
40601 40602 40603 |
# File 'lib/ovirtsdk4/types.rb', line 40601 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
40610 40611 40612 |
# File 'lib/ovirtsdk4/types.rb', line 40610 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
40619 40620 40621 |
# File 'lib/ovirtsdk4/types.rb', line 40619 def description=(value) @description = value end |
#external_network_provider ⇒ ExternalProvider
Returns the value of the external_network_provider
attribute.
40628 40629 40630 |
# File 'lib/ovirtsdk4/types.rb', line 40628 def external_network_provider @external_network_provider end |
#external_network_provider=(value) ⇒ Object
Sets the value of the external_network_provider
attribute.
The value
parameter can be an instance of OvirtSDK4::ExternalProvider 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.
40641 40642 40643 40644 40645 40646 |
# File 'lib/ovirtsdk4/types.rb', line 40641 def external_network_provider=(value) if value.is_a?(Hash) value = ExternalProvider.new(value) end @external_network_provider = value end |
#hash ⇒ Object
Generates a hash value for this object.
40747 40748 40749 40750 40751 |
# File 'lib/ovirtsdk4/types.rb', line 40747 def hash super + @external_network_provider.hash + @host.hash end |
#host ⇒ Host
Returns the value of the host
attribute.
40653 40654 40655 |
# File 'lib/ovirtsdk4/types.rb', line 40653 def host @host end |
#host=(value) ⇒ Object
Sets the value of the host
attribute.
The value
parameter can be an instance of Host 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.
40666 40667 40668 40669 40670 40671 |
# File 'lib/ovirtsdk4/types.rb', line 40666 def host=(value) if value.is_a?(Hash) value = Host.new(value) end @host = value end |
#id ⇒ String
Returns the value of the id
attribute.
40678 40679 40680 |
# File 'lib/ovirtsdk4/types.rb', line 40678 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
40687 40688 40689 |
# File 'lib/ovirtsdk4/types.rb', line 40687 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
40696 40697 40698 |
# File 'lib/ovirtsdk4/types.rb', line 40696 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
40705 40706 40707 |
# File 'lib/ovirtsdk4/types.rb', line 40705 def name=(value) @name = value end |