class OvirtSDK4::AuthorizedKey

Public Class Methods

new(opts = {}) click to toggle source

Creates a new instance of the {AuthorizedKey} class.

@param opts [Hash] 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.

@option opts [String] :comment The value of attribute `comment`.

@option opts [String] :description The value of attribute `description`.

@option opts [String] :id The value of attribute `id`.

@option opts [String] :key The value of attribute `key`.

@option opts [String] :name The value of attribute `name`.

@option opts [User, Hash] :user The value of attribute `user`.

Calls superclass method OvirtSDK4::Identified.new
# File lib/ovirtsdk4/types.rb, line 29042
def initialize(opts = {})
  super(opts)
  self.key = opts[:key]
  self.user = opts[:user]
end

Public Instance Methods

==(other) click to toggle source

Returns `true` if `self` and `other` have the same attributes and values.

Calls superclass method OvirtSDK4::Identified#==
# File lib/ovirtsdk4/types.rb, line 29051
def ==(other)
  super &&
  @key == other.key &&
  @user == other.user
end
comment() click to toggle source

Returns the value of the `comment` attribute.

@return [String]

# File lib/ovirtsdk4/types.rb, line 28912
def comment
  @comment
end
comment=(value) click to toggle source

Sets the value of the `comment` attribute.

@param value [String]

# File lib/ovirtsdk4/types.rb, line 28921
def comment=(value)
  @comment = value
end
description() click to toggle source

Returns the value of the `description` attribute.

@return [String]

# File lib/ovirtsdk4/types.rb, line 28930
def description
  @description
end
description=(value) click to toggle source

Sets the value of the `description` attribute.

@param value [String]

# File lib/ovirtsdk4/types.rb, line 28939
def description=(value)
  @description = value
end
hash() click to toggle source

Generates a hash value for this object.

Calls superclass method OvirtSDK4::Identified#hash
# File lib/ovirtsdk4/types.rb, line 29060
def hash
  super +
  @key.hash +
  @user.hash
end
id() click to toggle source

Returns the value of the `id` attribute.

@return [String]

# File lib/ovirtsdk4/types.rb, line 28948
def id
  @id
end
id=(value) click to toggle source

Sets the value of the `id` attribute.

@param value [String]

# File lib/ovirtsdk4/types.rb, line 28957
def id=(value)
  @id = value
end
key() click to toggle source

Returns the value of the `key` attribute.

@return [String]

# File lib/ovirtsdk4/types.rb, line 28966
def key
  @key
end
key=(value) click to toggle source

Sets the value of the `key` attribute.

@param value [String]

# File lib/ovirtsdk4/types.rb, line 28975
def key=(value)
  @key = value
end
name() click to toggle source

Returns the value of the `name` attribute.

@return [String]

# File lib/ovirtsdk4/types.rb, line 28984
def name
  @name
end
name=(value) click to toggle source

Sets the value of the `name` attribute.

@param value [String]

# File lib/ovirtsdk4/types.rb, line 28993
def name=(value)
  @name = value
end
user() click to toggle source

Returns the value of the `user` attribute.

@return [User]

# File lib/ovirtsdk4/types.rb, line 29002
def user
  @user
end
user=(value) click to toggle source

Sets the value of the `user` attribute.

@param value [User, Hash]

The `value` parameter can be an instance of {OvirtSDK4::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.

# File lib/ovirtsdk4/types.rb, line 29015
def user=(value)
  if value.is_a?(Hash)
    value = User.new(value)
  end
  @user = value
end