@@ -659,6 +659,11 @@ class Cluster
659
659
# @return [String]
660
660
attr_accessor :name
661
661
662
+ # Immutable. The node scaling factor of this cluster.
663
+ # Corresponds to the JSON property `nodeScalingFactor`
664
+ # @return [String]
665
+ attr_accessor :node_scaling_factor
666
+
662
667
# The number of nodes in the cluster. If no value is set, Cloud Bigtable
663
668
# automatically allocates nodes based on your data footprint and optimized for
664
669
# 50% storage utilization.
@@ -682,6 +687,7 @@ def update!(**args)
682
687
@encryption_config = args [ :encryption_config ] if args . key? ( :encryption_config )
683
688
@location = args [ :location ] if args . key? ( :location )
684
689
@name = args [ :name ] if args . key? ( :name )
690
+ @node_scaling_factor = args [ :node_scaling_factor ] if args . key? ( :node_scaling_factor )
685
691
@serve_nodes = args [ :serve_nodes ] if args . key? ( :serve_nodes )
686
692
@state = args [ :state ] if args . key? ( :state )
687
693
end
@@ -2736,11 +2742,15 @@ class MultiClusterRoutingUseAny
2736
2742
# @return [Array<String>]
2737
2743
attr_accessor :cluster_ids
2738
2744
2739
- # If enabled, the AFE will route the request based on the row key of the request,
2740
- # rather than randomly. Instead, each row key will be assigned to a cluster,
2741
- # and will stick to that cluster. If clusters are added or removed, then this
2742
- # may affect which row keys stick to which clusters. To avoid this, users can
2743
- # specify a group cluster.
2745
+ # If enabled, Bigtable will route the request based on the row key of the
2746
+ # request, rather than randomly. Instead, each row key will be assigned to a
2747
+ # cluster, and will stick to that cluster. If clusters are added or removed,
2748
+ # then this may affect which row keys stick to which clusters. To avoid this,
2749
+ # users can use a cluster group to specify which clusters are to be used. In
2750
+ # this case, new clusters that are not a part of the cluster group will not be
2751
+ # routed to, and routing will be unaffected by the new cluster. Moreover,
2752
+ # clusters specified in the cluster group cannot be deleted unless removed from
2753
+ # the cluster group.
2744
2754
# Corresponds to the JSON property `rowAffinity`
2745
2755
# @return [Google::Apis::BigtableadminV2::RowAffinity]
2746
2756
attr_accessor :row_affinity
@@ -3162,11 +3172,15 @@ def update!(**args)
3162
3172
end
3163
3173
end
3164
3174
3165
- # If enabled, the AFE will route the request based on the row key of the request,
3166
- # rather than randomly. Instead, each row key will be assigned to a cluster,
3167
- # and will stick to that cluster. If clusters are added or removed, then this
3168
- # may affect which row keys stick to which clusters. To avoid this, users can
3169
- # specify a group cluster.
3175
+ # If enabled, Bigtable will route the request based on the row key of the
3176
+ # request, rather than randomly. Instead, each row key will be assigned to a
3177
+ # cluster, and will stick to that cluster. If clusters are added or removed,
3178
+ # then this may affect which row keys stick to which clusters. To avoid this,
3179
+ # users can use a cluster group to specify which clusters are to be used. In
3180
+ # this case, new clusters that are not a part of the cluster group will not be
3181
+ # routed to, and routing will be unaffected by the new cluster. Moreover,
3182
+ # clusters specified in the cluster group cannot be deleted unless removed from
3183
+ # the cluster group.
3170
3184
class RowAffinity
3171
3185
include Google ::Apis ::Core ::Hashable
3172
3186
0 commit comments