google-apis-bigtableadmin_v2 0.43.0 → 0.45.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: 0a04369fa00b7442226e16c3516037b4616d1831e85317fa73f2132cef98f75e
4
- data.tar.gz: 6426f4bdcda8179173fb08c56b93b2cfe2d75e530f5dc93defecd3703763e365
3
+ metadata.gz: dc109b3e77866b1c5e6a1c1af3c8c99c434efeac904f9ca74b4ec54995d80388
4
+ data.tar.gz: d675b61d14e186021ae75f3b70d8a3f06488d833597329bd37864a12172c7fa5
5
5
  SHA512:
6
- metadata.gz: 36d518f89099f34970db254fcdcf8ca89c162ad34d7209681783f91aadacddccc608e1afc6fd85c44bf725c86c6934903bc11e521199d7e9f8cde38e4a83e611
7
- data.tar.gz: 69b6cf79294b343fe72c53ec5e768c7d78b3496b5e5bcab84d1f92bb5512acb3961f54a9b2e2f49ec72a4e2274addb1c110407c9ea7186418bbed85cb86c93b8
6
+ metadata.gz: 7f88a428679ec9cb53ada9c41fabe7a2b218c47e6b4a45565bd4170d8da3f6bfebadae23e94adcaa8f34116122b485069ce2686cc5e7111c19881fa021e87ac0
7
+ data.tar.gz: cd2086b56107bc4cb471a532de7edc8097e7f8e7ff9e827692d096344172938ccaf01c41b3be504fc3f31f24cf38596e67c7e50b20c8c85bf7f0e627e9fcc91b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.45.0 (2023-11-05)
4
+
5
+ * Regenerated from discovery document revision 20231029
6
+
7
+ ### v0.44.0 (2023-10-22)
8
+
9
+ * Regenerated from discovery document revision 20231013
10
+
3
11
  ### v0.43.0 (2023-10-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20230920
@@ -57,6 +57,13 @@ module Google
57
57
  # @return [String]
58
58
  attr_accessor :name
59
59
 
60
+ # This field has been deprecated in favor of `standard_isolation.priority`. If
61
+ # you set this field, `standard_isolation.priority` will be set instead. The
62
+ # priority of requests sent using this app profile.
63
+ # Corresponds to the JSON property `priority`
64
+ # @return [String]
65
+ attr_accessor :priority
66
+
60
67
  # Unconditionally routes all read/write requests to a specific cluster. This
61
68
  # option preserves read-your-writes consistency but does not improve
62
69
  # availability.
@@ -64,6 +71,11 @@ module Google
64
71
  # @return [Google::Apis::BigtableadminV2::SingleClusterRouting]
65
72
  attr_accessor :single_cluster_routing
66
73
 
74
+ # Standard options for isolating this app profile's traffic from other use cases.
75
+ # Corresponds to the JSON property `standardIsolation`
76
+ # @return [Google::Apis::BigtableadminV2::StandardIsolation]
77
+ attr_accessor :standard_isolation
78
+
67
79
  def initialize(**args)
68
80
  update!(**args)
69
81
  end
@@ -74,7 +86,9 @@ module Google
74
86
  @etag = args[:etag] if args.key?(:etag)
75
87
  @multi_cluster_routing_use_any = args[:multi_cluster_routing_use_any] if args.key?(:multi_cluster_routing_use_any)
76
88
  @name = args[:name] if args.key?(:name)
89
+ @priority = args[:priority] if args.key?(:priority)
77
90
  @single_cluster_routing = args[:single_cluster_routing] if args.key?(:single_cluster_routing)
91
+ @standard_isolation = args[:standard_isolation] if args.key?(:standard_isolation)
78
92
  end
79
93
  end
80
94
 
@@ -444,6 +458,12 @@ module Google
444
458
  # @return [String]
445
459
  attr_accessor :consistency_token
446
460
 
461
+ # Checks that all writes before the consistency token was generated is
462
+ # replicated in every cluster and readable.
463
+ # Corresponds to the JSON property `standardReadRemoteWrites`
464
+ # @return [Google::Apis::BigtableadminV2::StandardReadRemoteWrites]
465
+ attr_accessor :standard_read_remote_writes
466
+
447
467
  def initialize(**args)
448
468
  update!(**args)
449
469
  end
@@ -451,6 +471,7 @@ module Google
451
471
  # Update properties of this object
452
472
  def update!(**args)
453
473
  @consistency_token = args[:consistency_token] if args.key?(:consistency_token)
474
+ @standard_read_remote_writes = args[:standard_read_remote_writes] if args.key?(:standard_read_remote_writes)
454
475
  end
455
476
  end
456
477
 
@@ -1749,12 +1770,6 @@ module Google
1749
1770
  class ModifyColumnFamiliesRequest
1750
1771
  include Google::Apis::Core::Hashable
1751
1772
 
1752
- # If true, ignore safety checks when modifying the column families.
1753
- # Corresponds to the JSON property `ignoreWarnings`
1754
- # @return [Boolean]
1755
- attr_accessor :ignore_warnings
1756
- alias_method :ignore_warnings?, :ignore_warnings
1757
-
1758
1773
  # Required. Modifications to be atomically applied to the specified table's
1759
1774
  # families. Entries are applied in order, meaning that earlier modifications can
1760
1775
  # be masked by later ones (in the case of repeated updates to the same family,
@@ -1769,7 +1784,6 @@ module Google
1769
1784
 
1770
1785
  # Update properties of this object
1771
1786
  def update!(**args)
1772
- @ignore_warnings = args[:ignore_warnings] if args.key?(:ignore_warnings)
1773
1787
  @modifications = args[:modifications] if args.key?(:modifications)
1774
1788
  end
1775
1789
  end
@@ -2307,6 +2321,39 @@ module Google
2307
2321
  end
2308
2322
  end
2309
2323
 
2324
+ # Standard options for isolating this app profile's traffic from other use cases.
2325
+ class StandardIsolation
2326
+ include Google::Apis::Core::Hashable
2327
+
2328
+ # The priority of requests sent using this app profile.
2329
+ # Corresponds to the JSON property `priority`
2330
+ # @return [String]
2331
+ attr_accessor :priority
2332
+
2333
+ def initialize(**args)
2334
+ update!(**args)
2335
+ end
2336
+
2337
+ # Update properties of this object
2338
+ def update!(**args)
2339
+ @priority = args[:priority] if args.key?(:priority)
2340
+ end
2341
+ end
2342
+
2343
+ # Checks that all writes before the consistency token was generated is
2344
+ # replicated in every cluster and readable.
2345
+ class StandardReadRemoteWrites
2346
+ include Google::Apis::Core::Hashable
2347
+
2348
+ def initialize(**args)
2349
+ update!(**args)
2350
+ end
2351
+
2352
+ # Update properties of this object
2353
+ def update!(**args)
2354
+ end
2355
+ end
2356
+
2310
2357
  # The `Status` type defines a logical error model that is suitable for different
2311
2358
  # programming environments, including REST APIs and RPC APIs. It is used by [
2312
2359
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.43.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230920"
25
+ REVISION = "20231029"
26
26
  end
27
27
  end
28
28
  end
@@ -400,6 +400,18 @@ module Google
400
400
  include Google::Apis::Core::JsonObjectSupport
401
401
  end
402
402
 
403
+ class StandardIsolation
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
409
+ class StandardReadRemoteWrites
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
403
415
  class Status
404
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
417
 
@@ -486,8 +498,11 @@ module Google
486
498
  property :multi_cluster_routing_use_any, as: 'multiClusterRoutingUseAny', class: Google::Apis::BigtableadminV2::MultiClusterRoutingUseAny, decorator: Google::Apis::BigtableadminV2::MultiClusterRoutingUseAny::Representation
487
499
 
488
500
  property :name, as: 'name'
501
+ property :priority, as: 'priority'
489
502
  property :single_cluster_routing, as: 'singleClusterRouting', class: Google::Apis::BigtableadminV2::SingleClusterRouting, decorator: Google::Apis::BigtableadminV2::SingleClusterRouting::Representation
490
503
 
504
+ property :standard_isolation, as: 'standardIsolation', class: Google::Apis::BigtableadminV2::StandardIsolation, decorator: Google::Apis::BigtableadminV2::StandardIsolation::Representation
505
+
491
506
  end
492
507
  end
493
508
 
@@ -572,6 +587,8 @@ module Google
572
587
  # @private
573
588
  class Representation < Google::Apis::Core::JsonRepresentation
574
589
  property :consistency_token, as: 'consistencyToken'
590
+ property :standard_read_remote_writes, as: 'standardReadRemoteWrites', class: Google::Apis::BigtableadminV2::StandardReadRemoteWrites, decorator: Google::Apis::BigtableadminV2::StandardReadRemoteWrites::Representation
591
+
575
592
  end
576
593
  end
577
594
 
@@ -944,7 +961,6 @@ module Google
944
961
  class ModifyColumnFamiliesRequest
945
962
  # @private
946
963
  class Representation < Google::Apis::Core::JsonRepresentation
947
- property :ignore_warnings, as: 'ignoreWarnings'
948
964
  collection :modifications, as: 'modifications', class: Google::Apis::BigtableadminV2::Modification, decorator: Google::Apis::BigtableadminV2::Modification::Representation
949
965
 
950
966
  end
@@ -1081,6 +1097,19 @@ module Google
1081
1097
  end
1082
1098
  end
1083
1099
 
1100
+ class StandardIsolation
1101
+ # @private
1102
+ class Representation < Google::Apis::Core::JsonRepresentation
1103
+ property :priority, as: 'priority'
1104
+ end
1105
+ end
1106
+
1107
+ class StandardReadRemoteWrites
1108
+ # @private
1109
+ class Representation < Google::Apis::Core::JsonRepresentation
1110
+ end
1111
+ end
1112
+
1084
1113
  class Status
1085
1114
  # @private
1086
1115
  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.43.0
4
+ version: 0.45.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: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-11-05 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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.45.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: []