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

ExecStepConfig

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

Common configurations for an ExecStep.

interface ExecStepConfig {
allowedSuccessCodes?: number[];
gcsObject?: GcsObject;
interpreter?:
| "INTERPRETER_UNSPECIFIED"
| "NONE"
| "SHELL"
| "POWERSHELL";
localPath?: string;
}

§Properties

§
allowedSuccessCodes?: number[]
[src]

Defaults to [0]. A list of possible return values that the execution can return to indicate a success.

§
gcsObject?: GcsObject
[src]

A Cloud Storage object containing the executable.

§
interpreter?: "INTERPRETER_UNSPECIFIED" | "NONE" | "SHELL" | "POWERSHELL"
[src]

The script interpreter to use to run the script. If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with [shebang lines] (https://en.wikipedia.org/wiki/Shebang_(Unix)).

§
localPath?: string
[src]

An absolute path to the executable on the VM.