class Hpe3parSdk::VolumeSet

Attributes

comment[RW]
type - String

Comment for the set.

domain[RW]
type - String

Set domain.

flash_cache_policy[RW]
type - Number

The flashCachePolicy member is valid for volumes sets only. - Hpe3parSdk::FlashCachePolicy

id[RW]
type - Number

Set identifier.

name[RW]
type - String

Name of the set.

qos_enabled[RW]
type - Boolean

true: Enabled vvset QoS rule. false: Disabled vvset QoS rules.

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 1081
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']

  self.flash_cache_policy = object_hash['flashCachePolicy']

  self.qos_enabled = object_hash['qosEnabled']

end