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

ApiWarning

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

An Admin API warning message.

interface ApiWarning {
code?:
| "SQL_API_WARNING_CODE_UNSPECIFIED"
| "REGION_UNREACHABLE"
| "MAX_RESULTS_EXCEEDS_LIMIT"
| "COMPROMISED_CREDENTIALS"
| "INTERNAL_STATE_FAILURE";
message?: string;
region?: string;
}

§Properties

§
code?: "SQL_API_WARNING_CODE_UNSPECIFIED" | "REGION_UNREACHABLE" | "MAX_RESULTS_EXCEEDS_LIMIT" | "COMPROMISED_CREDENTIALS" | "INTERNAL_STATE_FAILURE"
[src]

Code to uniquely identify the warning type.

§
message?: string
[src]

The warning message.

§
region?: string
[src]

The region name for REGION_UNREACHABLE warning.