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

SdkBug

import type { SdkBug } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A bug found in the Dataflow SDK.

interface SdkBug {
readonly severity?:
| "SEVERITY_UNSPECIFIED"
| "NOTICE"
| "WARNING"
| "SEVERE";
readonly type?:
| "TYPE_UNSPECIFIED"
| "GENERAL"
| "PERFORMANCE"
| "DATALOSS";
readonly uri?: string;
}

§Properties

§
readonly severity?: "SEVERITY_UNSPECIFIED" | "NOTICE" | "WARNING" | "SEVERE"
[src]

Output only. How severe the SDK bug is.

§
readonly type?: "TYPE_UNSPECIFIED" | "GENERAL" | "PERFORMANCE" | "DATALOSS"
[src]

Output only. Describes the impact of this SDK bug.

§
readonly uri?: string
[src]

Output only. Link to more information on the bug.