Class: IbmPowerHmc::VirtualSCSIMapping

Inherits:
AbstractNonRest show all
Defined in:
lib/ibm_power_hmc/schema/uom.rb

Overview

Virtual SCSI mapping information

Constant Summary

Constants inherited from AbstractNonRest

AbstractNonRest::ATTRS

Instance Attribute Summary

Attributes inherited from AbstractNonRest

#xml

Instance Method Summary collapse

Methods inherited from AbstractNonRest

#collection_of, #create_element, #initialize, marshal, #marshal, #singleton, #timestamp, #to_s, #uuid_from_href, #uuids_from_links

Constructor Details

This class inherits a constructor from IbmPowerHmc::AbstractNonRest

Instance Method Details

#clientObject



705
706
707
708
# File 'lib/ibm_power_hmc/schema/uom.rb', line 705

def client
  elem = xml.elements["ClientAdapter"]
  VirtualSCSIClientAdapter.new(elem) unless elem.nil?
end

#deviceObject



727
728
729
730
731
732
733
734
735
736
737
738
# File 'lib/ibm_power_hmc/schema/uom.rb', line 727

def device
  # Possible backing device types are:
  # LogicalVolumeVirtualTargetDevice, PhysicalVolumeVirtualTargetDevice,
  # SharedStoragePoolLogicalUnitVirtualTargetDevice, VirtualOpticalTargetDevice,
  # SharedFileSystemFileVirtualTargetDevice
  elem = xml.elements["TargetDevice/*[1]"]
  begin
    Module.const_get("IbmPowerHmc::#{elem.name}").new(elem) unless elem.nil?
  rescue NameError
    nil
  end
end

#lpar_uuidObject



700
701
702
703
# File 'lib/ibm_power_hmc/schema/uom.rb', line 700

def lpar_uuid
  href = singleton("AssociatedLogicalPartition", "href")
  uuid_from_href(href) unless href.nil?
end

#serverObject



710
711
712
713
# File 'lib/ibm_power_hmc/schema/uom.rb', line 710

def server
  elem = xml.elements["ServerAdapter"]
  VirtualSCSIServerAdapter.new(elem) unless elem.nil?
end

#storageObject



715
716
717
718
719
720
721
722
723
724
725
# File 'lib/ibm_power_hmc/schema/uom.rb', line 715

def storage
  # Possible storage types are:
  # LogicalUnit, PhysicalVolume, VirtualDisk, VirtualOpticalMedia,
  # SharedFileSystemFile
  elem = xml.elements["Storage/*[1]"]
  begin
    Module.const_get("IbmPowerHmc::#{elem.name}").new(elem) unless elem.nil?
  rescue NameError
    nil
  end
end