Class: OvirtSDK4::StorageConnectionExtension
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::StorageConnectionExtension
- 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. -
#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 = {}) ⇒ StorageConnectionExtension
constructor
Creates a new instance of the StorageConnectionExtension class.
-
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#password ⇒ String
Returns the value of the
password
attribute. -
#password=(value) ⇒ Object
Sets the value of the
password
attribute. -
#target ⇒ String
Returns the value of the
target
attribute. -
#target=(value) ⇒ Object
Sets the value of the
target
attribute. -
#username ⇒ String
Returns the value of the
username
attribute. -
#username=(value) ⇒ Object
Sets the value of the
username
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ StorageConnectionExtension
Creates a new instance of the OvirtSDK4::StorageConnectionExtension class.
20951 20952 20953 20954 20955 20956 20957 |
# File 'lib/ovirtsdk4/types.rb', line 20951 def initialize(opts = {}) super(opts) self.host = opts[:host] self.password = opts[:password] self.target = opts[:target] self.username = opts[:username] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
20962 20963 20964 20965 20966 20967 20968 |
# File 'lib/ovirtsdk4/types.rb', line 20962 def ==(other) super && @host == other.host && @password == other.password && @target == other.target && @username == other.username end |
#comment ⇒ String
Returns the value of the comment
attribute.
20781 20782 20783 |
# File 'lib/ovirtsdk4/types.rb', line 20781 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
20790 20791 20792 |
# File 'lib/ovirtsdk4/types.rb', line 20790 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
20799 20800 20801 |
# File 'lib/ovirtsdk4/types.rb', line 20799 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
20808 20809 20810 |
# File 'lib/ovirtsdk4/types.rb', line 20808 def description=(value) @description = value end |
#hash ⇒ Object
Generates a hash value for this object.
20973 20974 20975 20976 20977 20978 20979 |
# File 'lib/ovirtsdk4/types.rb', line 20973 def hash super + @host.hash + @password.hash + @target.hash + @username.hash end |
#host ⇒ Host
Returns the value of the host
attribute.
20817 20818 20819 |
# File 'lib/ovirtsdk4/types.rb', line 20817 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.
20830 20831 20832 20833 20834 20835 |
# File 'lib/ovirtsdk4/types.rb', line 20830 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.
20842 20843 20844 |
# File 'lib/ovirtsdk4/types.rb', line 20842 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
20851 20852 20853 |
# File 'lib/ovirtsdk4/types.rb', line 20851 def id=(value) @id = value end |
#name ⇒ String
Returns the value of the name
attribute.
20860 20861 20862 |
# File 'lib/ovirtsdk4/types.rb', line 20860 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
20869 20870 20871 |
# File 'lib/ovirtsdk4/types.rb', line 20869 def name=(value) @name = value end |
#password ⇒ String
Returns the value of the password
attribute.
20878 20879 20880 |
# File 'lib/ovirtsdk4/types.rb', line 20878 def password @password end |
#password=(value) ⇒ Object
Sets the value of the password
attribute.
20887 20888 20889 |
# File 'lib/ovirtsdk4/types.rb', line 20887 def password=(value) @password = value end |
#target ⇒ String
Returns the value of the target
attribute.
20896 20897 20898 |
# File 'lib/ovirtsdk4/types.rb', line 20896 def target @target end |
#target=(value) ⇒ Object
Sets the value of the target
attribute.
20905 20906 20907 |
# File 'lib/ovirtsdk4/types.rb', line 20905 def target=(value) @target = value end |
#username ⇒ String
Returns the value of the username
attribute.
20914 20915 20916 |
# File 'lib/ovirtsdk4/types.rb', line 20914 def username @username end |
#username=(value) ⇒ Object
Sets the value of the username
attribute.
20923 20924 20925 |
# File 'lib/ovirtsdk4/types.rb', line 20923 def username=(value) @username = value end |