Class: IbmPowerHmc::VirtualSCSIMapping
Overview
Virtual SCSI mapping information
Constant Summary
AbstractNonRest::ATTRS
Instance Attribute Summary
#xml
Instance Method Summary
collapse
#collection_of, #create_element, #initialize, marshal, #marshal, #singleton, #timestamp, #to_s, #uuid_from_href, #uuids_from_links
Instance Method Details
#client ⇒ Object
709
710
711
712
|
# File 'lib/ibm_power_hmc/schema/uom.rb', line 709
def client
elem = xml.elements["ClientAdapter"]
VirtualSCSIClientAdapter.new(elem) unless elem.nil?
end
|
#device ⇒ Object
731
732
733
734
735
736
737
738
739
740
741
742
|
# File 'lib/ibm_power_hmc/schema/uom.rb', line 731
def device
elem = xml.elements["TargetDevice/*[1]"]
begin
Module.const_get("IbmPowerHmc::#{elem.name}").new(elem) unless elem.nil?
rescue NameError
nil
end
end
|
#lpar_uuid ⇒ Object
704
705
706
707
|
# File 'lib/ibm_power_hmc/schema/uom.rb', line 704
def lpar_uuid
href = singleton("AssociatedLogicalPartition", "href")
uuid_from_href(href) unless href.nil?
end
|
#server ⇒ Object
714
715
716
717
|
# File 'lib/ibm_power_hmc/schema/uom.rb', line 714
def server
elem = xml.elements["ServerAdapter"]
VirtualSCSIServerAdapter.new(elem) unless elem.nil?
end
|
#storage ⇒ Object
719
720
721
722
723
724
725
726
727
728
729
|
# File 'lib/ibm_power_hmc/schema/uom.rb', line 719
def storage
elem = xml.elements["Storage/*[1]"]
begin
Module.const_get("IbmPowerHmc::#{elem.name}").new(elem) unless elem.nil?
rescue NameError
nil
end
end
|