RowCountTest
import type { RowCountTest } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";A test that checks if the number of rows in the result set violates some threshold.
interface RowCountTest  {
comparison?: 
 | "COMPARISON_UNSPECIFIED"
 | "COMPARISON_GT"
 | "COMPARISON_GE"
 | "COMPARISON_LT"
 | "COMPARISON_LE"
 | "COMPARISON_EQ"
 | "COMPARISON_NE";
threshold?: bigint;
}