interface GlobalOpts {
    color?: "always" | "never" | "raw" | "auto";
    debug?: boolean;
    importFile?: string;
    logFlow?: boolean;
    logToStdErr?: boolean;
    logVerbosity?: number;
    suppressOutputs?: boolean;
    suppressProgress?: boolean;
    tracing?: string;
}

Hierarchy (view full)

Properties

color?: "always" | "never" | "raw" | "auto"

Colorize output.

debug?: boolean

Print detailed debugging output during resource operations

importFile?: string

Save any creates seen during the preview into an import file to use with pulumi import

logFlow?: boolean

Flow log settings to child processes (like plugins)

logToStdErr?: boolean

Log to stderr instead of to files

logVerbosity?: number

Enable verbose logging (e.g., v=3); anything >3 is very verbose

suppressOutputs?: boolean

Suppress display of stack outputs (in case they contain sensitive values)

suppressProgress?: boolean

Suppress display of periodic progress dots

tracing?: string

Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file

Generated using TypeDoc