Class: Google::Apis::AlloydbV1beta::ReadPoolConfig

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

Overview

Configuration for a read pool instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReadPoolConfig

Returns a new instance of ReadPoolConfig.



3392
3393
3394
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3392

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

Instance Attribute Details

#auto_scaling_configGoogle::Apis::AlloydbV1beta::AutoScalingConfig

Configuration for autoscaling. Corresponds to the JSON property autoScalingConfig



3385
3386
3387
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3385

def auto_scaling_config
  @auto_scaling_config
end

#node_countFixnum

Read capacity, i.e. number of nodes in a read pool instance. Corresponds to the JSON property nodeCount

Returns:

  • (Fixnum)


3390
3391
3392
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3390

def node_count
  @node_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3397
3398
3399
3400
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3397

def update!(**args)
  @auto_scaling_config = args[:auto_scaling_config] if args.key?(:auto_scaling_config)
  @node_count = args[:node_count] if args.key?(:node_count)
end