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

Constructor Details

#initialize(**args) ⇒ CheckConsistencyResponse

Returns a new instance of CheckConsistencyResponse.



362
363
364
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 362

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)


359
360
361
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 359

def consistent
  @consistent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



367
368
369
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 367

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