Class: OvirtSDK4::Permit

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 = {}) ⇒ Permit

Creates a new instance of the OvirtSDK4::Permit 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):

  • :administrative (Boolean)

    The value of attribute administrative.

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :id (String)

    The value of attribute id.

  • :name (String)

    The value of attribute name.

  • :role (Role, Hash)

    The value of attribute role.



13797
13798
13799
13800
13801
# File 'lib/ovirtsdk4/types.rb', line 13797

def initialize(opts = {})
  super(opts)
  self.administrative = opts[:administrative]
  self.role = opts[:role]
end

Instance Method Details

#==(other) ⇒ Object

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



13806
13807
13808
13809
13810
# File 'lib/ovirtsdk4/types.rb', line 13806

def ==(other)
  super &&
  @administrative == other.administrative &&
  @role == other.role
end

#administrativeBoolean

Returns the value of the administrative attribute.

Returns:

  • (Boolean)


13667
13668
13669
# File 'lib/ovirtsdk4/types.rb', line 13667

def administrative
  @administrative
end

#administrative=(value) ⇒ Object

Sets the value of the administrative attribute.

Parameters:

  • value (Boolean)


13676
13677
13678
# File 'lib/ovirtsdk4/types.rb', line 13676

def administrative=(value)
  @administrative = value
end

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


13685
13686
13687
# File 'lib/ovirtsdk4/types.rb', line 13685

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


13694
13695
13696
# File 'lib/ovirtsdk4/types.rb', line 13694

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


13703
13704
13705
# File 'lib/ovirtsdk4/types.rb', line 13703

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


13712
13713
13714
# File 'lib/ovirtsdk4/types.rb', line 13712

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



13815
13816
13817
13818
13819
# File 'lib/ovirtsdk4/types.rb', line 13815

def hash
  super +
  @administrative.hash +
  @role.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


13721
13722
13723
# File 'lib/ovirtsdk4/types.rb', line 13721

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


13730
13731
13732
# File 'lib/ovirtsdk4/types.rb', line 13730

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


13739
13740
13741
# File 'lib/ovirtsdk4/types.rb', line 13739

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


13748
13749
13750
# File 'lib/ovirtsdk4/types.rb', line 13748

def name=(value)
  @name = value
end

#roleRole

Returns the value of the role attribute.

Returns:



13757
13758
13759
# File 'lib/ovirtsdk4/types.rb', line 13757

def role
  @role
end

#role=(value) ⇒ Object

Sets the value of the role attribute.

The value parameter can be an instance of Role 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 (Role, Hash)


13770
13771
13772
13773
13774
13775
# File 'lib/ovirtsdk4/types.rb', line 13770

def role=(value)
  if value.is_a?(Hash)
    value = Role.new(value)
  end
  @role = value
end