Class: OvirtSDK4::AuthorizedKey
- Inherits:
-
Identified
- Object
- Struct
- Identified
- OvirtSDK4::AuthorizedKey
- 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.
-
#id ⇒ String
Returns the value of the
id
attribute. -
#id=(value) ⇒ Object
Sets the value of the
id
attribute. -
#initialize(opts = {}) ⇒ AuthorizedKey
constructor
Creates a new instance of the AuthorizedKey class.
-
#key ⇒ String
Returns the value of the
key
attribute. -
#key=(value) ⇒ Object
Sets the value of the
key
attribute. -
#name ⇒ String
Returns the value of the
name
attribute. -
#name=(value) ⇒ Object
Sets the value of the
name
attribute. -
#user ⇒ User
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 = {}) ⇒ AuthorizedKey
Creates a new instance of the OvirtSDK4::AuthorizedKey class.
31574 31575 31576 31577 31578 |
# File 'lib/ovirtsdk4/types.rb', line 31574 def initialize(opts = {}) super(opts) self.key = opts[:key] self.user = opts[:user] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
31583 31584 31585 31586 31587 |
# File 'lib/ovirtsdk4/types.rb', line 31583 def ==(other) super && @key == other.key && @user == other.user end |
#comment ⇒ String
Returns the value of the comment
attribute.
31444 31445 31446 |
# File 'lib/ovirtsdk4/types.rb', line 31444 def comment @comment end |
#comment=(value) ⇒ Object
Sets the value of the comment
attribute.
31453 31454 31455 |
# File 'lib/ovirtsdk4/types.rb', line 31453 def comment=(value) @comment = value end |
#description ⇒ String
Returns the value of the description
attribute.
31462 31463 31464 |
# File 'lib/ovirtsdk4/types.rb', line 31462 def description @description end |
#description=(value) ⇒ Object
Sets the value of the description
attribute.
31471 31472 31473 |
# File 'lib/ovirtsdk4/types.rb', line 31471 def description=(value) @description = value end |
#hash ⇒ Object
Generates a hash value for this object.
31592 31593 31594 31595 31596 |
# File 'lib/ovirtsdk4/types.rb', line 31592 def hash super + @key.hash + @user.hash end |
#id ⇒ String
Returns the value of the id
attribute.
31480 31481 31482 |
# File 'lib/ovirtsdk4/types.rb', line 31480 def id @id end |
#id=(value) ⇒ Object
Sets the value of the id
attribute.
31489 31490 31491 |
# File 'lib/ovirtsdk4/types.rb', line 31489 def id=(value) @id = value end |
#key ⇒ String
Returns the value of the key
attribute.
31498 31499 31500 |
# File 'lib/ovirtsdk4/types.rb', line 31498 def key @key end |
#key=(value) ⇒ Object
Sets the value of the key
attribute.
31507 31508 31509 |
# File 'lib/ovirtsdk4/types.rb', line 31507 def key=(value) @key = value end |
#name ⇒ String
Returns the value of the name
attribute.
31516 31517 31518 |
# File 'lib/ovirtsdk4/types.rb', line 31516 def name @name end |
#name=(value) ⇒ Object
Sets the value of the name
attribute.
31525 31526 31527 |
# File 'lib/ovirtsdk4/types.rb', line 31525 def name=(value) @name = value end |
#user ⇒ User
Returns the value of the user
attribute.
31534 31535 31536 |
# File 'lib/ovirtsdk4/types.rb', line 31534 def user @user end |
#user=(value) ⇒ Object
Sets the value of the user
attribute.
The value
parameter can be an instance of User 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.
31547 31548 31549 31550 31551 31552 |
# File 'lib/ovirtsdk4/types.rb', line 31547 def user=(value) if value.is_a?(Hash) value = User.new(value) end @user = value end |