class Hpe3parSdk::FlashCache
Attributes
mode[RW]
- type - Number 1: Simulator 2: Real
-
Encrypted CHAP secret of target.
size_gib[RW]
- type - Number
-
The total size of the Flash Cache on the entire system. This might differ from the sizeGib input in the create Flash Cache request if the system has more than two nodes.
state[RW]
- type -
Hpe3parSdk::CPGState
-
State of flash cache
used_size_gib[RW]
- type - Number
-
The used size of the Flash Cache.
Public Class Methods
new(object_hash)
click to toggle source
# File lib/Hpe3parSdk/models.rb, line 794 def initialize(object_hash) if object_hash == nil return end self.mode = object_hash['mode'] self.size_gib = object_hash['sizeGiB'] self.state = object_hash['state'] self.used_size_gib = object_hash['usedSizeGiB'] end