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

TableProgress

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

Progress info for copying a table's data to the new cluster.

interface TableProgress {
estimatedCopiedBytes?: bigint;
estimatedSizeBytes?: bigint;
state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "COPYING"
| "COMPLETED"
| "CANCELLED";
}

§Properties

§
estimatedCopiedBytes?: bigint
[src]

Estimate of the number of bytes copied so far for this table. This will eventually reach 'estimated_size_bytes' unless the table copy is CANCELLED.

§
estimatedSizeBytes?: bigint
[src]

Estimate of the size of the table to be copied.

§
state?: "STATE_UNSPECIFIED" | "PENDING" | "COPYING" | "COMPLETED" | "CANCELLED"
[src]