Class: Google::Apis::AlloydbV1alpha::ReadPoolConfig
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1alpha::ReadPoolConfig
- 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
-
#auto_scaling_config ⇒ Google::Apis::AlloydbV1alpha::AutoScalingConfig
Configuration for autoscaling.
-
#node_count ⇒ Fixnum
Read capacity, i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReadPoolConfig
constructor
A new instance of ReadPoolConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReadPoolConfig
Returns a new instance of ReadPoolConfig.
3432 3433 3434 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3432 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_scaling_config ⇒ Google::Apis::AlloydbV1alpha::AutoScalingConfig
Configuration for autoscaling.
Corresponds to the JSON property autoScalingConfig
3425 3426 3427 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3425 def auto_scaling_config @auto_scaling_config end |
#node_count ⇒ Fixnum
Read capacity, i.e. number of nodes in a read pool instance.
Corresponds to the JSON property nodeCount
3430 3431 3432 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3430 def node_count @node_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3437 3438 3439 3440 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 3437 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 |