class Hpe3parSdk::GrowthParams

Attributes

increment_MiB[RW]
type - Number

The growth increment, the amount of logical disk storage created on each auto-grow operation.

ld_layout[RW]
type - LDLayout

Logical disk types for this CPG.

limit_MiB[RW]
type - Number

The auto-grow operation is limited to the specified storage amount that sets the growth limit.

warning_MiB[RW]
type - Number

Threshold of used logical disk space, when exceeded, results in a warning alert.

Public Class Methods

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

  self.warning_MiB = object_hash['warningMiB']

  self.limit_MiB = object_hash['limitMiB']

  self.increment_MiB = object_hash['incrementMiB']

  self.ld_layout = LDLayout.new(object_hash['LDLayout'])

end