google-apis-bigtableadmin_v2 0.44.0 → 0.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc109b3e77866b1c5e6a1c1af3c8c99c434efeac904f9ca74b4ec54995d80388
|
|
4
|
+
data.tar.gz: d675b61d14e186021ae75f3b70d8a3f06488d833597329bd37864a12172c7fa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f88a428679ec9cb53ada9c41fabe7a2b218c47e6b4a45565bd4170d8da3f6bfebadae23e94adcaa8f34116122b485069ce2686cc5e7111c19881fa021e87ac0
|
|
7
|
+
data.tar.gz: cd2086b56107bc4cb471a532de7edc8097e7f8e7ff9e827692d096344172938ccaf01c41b3be504fc3f31f24cf38596e67c7e50b20c8c85bf7f0e627e9fcc91b
|
data/CHANGELOG.md
CHANGED
|
@@ -458,6 +458,12 @@ module Google
|
|
|
458
458
|
# @return [String]
|
|
459
459
|
attr_accessor :consistency_token
|
|
460
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
|
+
|
|
461
467
|
def initialize(**args)
|
|
462
468
|
update!(**args)
|
|
463
469
|
end
|
|
@@ -465,6 +471,7 @@ module Google
|
|
|
465
471
|
# Update properties of this object
|
|
466
472
|
def update!(**args)
|
|
467
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)
|
|
468
475
|
end
|
|
469
476
|
end
|
|
470
477
|
|
|
@@ -2333,6 +2340,20 @@ module Google
|
|
|
2333
2340
|
end
|
|
2334
2341
|
end
|
|
2335
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
|
+
|
|
2336
2357
|
# The `Status` type defines a logical error model that is suitable for different
|
|
2337
2358
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
2338
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.
|
|
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 = "
|
|
25
|
+
REVISION = "20231029"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -406,6 +406,12 @@ module Google
|
|
|
406
406
|
include Google::Apis::Core::JsonObjectSupport
|
|
407
407
|
end
|
|
408
408
|
|
|
409
|
+
class StandardReadRemoteWrites
|
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
|
+
|
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
413
|
+
end
|
|
414
|
+
|
|
409
415
|
class Status
|
|
410
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
417
|
|
|
@@ -581,6 +587,8 @@ module Google
|
|
|
581
587
|
# @private
|
|
582
588
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
583
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
|
+
|
|
584
592
|
end
|
|
585
593
|
end
|
|
586
594
|
|
|
@@ -1096,6 +1104,12 @@ module Google
|
|
|
1096
1104
|
end
|
|
1097
1105
|
end
|
|
1098
1106
|
|
|
1107
|
+
class StandardReadRemoteWrites
|
|
1108
|
+
# @private
|
|
1109
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1110
|
+
end
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1099
1113
|
class Status
|
|
1100
1114
|
# @private
|
|
1101
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.
|
|
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-
|
|
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.
|
|
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: []
|