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.
39071 39072 39073 39074 39075 39076 39077 |
# File 'lib/ovirtsdk4/types.rb', line 39071 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.
39082 39083 39084 39085 39086 39087 39088 |
# File 'lib/ovirtsdk4/types.rb', line 39082 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.
38901 38902 38903 |
# File 'lib/ovirtsdk4/types.rb', line 38901 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
38910 38911 38912 |
# File 'lib/ovirtsdk4/types.rb', line 38910 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
38919 38920 38921 |
# File 'lib/ovirtsdk4/types.rb', line 38919 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
38928 38929 38930 |
# File 'lib/ovirtsdk4/types.rb', line 38928 def description=(value) @description = value end |
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the external_host_provider
attribute.
38937 38938 38939 |
# File 'lib/ovirtsdk4/types.rb', line 38937 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.
38950 38951 38952 38953 38954 38955 |
# File 'lib/ovirtsdk4/types.rb', line 38950 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.
39093 39094 39095 39096 39097 39098 39099 |
# File 'lib/ovirtsdk4/types.rb', line 39093 def hash super + @external_host_provider.hash + @provider.hash + @url.hash + @user.hash end |
#id ⇒ String
Returns the value of the id
attribute.
38962 38963 38964 |
# File 'lib/ovirtsdk4/types.rb', line 38962 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
38971 38972 38973 |
# File 'lib/ovirtsdk4/types.rb', line 38971 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
38980 38981 38982 |
# File 'lib/ovirtsdk4/types.rb', line 38980 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
38989 38990 38991 |
# File 'lib/ovirtsdk4/types.rb', line 38989 def name=(value) @name = value end |
#provider ⇒ String
Returns the value of the provider
attribute.
38998 38999 39000 |
# File 'lib/ovirtsdk4/types.rb', line 38998 def provider @provider end |
#provider=(value) ⇒ Object
Sets the value of the provider
attribute.
39007 39008 39009 |
# File 'lib/ovirtsdk4/types.rb', line 39007 def provider=(value) @provider = value end |
#url ⇒ String
Returns the value of the url
attribute.
39016 39017 39018 |
# File 'lib/ovirtsdk4/types.rb', line 39016 def url @url end |
#url=(value) ⇒ Object
Sets the value of the url
attribute.
39025 39026 39027 |
# File 'lib/ovirtsdk4/types.rb', line 39025 def url=(value) @url = value end |
#user ⇒ String
Returns the value of the user
attribute.
39034 39035 39036 |
# File 'lib/ovirtsdk4/types.rb', line 39034 def user @user end |
#user=(value) ⇒ Object
Sets the value of the user
attribute.
39043 39044 39045 |
# File 'lib/ovirtsdk4/types.rb', line 39043 def user=(value) @user = value end |