Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CheckConsistencyRequest

import type { CheckConsistencyRequest } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

Request message for google.bigtable.admin.v2.BigtableTableAdmin.CheckConsistency

interface CheckConsistencyRequest {
consistencyToken?: string;
dataBoostReadLocalWrites?: DataBoostReadLocalWrites;
standardReadRemoteWrites?: StandardReadRemoteWrites;
}

§Properties

§
consistencyToken?: string
[src]

Required. The token created using GenerateConsistencyToken for the Table.

§
dataBoostReadLocalWrites?: DataBoostReadLocalWrites
[src]

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.

§
standardReadRemoteWrites?: StandardReadRemoteWrites
[src]

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.