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

MendelDebugInput

import type { MendelDebugInput } from "https://googleapis.deno.dev/v1/jobs:v4.ts";

Message representing input to a Mendel server for debug forcing. See go/mendel-debug-forcing for more details. Next ID: 2

interface MendelDebugInput {
namespacedDebugInput?: {
[key: string]: NamespacedDebugInput;
}
;
}

§Properties

§
namespacedDebugInput?: {
[key: string]: NamespacedDebugInput;
}
[src]

When a request spans multiple servers, a MendelDebugInput may travel with the request and take effect in all the servers. This field is a map of namespaces to NamespacedMendelDebugInput protos. In a single server, up to two NamespacedMendelDebugInput protos are applied: 1. NamespacedMendelDebugInput with the global namespace (key == ""). 2. NamespacedMendelDebugInput with the server's namespace. When both NamespacedMendelDebugInput protos are present, they are merged. See go/mendel-debug-forcing for more details.