google-apis-bigtableadmin_v2 0.60.0 → 0.62.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: b4c09dbeabfa6dd4788312f0890abc9043789450f72a5bbe6c7281849cbe7794
4
- data.tar.gz: 996f1b7fc35dad56769238b00dac195dce2059e88076831d904966a9bc71ae28
3
+ metadata.gz: 12f7a2319362549383453c87ab4c5f498267ec362b6467f8f01d75fa87f0285d
4
+ data.tar.gz: fc0782e2a9290b03eb68d831e102308127ed26e2150a9e77f2f87ca98759e67e
5
5
  SHA512:
6
- metadata.gz: 59dd4890043ca97d899e051ff7f53876dedbc9e615d919e1c2e0bce1cfbb4a87ec44e86d25c62b0a6e940ce9bd0cc95aa812af3f4e505345932f55987c5cc602
7
- data.tar.gz: 34130cefed8ce7773d8d4f7e43db22c7c35fcbf9a9e9f52ada5b63224cc7e1d2f13f2112b8601c30bbe5c1d20b0d15ff519047f264c307f86170824de2ddb54d
6
+ metadata.gz: 2b978f8a0d49c651a9e47de8b0672e9b104f508406e573166a3276fcfa6e6cfe80a58fc7e294288bada0e2e32fb0ebb08891d949d15a22d37a965a980eb87b43
7
+ data.tar.gz: 9c140647d0182144fe88e7ae4a1f532bb58612e644f905b49b7bec335dfdddb3085f0ccd1cda829b7d05c3db0f298b1df4d2edd9804a8b7bdb877bb9f1a9a116
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.62.0 (2024-09-15)
4
+
5
+ * Regenerated from discovery document revision 20240904
6
+
7
+ ### v0.61.0 (2024-09-01)
8
+
9
+ * Regenerated from discovery document revision 20240824
10
+
3
11
  ### v0.60.0 (2024-08-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20240806
@@ -2736,6 +2736,15 @@ module Google
2736
2736
  # @return [Array<String>]
2737
2737
  attr_accessor :cluster_ids
2738
2738
 
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.
2744
+ # Corresponds to the JSON property `rowAffinity`
2745
+ # @return [Google::Apis::BigtableadminV2::RowAffinity]
2746
+ attr_accessor :row_affinity
2747
+
2739
2748
  def initialize(**args)
2740
2749
  update!(**args)
2741
2750
  end
@@ -2743,6 +2752,7 @@ module Google
2743
2752
  # Update properties of this object
2744
2753
  def update!(**args)
2745
2754
  @cluster_ids = args[:cluster_ids] if args.key?(:cluster_ids)
2755
+ @row_affinity = args[:row_affinity] if args.key?(:row_affinity)
2746
2756
  end
2747
2757
  end
2748
2758
 
@@ -3152,6 +3162,23 @@ module Google
3152
3162
  end
3153
3163
  end
3154
3164
 
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.
3170
+ class RowAffinity
3171
+ include Google::Apis::Core::Hashable
3172
+
3173
+ def initialize(**args)
3174
+ update!(**args)
3175
+ end
3176
+
3177
+ # Update properties of this object
3178
+ def update!(**args)
3179
+ end
3180
+ end
3181
+
3155
3182
  # Request message for `SetIamPolicy` method.
3156
3183
  class SetIamPolicyRequest
3157
3184
  include Google::Apis::Core::Hashable
@@ -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.60.0"
19
+ GEM_VERSION = "0.62.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 = "20240806"
25
+ REVISION = "20240904"
26
26
  end
27
27
  end
28
28
  end
@@ -580,6 +580,12 @@ module Google
580
580
  include Google::Apis::Core::JsonObjectSupport
581
581
  end
582
582
 
583
+ class RowAffinity
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
583
589
  class SetIamPolicyRequest
584
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
591
 
@@ -1458,6 +1464,8 @@ module Google
1458
1464
  # @private
1459
1465
  class Representation < Google::Apis::Core::JsonRepresentation
1460
1466
  collection :cluster_ids, as: 'clusterIds'
1467
+ property :row_affinity, as: 'rowAffinity', class: Google::Apis::BigtableadminV2::RowAffinity, decorator: Google::Apis::BigtableadminV2::RowAffinity::Representation
1468
+
1461
1469
  end
1462
1470
  end
1463
1471
 
@@ -1561,6 +1569,12 @@ module Google
1561
1569
  end
1562
1570
  end
1563
1571
 
1572
+ class RowAffinity
1573
+ # @private
1574
+ class Representation < Google::Apis::Core::JsonRepresentation
1575
+ end
1576
+ end
1577
+
1564
1578
  class SetIamPolicyRequest
1565
1579
  # @private
1566
1580
  class Representation < Google::Apis::Core::JsonRepresentation
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.60.0
4
+ version: 0.62.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-08-18 00:00:00.000000000 Z
11
+ date: 2024-09-15 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.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.62.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: []