Class: Google::Apis::AlloydbV1alpha::ReadPoolConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alloydb_v1alpha/classes.rb,
lib/google/apis/alloydb_v1alpha/representations.rb,
lib/google/apis/alloydb_v1alpha/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.



3426
3427
3428
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3426

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

Instance Attribute Details

#auto_scaling_configGoogle::Apis::AlloydbV1alpha::AutoScalingConfig

Configuration for autoscaling. Corresponds to the JSON property autoScalingConfig



3419
3420
3421
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3419

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)


3424
3425
3426
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3424

def node_count
  @node_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3431
3432
3433
3434
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3431

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