Class: Google::Apis::BigtableadminV2::CheckConsistencyRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CheckConsistencyRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb
Overview
Request message for google.bigtable.admin.v2.BigtableTableAdmin. CheckConsistency
Instance Attribute Summary collapse
-
#consistency_token ⇒ String
Required.
-
#data_boost_read_local_writes ⇒ Google::Apis::BigtableadminV2::DataBoostReadLocalWrites
Checks that all writes before the consistency token was generated in the same cluster are readable by Databoost.
-
#standard_read_remote_writes ⇒ Google::Apis::BigtableadminV2::StandardReadRemoteWrites
Checks that all writes before the consistency token was generated are replicated in every cluster and readable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CheckConsistencyRequest
constructor
A new instance of CheckConsistencyRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CheckConsistencyRequest
Returns a new instance of CheckConsistencyRequest.
576 577 578 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 576 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consistency_token ⇒ String
Required. The token created using GenerateConsistencyToken for the Table.
Corresponds to the JSON property consistencyToken
562 563 564 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 562 def consistency_token @consistency_token end |
#data_boost_read_local_writes ⇒ Google::Apis::BigtableadminV2::DataBoostReadLocalWrites
Checks that all writes before the consistency token was generated in the same
cluster are readable by Databoost.
Corresponds to the JSON property dataBoostReadLocalWrites
568 569 570 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 568 def data_boost_read_local_writes @data_boost_read_local_writes end |
#standard_read_remote_writes ⇒ Google::Apis::BigtableadminV2::StandardReadRemoteWrites
Checks that all writes before the consistency token was generated are
replicated in every cluster and readable.
Corresponds to the JSON property standardReadRemoteWrites
574 575 576 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 574 def standard_read_remote_writes @standard_read_remote_writes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
581 582 583 584 585 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 581 def update!(**args) @consistency_token = args[:consistency_token] if args.key?(:consistency_token) @data_boost_read_local_writes = args[:data_boost_read_local_writes] if args.key?(:data_boost_read_local_writes) @standard_read_remote_writes = args[:standard_read_remote_writes] if args.key?(:standard_read_remote_writes) end |