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

InefficientQueryInfo

import type { InefficientQueryInfo } from "https://googleapis.deno.dev/v1/databasecenter:v1beta.ts";

Metadata about inefficient query signal info for a database resource.

interface InefficientQueryInfo {
database?: string;
impactedQueriesCount?: bigint;
sqlIndexStatement?: string;
storageCostBytes?: bigint;
table?: string;
}

§Properties

§
database?: string
[src]

Name of the database where index is required. For example, "db1", which is the name of the database present in the instance.

§
impactedQueriesCount?: bigint
[src]

Count of queries to be impacted if index is applied

§
sqlIndexStatement?: string
[src]

SQL statement of the index. Based on the ddl type, this will be either CREATE INDEX or DROP INDEX.

§
storageCostBytes?: bigint
[src]

Cost of additional disk usage in bytes

§
table?: string
[src]

Name of the table where index is required