Skip to content

Commit d7f107a

Browse files
feat: Automated regeneration of bigtableadmin v2 client (#20295)
Auto-created at 2024-09-29 09:34:19 +0000 using the toys pull request generator.
1 parent 4d56fd1 commit d7f107a

File tree

5 files changed

+32
-12
lines changed

5 files changed

+32
-12
lines changed

api_names_out.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -48265,6 +48265,7 @@
4826548265
"/bigtableadmin:v2/Cluster/encryptionConfig": encryption_config
4826648266
"/bigtableadmin:v2/Cluster/location": location
4826748267
"/bigtableadmin:v2/Cluster/name": name
48268+
"/bigtableadmin:v2/Cluster/nodeScalingFactor": node_scaling_factor
4826848269
"/bigtableadmin:v2/Cluster/serveNodes": serve_nodes
4826948270
"/bigtableadmin:v2/Cluster/state": state
4827048271
"/bigtableadmin:v2/ClusterAutoscalingConfig": cluster_autoscaling_config

generated/google-apis-bigtableadmin_v2/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigtableadmin_v2
22

3+
### v0.63.0 (2024-09-29)
4+
5+
* Regenerated from discovery document revision 20240918
6+
37
### v0.62.0 (2024-09-15)
48

59
* Regenerated from discovery document revision 20240904

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/classes.rb

+24-10
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,11 @@ class Cluster
659659
# @return [String]
660660
attr_accessor :name
661661

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+
662667
# The number of nodes in the cluster. If no value is set, Cloud Bigtable
663668
# automatically allocates nodes based on your data footprint and optimized for
664669
# 50% storage utilization.
@@ -682,6 +687,7 @@ def update!(**args)
682687
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
683688
@location = args[:location] if args.key?(:location)
684689
@name = args[:name] if args.key?(:name)
690+
@node_scaling_factor = args[:node_scaling_factor] if args.key?(:node_scaling_factor)
685691
@serve_nodes = args[:serve_nodes] if args.key?(:serve_nodes)
686692
@state = args[:state] if args.key?(:state)
687693
end
@@ -2736,11 +2742,15 @@ class MultiClusterRoutingUseAny
27362742
# @return [Array<String>]
27372743
attr_accessor :cluster_ids
27382744

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.
27442754
# Corresponds to the JSON property `rowAffinity`
27452755
# @return [Google::Apis::BigtableadminV2::RowAffinity]
27462756
attr_accessor :row_affinity
@@ -3162,11 +3172,15 @@ def update!(**args)
31623172
end
31633173
end
31643174

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.
31703184
class RowAffinity
31713185
include Google::Apis::Core::Hashable
31723186

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/gem_version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module BigtableadminV2
1818
# Version of the google-apis-bigtableadmin_v2 gem
19-
GEM_VERSION = "0.62.0"
19+
GEM_VERSION = "0.63.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.15.1"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240904"
25+
REVISION = "20240918"
2626
end
2727
end
2828
end

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/representations.rb

+1
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
856856

857857
property :location, as: 'location'
858858
property :name, as: 'name'
859+
property :node_scaling_factor, as: 'nodeScalingFactor'
859860
property :serve_nodes, as: 'serveNodes'
860861
property :state, as: 'state'
861862
end

0 commit comments

Comments
 (0)