Class: Google::Apis::BigtableadminV2::CheckConsistencyResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CheckConsistencyResponse

Returns a new instance of CheckConsistencyResponse.



315
316
317
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 315

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consistentBoolean 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

Returns:

  • (Boolean)


312
313
314
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 312

def consistent
  @consistent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



320
321
322
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 320

def update!(**args)
  @consistent = args[:consistent] if args.key?(:consistent)
end