Class: OvirtSDK4::StorageDomainLease

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

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

  • :storage_domain (StorageDomain, Hash)

    The value of attribute storage_domain.



21728
21729
21730
21731
# File 'lib/ovirtsdk4/types.rb', line 21728

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

Instance Method Details

#==(other) ⇒ Object

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



21736
21737
21738
21739
# File 'lib/ovirtsdk4/types.rb', line 21736

def ==(other)
  super &&
  @storage_domain == other.storage_domain
end

#hashObject

Generates a hash value for this object.



21744
21745
21746
21747
# File 'lib/ovirtsdk4/types.rb', line 21744

def hash
  super +
  @storage_domain.hash
end

#storage_domainStorageDomain

Returns the value of the storage_domain attribute.

Returns:



21698
21699
21700
# File 'lib/ovirtsdk4/types.rb', line 21698

def storage_domain
  @storage_domain
end

#storage_domain=(value) ⇒ Object

Sets the value of the storage_domain attribute.

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



21711
21712
21713
21714
21715
21716
# File 'lib/ovirtsdk4/types.rb', line 21711

def storage_domain=(value)
  if value.is_a?(Hash)
    value = StorageDomain.new(value)
  end
  @storage_domain = value
end