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

InstanceOperationProgress

import type { InstanceOperationProgress } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Encapsulates progress related information for a Cloud Spanner long running instance operations.

interface InstanceOperationProgress {
endTime?: Date;
progressPercent?: number;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

If set, the time at which this operation failed or was completed successfully.

§
progressPercent?: number
[src]

Percent completion of the operation. Values are between 0 and 100 inclusive.

§
startTime?: Date
[src]

Time the request was received.