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

GoogleCloudDatacatalogV1UsageStats

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

Detailed statistics on the entry's usage. Usage statistics have the following limitations: - Only BigQuery tables have them. - They only include BigQuery query jobs. - They might be underestimated because wildcard table references are not yet counted. For more information, see [Querying multiple tables using a wildcard table] (https://cloud.google.com/bigquery/docs/querying-wildcard-tables)

interface GoogleCloudDatacatalogV1UsageStats {
totalCancellations?: number;
totalCompletions?: number;
totalExecutionTimeForCompletionsMillis?: number;
totalFailures?: number;
}

§Properties

§
totalCancellations?: number
[src]

The number of cancelled attempts to use the underlying entry.

§
totalCompletions?: number
[src]

The number of successful uses of the underlying entry.

§
totalExecutionTimeForCompletionsMillis?: number
[src]

Total time spent only on successful uses, in milliseconds.

§
totalFailures?: number
[src]

The number of failed attempts to use the underlying entry.