Class: Google::Apis::RedisV1::ClusterPersistenceConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb

Overview

Configuration of the persistence functionality.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterPersistenceConfig

Returns a new instance of ClusterPersistenceConfig.



370
371
372
# File 'lib/google/apis/redis_v1/classes.rb', line 370

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#aof_configGoogle::Apis::RedisV1::AofConfig

Configuration of the AOF based persistence. Corresponds to the JSON property aofConfig



358
359
360
# File 'lib/google/apis/redis_v1/classes.rb', line 358

def aof_config
  @aof_config
end

#modeString

Optional. The mode of persistence. Corresponds to the JSON property mode

Returns:

  • (String)


363
364
365
# File 'lib/google/apis/redis_v1/classes.rb', line 363

def mode
  @mode
end

#rdb_configGoogle::Apis::RedisV1::RdbConfig

Configuration of the RDB based persistence. Corresponds to the JSON property rdbConfig



368
369
370
# File 'lib/google/apis/redis_v1/classes.rb', line 368

def rdb_config
  @rdb_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



375
376
377
378
379
# File 'lib/google/apis/redis_v1/classes.rb', line 375

def update!(**args)
  @aof_config = args[:aof_config] if args.key?(:aof_config)
  @mode = args[:mode] if args.key?(:mode)
  @rdb_config = args[:rdb_config] if args.key?(:rdb_config)
end