Class: Google::Apis::BigtableadminV2::CheckConsistencyResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CheckConsistencyResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CheckConsistencyResponse
Returns a new instance of CheckConsistencyResponse
279 280 281 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 279 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
276 277 278 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 276 def consistent @consistent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
284 285 286 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 284 def update!(**args) @consistent = args[:consistent] if args.key?(:consistent) end |