Class: OvirtSDK4::AuthorizedKey

Inherits:
Identified show all
Defined in:
lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb

Instance Method Summary collapse

Methods included from Type

#dig, #href, #href=

Constructor Details

#initialize(opts = {}) ⇒ AuthorizedKey

Creates a new instance of the OvirtSDK4::AuthorizedKey class.

Parameters:

  • opts (Hash) (defaults to: {})

    A hash containing the attributes of the object. The keys of the hash should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.

Options Hash (opts):

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :id (String)

    The value of attribute id.

  • :key (String)

    The value of attribute key.

  • :name (String)

    The value of attribute name.

  • :user (User, Hash)

    The value of attribute user.



30348
30349
30350
30351
30352
# File 'lib/ovirtsdk4/types.rb', line 30348

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.



30357
30358
30359
30360
30361
# File 'lib/ovirtsdk4/types.rb', line 30357

def ==(other)
  super &&
  @key == other.key &&
  @user == other.user
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


30218
30219
30220
# File 'lib/ovirtsdk4/types.rb', line 30218

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


30227
30228
30229
# File 'lib/ovirtsdk4/types.rb', line 30227

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


30236
30237
30238
# File 'lib/ovirtsdk4/types.rb', line 30236

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


30245
30246
30247
# File 'lib/ovirtsdk4/types.rb', line 30245

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



30366
30367
30368
30369
30370
# File 'lib/ovirtsdk4/types.rb', line 30366

def hash
  super +
  @key.hash +
  @user.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


30254
30255
30256
# File 'lib/ovirtsdk4/types.rb', line 30254

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


30263
30264
30265
# File 'lib/ovirtsdk4/types.rb', line 30263

def id=(value)
  @id = value
end

#keyString

Returns the value of the key attribute.

Returns:

  • (String)


30272
30273
30274
# File 'lib/ovirtsdk4/types.rb', line 30272

def key
  @key
end

#key=(value) ⇒ Object

Sets the value of the key attribute.

Parameters:

  • value (String)


30281
30282
30283
# File 'lib/ovirtsdk4/types.rb', line 30281

def key=(value)
  @key = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


30290
30291
30292
# File 'lib/ovirtsdk4/types.rb', line 30290

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


30299
30300
30301
# File 'lib/ovirtsdk4/types.rb', line 30299

def name=(value)
  @name = value
end

#userUser

Returns the value of the user attribute.

Returns:



30308
30309
30310
# File 'lib/ovirtsdk4/types.rb', line 30308

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.

Parameters:

  • value (User, Hash)


30321
30322
30323
30324
30325
30326
# File 'lib/ovirtsdk4/types.rb', line 30321

def user=(value)
  if value.is_a?(Hash)
    value = User.new(value)
  end
  @user = value
end