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
trueifselfandotherhave the same attributes and values. -
#comment ⇒ String
Returns the value of the
commentattribute. -
#comment=(value) ⇒ Object
Sets the value of the
commentattribute. -
#description ⇒ String
Returns the value of the
descriptionattribute. -
#description=(value) ⇒ Object
Sets the value of the
descriptionattribute. -
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the
external_host_providerattribute. -
#external_host_provider=(value) ⇒ Object
Sets the value of the
external_host_providerattribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#id ⇒ String
Returns the value of the
idattribute. -
#id=(value) ⇒ Object
Sets the value of the
idattribute. -
#initialize(opts = {}) ⇒ ExternalComputeResource
constructor
Creates a new instance of the ExternalComputeResource class.
-
#name ⇒ String
Returns the value of the
nameattribute. -
#name=(value) ⇒ Object
Sets the value of the
nameattribute. -
#provider ⇒ String
Returns the value of the
providerattribute. -
#provider=(value) ⇒ Object
Sets the value of the
providerattribute. -
#url ⇒ String
Returns the value of the
urlattribute. -
#url=(value) ⇒ Object
Sets the value of the
urlattribute. -
#user ⇒ String
Returns the value of the
userattribute. -
#user=(value) ⇒ Object
Sets the value of the
userattribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ ExternalComputeResource
Creates a new instance of the OvirtSDK4::ExternalComputeResource class.
36830 36831 36832 36833 36834 36835 36836 |
# File 'lib/ovirtsdk4/types.rb', line 36830 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.
36841 36842 36843 36844 36845 36846 36847 |
# File 'lib/ovirtsdk4/types.rb', line 36841 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.
36660 36661 36662 |
# File 'lib/ovirtsdk4/types.rb', line 36660 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment attribute.
36669 36670 36671 |
# File 'lib/ovirtsdk4/types.rb', line 36669 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description attribute.
36678 36679 36680 |
# File 'lib/ovirtsdk4/types.rb', line 36678 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description attribute.
36687 36688 36689 |
# File 'lib/ovirtsdk4/types.rb', line 36687 def description=(value) @description = value end |
#external_host_provider ⇒ ExternalHostProvider
Returns the value of the external_host_provider attribute.
36696 36697 36698 |
# File 'lib/ovirtsdk4/types.rb', line 36696 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.
36709 36710 36711 36712 36713 36714 |
# File 'lib/ovirtsdk4/types.rb', line 36709 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.
36852 36853 36854 36855 36856 36857 36858 |
# File 'lib/ovirtsdk4/types.rb', line 36852 def hash super + @external_host_provider.hash + @provider.hash + @url.hash + @user.hash end |
#id ⇒ String
Returns the value of the id attribute.
36721 36722 36723 |
# File 'lib/ovirtsdk4/types.rb', line 36721 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id attribute.
36730 36731 36732 |
# File 'lib/ovirtsdk4/types.rb', line 36730 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name attribute.
36739 36740 36741 |
# File 'lib/ovirtsdk4/types.rb', line 36739 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name attribute.
36748 36749 36750 |
# File 'lib/ovirtsdk4/types.rb', line 36748 def name=(value) @name = value end |
#provider ⇒ String
Returns the value of the provider attribute.
36757 36758 36759 |
# File 'lib/ovirtsdk4/types.rb', line 36757 def provider @provider end |
#provider=(value) ⇒ Object
Sets the value of the provider attribute.
36766 36767 36768 |
# File 'lib/ovirtsdk4/types.rb', line 36766 def provider=(value) @provider = value end |
#url ⇒ String
Returns the value of the url attribute.
36775 36776 36777 |
# File 'lib/ovirtsdk4/types.rb', line 36775 def url @url end |
#url=(value) ⇒ Object
Sets the value of the url attribute.
36784 36785 36786 |
# File 'lib/ovirtsdk4/types.rb', line 36784 def url=(value) @url = value end |
#user ⇒ String
Returns the value of the user attribute.
36793 36794 36795 |
# File 'lib/ovirtsdk4/types.rb', line 36793 def user @user end |
#user=(value) ⇒ Object
Sets the value of the user attribute.
36802 36803 36804 |
# File 'lib/ovirtsdk4/types.rb', line 36802 def user=(value) @user = value end |