TransferStatusMetric
import type { TransferStatusMetric } from "https://googleapis.deno.dev/v1/bigquerydatatransfer:v1.ts";Metrics for tracking the transfer status.
interface TransferStatusMetric {
completed?: bigint;
failed?: bigint;
pending?: bigint;
total?: bigint;
unit?: "TRANSFER_STATUS_UNIT_UNSPECIFIED" | "TRANSFER_STATUS_UNIT_BYTES" | "TRANSFER_STATUS_UNIT_OBJECTS";
}