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.



3500
3501
3502
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3500

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

Instance Attribute Details

#auto_scaling_configGoogle::Apis::AlloydbV1beta::AutoScalingConfig

Configuration for autoscaling. Corresponds to the JSON property autoScalingConfig



3493
3494
3495
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3493

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)


3498
3499
3500
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3498

def node_count
  @node_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3505
3506
3507
3508
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3505

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