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.



3405
3406
3407
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3405

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

Instance Attribute Details

#auto_scaling_configGoogle::Apis::AlloydbV1beta::AutoScalingConfig

Configuration for autoscaling. Corresponds to the JSON property autoScalingConfig



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

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)


3403
3404
3405
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3403

def node_count
  @node_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3410
3411
3412
3413
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3410

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