class Hpe3parSdk::PortPos

Attributes

card_port[RW]
type - Number

Port number on the FC card.

node[RW]
type - Number

System node.

slot[RW]
type - Number

PCI bus slot in the node.

Public Class Methods

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

  self.node = object_hash['node']

  self.slot = object_hash['slot']

  self.card_port = object_hash['cardPort']

end