class Hpe3parSdk::Descriptors

Attributes

comment[RW]
type - String

Any additional information for the host.

contact[RW]
type - String

The host’s owner and contact.

ipaddr[RW]
type - String

The host’s IP address.

location[RW]
type - String

The host’s location.

model[RW]
type - String

The host’s model.

os[RW]
type - String

The operating system running on the host.

Public Class Methods

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

  self.location = object_hash['location']

  self.ipaddr = object_hash['IPAddr']

  self.os = object_hash['os']

  self.model = object_hash['model']

  self.contact = object_hash['contact']

  self.comment = object_hash['comment']
end