Interface CheckConsistencyRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
CheckConsistencyRequest, CheckConsistencyRequest.Builder

public interface CheckConsistencyRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Required.
    com.google.protobuf.ByteString
    Required.
    Checks that reads using an app profile with `DataBoostIsolationReadOnly` can see all writes committed before the token was created, but only if the read and write target the same cluster.
    Checks that reads using an app profile with `DataBoostIsolationReadOnly` can see all writes committed before the token was created, but only if the read and write target the same cluster.
     
    Required.
    com.google.protobuf.ByteString
    Required.
    Checks that reads using an app profile with `StandardIsolation` can see all writes committed before the token was created, even if the read and write target different clusters.
    Checks that reads using an app profile with `StandardIsolation` can see all writes committed before the token was created, even if the read and write target different clusters.
    boolean
    Checks that reads using an app profile with `DataBoostIsolationReadOnly` can see all writes committed before the token was created, but only if the read and write target the same cluster.
    boolean
    Checks that reads using an app profile with `StandardIsolation` can see all writes committed before the token was created, even if the read and write target different clusters.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getName

      String getName()
       Required. The unique name of the Table for which to check replication
       consistency. Values are of the form
       `projects/{project}/instances/{instance}/tables/{table}`.
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Required. The unique name of the Table for which to check replication
       consistency. Values are of the form
       `projects/{project}/instances/{instance}/tables/{table}`.
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for name.
    • getConsistencyToken

      String getConsistencyToken()
       Required. The token created using GenerateConsistencyToken for the Table.
       
      string consistency_token = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The consistencyToken.
    • getConsistencyTokenBytes

      com.google.protobuf.ByteString getConsistencyTokenBytes()
       Required. The token created using GenerateConsistencyToken for the Table.
       
      string consistency_token = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The bytes for consistencyToken.
    • hasStandardReadRemoteWrites

      boolean hasStandardReadRemoteWrites()
       Checks that reads using an app profile with `StandardIsolation` can
       see all writes committed before the token was created, even if the
       read and write target different clusters.
       
      .google.bigtable.admin.v2.StandardReadRemoteWrites standard_read_remote_writes = 3;
      Returns:
      Whether the standardReadRemoteWrites field is set.
    • getStandardReadRemoteWrites

      StandardReadRemoteWrites getStandardReadRemoteWrites()
       Checks that reads using an app profile with `StandardIsolation` can
       see all writes committed before the token was created, even if the
       read and write target different clusters.
       
      .google.bigtable.admin.v2.StandardReadRemoteWrites standard_read_remote_writes = 3;
      Returns:
      The standardReadRemoteWrites.
    • getStandardReadRemoteWritesOrBuilder

      StandardReadRemoteWritesOrBuilder getStandardReadRemoteWritesOrBuilder()
       Checks that reads using an app profile with `StandardIsolation` can
       see all writes committed before the token was created, even if the
       read and write target different clusters.
       
      .google.bigtable.admin.v2.StandardReadRemoteWrites standard_read_remote_writes = 3;
    • hasDataBoostReadLocalWrites

      boolean hasDataBoostReadLocalWrites()
       Checks that reads using an app profile with `DataBoostIsolationReadOnly`
       can see all writes committed before the token was created, but only if
       the read and write target the same cluster.
       
      .google.bigtable.admin.v2.DataBoostReadLocalWrites data_boost_read_local_writes = 4;
      Returns:
      Whether the dataBoostReadLocalWrites field is set.
    • getDataBoostReadLocalWrites

      DataBoostReadLocalWrites getDataBoostReadLocalWrites()
       Checks that reads using an app profile with `DataBoostIsolationReadOnly`
       can see all writes committed before the token was created, but only if
       the read and write target the same cluster.
       
      .google.bigtable.admin.v2.DataBoostReadLocalWrites data_boost_read_local_writes = 4;
      Returns:
      The dataBoostReadLocalWrites.
    • getDataBoostReadLocalWritesOrBuilder

      DataBoostReadLocalWritesOrBuilder getDataBoostReadLocalWritesOrBuilder()
       Checks that reads using an app profile with `DataBoostIsolationReadOnly`
       can see all writes committed before the token was created, but only if
       the read and write target the same cluster.
       
      .google.bigtable.admin.v2.DataBoostReadLocalWrites data_boost_read_local_writes = 4;
    • getModeCase