Class: Google::Apis::BigtableadminV2::CheckConsistencyResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CheckConsistencyResponse
- 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
Response message for google.bigtable.admin.v2.BigtableTableAdmin. CheckConsistency
Instance Attribute Summary collapse
-
#consistent ⇒ Boolean
(also: #consistent?)
True only if the token is consistent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CheckConsistencyResponse
constructor
A new instance of CheckConsistencyResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CheckConsistencyResponse
Returns a new instance of CheckConsistencyResponse.
600 601 602 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 600 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consistent ⇒ Boolean Also known as: consistent?
True only if the token is consistent. A token is consistent if replication has
caught up with the restrictions specified in the request.
Corresponds to the JSON property consistent
597 598 599 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 597 def consistent @consistent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
605 606 607 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 605 def update!(**args) @consistent = args[:consistent] if args.key?(:consistent) end |