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

SerialPortOutput

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

An instance serial console output.

interface SerialPortOutput {
contents?: string;
kind?: string;
next?: bigint;
selfLink?: string;
start?: bigint;
}

§Properties

§
contents?: string
[src]

[Output Only] The contents of the console output.

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#serialPortOutput for serial port output.

§
start?: bigint
[src]

The starting byte position of the output that was returned. This should match the start parameter sent with the request. If the serial console output exceeds the size of the buffer (1 MB), older output is overwritten by newer content. The output start value will indicate the byte position of the output that was returned, which might be different than the start value that was specified in the request.