Class: OvirtSDK4::Usb

Inherits:
Struct
  • Object
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 = {}) ⇒ Usb

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

  • :enabled (Boolean)

    The value of attribute enabled.

  • :type (UsbType)

    The value of attribute type.



22989
22990
22991
22992
22993
# File 'lib/ovirtsdk4/types.rb', line 22989

def initialize(opts = {})
  super(opts)
  self.enabled = opts[:enabled]
  self.type = opts[:type]
end

Instance Method Details

#==(other) ⇒ Object

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



22998
22999
23000
23001
23002
# File 'lib/ovirtsdk4/types.rb', line 22998

def ==(other)
  super &&
  @enabled == other.enabled &&
  @type == other.type
end

#enabledBoolean

Returns the value of the enabled attribute.

Returns:

  • (Boolean)


22946
22947
22948
# File 'lib/ovirtsdk4/types.rb', line 22946

def enabled
  @enabled
end

#enabled=(value) ⇒ Object

Sets the value of the enabled attribute.

Parameters:

  • value (Boolean)


22955
22956
22957
# File 'lib/ovirtsdk4/types.rb', line 22955

def enabled=(value)
  @enabled = value
end

#hashObject

Generates a hash value for this object.



23007
23008
23009
23010
23011
# File 'lib/ovirtsdk4/types.rb', line 23007

def hash
  super +
  @enabled.hash +
  @type.hash
end

#typeUsbType

Returns the value of the type attribute.

Returns:



22964
22965
22966
# File 'lib/ovirtsdk4/types.rb', line 22964

def type
  @type
end

#type=(value) ⇒ Object

Sets the value of the type attribute.

Parameters:



22973
22974
22975
# File 'lib/ovirtsdk4/types.rb', line 22973

def type=(value)
  @type = value
end