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

CreateClusterMetadata

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

The metadata for the Operation returned by CreateCluster.

interface CreateClusterMetadata {
finishTime?: Date;
originalRequest?: CreateClusterRequest;
requestTime?: Date;
tables?: {
[key: string]: TableProgress;
}
;
}

§Properties

§
finishTime?: Date
[src]

The time at which the operation failed or was completed successfully.

§
originalRequest?: CreateClusterRequest
[src]

The request that prompted the initiation of this CreateCluster operation.

§
requestTime?: Date
[src]

The time at which the original request was received.

§
tables?: {
[key: string]: TableProgress;
}
[src]

Keys: the full name of each table that existed in the instance when CreateCluster was first called, i.e. projects//instances//tables/. Any table added to the instance by a later API call will be created in the new cluster by that API call, not this one. Values: information on how much of a table's data has been copied to the newly-created cluster so far.