Class: OvirtSDK4::ExternalComputeResource
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::ExternalComputeResource
- 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_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 = {}) ⇒ ExternalComputeResource
constructor
Creates a new instance of the ExternalComputeResource class.
-
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#provider ⇒ String
Returns the value of the
provider
attribute. -
#provider=(value) ⇒ Object
Sets the value of the
provider
attribute. -
#url ⇒ String
Returns the value of the
url
attribute. -
#url=(value) ⇒ Object
Sets the value of the
url
attribute. -
#user ⇒ String
Returns the value of the
user
attribute. -
#user=(value) ⇒ Object
Sets the value of the
user
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ ExternalComputeResource
Creates a new instance of the OvirtSDK4::ExternalComputeResource class.
36899 36900 36901 36902 36903 36904 36905 |
# File 'lib/ovirtsdk4/types.rb', line 36899 def initialize(opts = {}) super(opts) self.external_host_provider = opts[:external_host_provider] self.provider = opts[:provider] self.url = opts[:url] self.user = opts[:user] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
36910 36911 36912 36913 36914 36915 36916 |
# File 'lib/ovirtsdk4/types.rb', line 36910 def ==(other) super && @external_host_provider == other.external_host_provider && @provider == other.provider && @url == other.url && @user == other.user end |
#comment ⇒ String
Returns the value of the comment
attribute.
36729 36730 36731 |
# File 'lib/ovirtsdk4/types.rb', line 36729 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
36738 36739 36740 |
# File 'lib/ovirtsdk4/types.rb', line 36738 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
36747 36748 36749 |
# File 'lib/ovirtsdk4/types.rb', line 36747 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
36756 36757 36758 |
# File 'lib/ovirtsdk4/types.rb', line 36756 def description=(value) @description = value end |
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the external_host_provider
attribute.
36765 36766 36767 |
# File 'lib/ovirtsdk4/types.rb', line 36765 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.
36778 36779 36780 36781 36782 36783 |
# File 'lib/ovirtsdk4/types.rb', line 36778 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.
36921 36922 36923 36924 36925 36926 36927 |
# File 'lib/ovirtsdk4/types.rb', line 36921 def hash super + @external_host_provider.hash + @provider.hash + @url.hash + @user.hash end |
#id ⇒ String
Returns the value of the id
attribute.
36790 36791 36792 |
# File 'lib/ovirtsdk4/types.rb', line 36790 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
36799 36800 36801 |
# File 'lib/ovirtsdk4/types.rb', line 36799 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
36808 36809 36810 |
# File 'lib/ovirtsdk4/types.rb', line 36808 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
36817 36818 36819 |
# File 'lib/ovirtsdk4/types.rb', line 36817 def name=(value) @name = value end |
#provider ⇒ String
Returns the value of the provider
attribute.
36826 36827 36828 |
# File 'lib/ovirtsdk4/types.rb', line 36826 def provider @provider end |
#provider=(value) ⇒ Object
Sets the value of the provider
attribute.
36835 36836 36837 |
# File 'lib/ovirtsdk4/types.rb', line 36835 def provider=(value) @provider = value end |
#url ⇒ String
Returns the value of the url
attribute.
36844 36845 36846 |
# File 'lib/ovirtsdk4/types.rb', line 36844 def url @url end |
#url=(value) ⇒ Object
Sets the value of the url
attribute.
36853 36854 36855 |
# File 'lib/ovirtsdk4/types.rb', line 36853 def url=(value) @url = value end |
#user ⇒ String
Returns the value of the user
attribute.
36862 36863 36864 |
# File 'lib/ovirtsdk4/types.rb', line 36862 def user @user end |
#user=(value) ⇒ Object
Sets the value of the user
attribute.
36871 36872 36873 |
# File 'lib/ovirtsdk4/types.rb', line 36871 def user=(value) @user = value end |