class Hpe3parSdk::FCPath

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.

model[RW]
type - String

HBA model.

port_pos[RW]
type - PortPos

The portpos details.

vendor[RW]
type - String

HBA vendor.

wwn[RW]
type - String

A WWN assigned to the host.

Public Class Methods

new(object_hash) click to toggle source
# File lib/Hpe3parSdk/models.rb, line 1337
def initialize(object_hash)
  if object_hash == nil
    return
  end

  self.wwn = object_hash['wwn']

  !object_hash['portPos'].nil? ? self.port_pos = PortPos.new(object_hash['portPos']) : self.port_pos = nil

  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