Class: Google::Apis::AlloydbV1::ReadPoolConfig

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



1774
1775
1776
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1774

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

Instance Attribute Details

#node_countFixnum

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

Returns:

  • (Fixnum)


1772
1773
1774
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1772

def node_count
  @node_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1779
1780
1781
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1779

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