class Hpe3parSdk::SCSIPath
Attributes
driver_version[RW]
- type - String
-
HBA driver version.
firmware_version[RW]
- type - String
-
HBA firmware version.
host_speed[RW]
- type - String
-
HBA host speed.
ipaddr[RW]
- type - String
-
IP address for Remote Copy.
model[RW]
- type - String
-
HBA model.
name[RW]
- type - String
-
An iSCSI name to be assigned to the host.
port_pos[RW]
- type -
PortPos
-
The portpos details.
vendor[RW]
- type - String
-
HBA vendor.
Public Class Methods
new(object_hash)
click to toggle source
# File lib/Hpe3parSdk/models.rb, line 1393 def initialize(object_hash) if object_hash == nil return end self.name = object_hash['name'] !object_hash['portPos'].nil? ? self.port_pos = PortPos.new(object_hash['portPos']) : self.port_pos = nil self.ipaddr = object_hash['IPAddr'] self.firmware_version = object_hash['firmwareVersion'] self.vendor = object_hash['vendor'] self.model = object_hash['model'] self.driver_version = object_hash['driverVersion'] self.host_speed = object_hash['hostSpeed'] end