class Hpe3parSdk::HostSet

Attributes

comment[RW]
type - String

Comment for the set.

domain[RW]
type - String

Set domain.

id[RW]
type - Number

Set identifier.

name[RW]
type - String

Name of the set.

setmembers[RW]
type - Array of String

The members of the set.

uuid[RW]
type - String

UUID of the set.

Public Class Methods

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

  self.name = object_hash['name']

  self.uuid = object_hash['uuid']

  self.id = object_hash['id']

  self.comment = object_hash['comment']

  self.domain = object_hash['domain']

  self.setmembers = object_hash['setmembers']

end