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

OperationMetadata

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

Represents the metadata of a long-running operation.

interface OperationMetadata {
additionalStatus?: {
[key: string]: string;
}
;
apiVersion?: string;
createTime?: Date;
endTime?: Date;
requestedCancellation?: boolean;
statusDetail?: string;
target?: string;
verb?: string;
}

§Properties

§
additionalStatus?: {
[key: string]: string;
}
[src]

Map to hold any additional status info for the operation If there is an accelerator being enabled/disabled/deleted, this will be populated with accelerator name as key and status as ENABLING, DISABLING or DELETING

§
apiVersion?: string
[src]

API version used to start the operation.

§
createTime?: Date
[src]

The time the operation was created.

§
endTime?: Date
[src]

The time the operation finished running.

§
requestedCancellation?: boolean
[src]

Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

§
statusDetail?: string
[src]

Human-readable status of the operation if any.

§
target?: string
[src]

Server-defined resource path for the target of the operation.

§
verb?: string
[src]

Name of the verb executed by the operation.