class Hpe3parSdk::CapEfficiency

Attributes

compaction[RW]
type - Number

The compaction ratio indicates the overall amount of storage space saved with 3PAR thin technology.

compression[RW]
type - Number

Indicates the amount of storage space saved using Compression.

data_reduction[RW]
type - Number

Indicates the amount of storage space saved using deduplication and compression together.

deduplication[RW]
type - Number

The deduplication ratio indicates the amount of storage space saved with 3PAR thin deduplication.

over_provisioning[RW]
type - Number

Overprovisioning ratio.

Public Class Methods

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

  self.compaction = object_hash['compaction']

  self.compression = object_hash['compression']

  self.data_reduction = object_hash['dataReduction']

  self.over_provisioning = object_hash['overProvisioning']

  self.deduplication = object_hash['deduplication']

end