google-apis-bigtableadmin_v2 0.62.0 → 0.63.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b7f56da6a6fd562a762cd0122926a2d16b100adb8f82d8ac163d20910f534d9
|
4
|
+
data.tar.gz: cacbb3ad35d494902e65069e386f7ac27e97112f8e2a27af2911acecad2b829e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3d8073295e35875f8c1b87171c1edf56a512c5aabec488d9fe158d04992b80b6e01fdfd26e64a036f6e286f7cdc85d9068d52f06d4d077be3b32545b1c93cf2
|
7
|
+
data.tar.gz: ff89ecf7dd0949bc68aa8349506292d578542bc09c21be5f7054fcbe22ae714f401f302639ea41c27a29d370e03fbdd4e64eb839db3d6427e6e3b982b4e25dd7
|
data/CHANGELOG.md
CHANGED
@@ -659,6 +659,11 @@ module Google
|
|
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 @@ module Google
|
|
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 @@ module Google
|
|
2736
2742
|
# @return [Array<String>]
|
2737
2743
|
attr_accessor :cluster_ids
|
2738
2744
|
|
2739
|
-
# If enabled,
|
2740
|
-
# rather than randomly. Instead, each row key will be assigned to a
|
2741
|
-
# and will stick to that cluster. If clusters are added or removed,
|
2742
|
-
# may affect which row keys stick to which clusters. To avoid this,
|
2743
|
-
#
|
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 @@ module Google
|
|
3162
3172
|
end
|
3163
3173
|
end
|
3164
3174
|
|
3165
|
-
# If enabled,
|
3166
|
-
# rather than randomly. Instead, each row key will be assigned to a
|
3167
|
-
# and will stick to that cluster. If clusters are added or removed,
|
3168
|
-
# may affect which row keys stick to which clusters. To avoid this,
|
3169
|
-
#
|
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
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigtableadminV2
|
18
18
|
# Version of the google-apis-bigtableadmin_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigtableadmin_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.63.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|