Options controlling the behavior of a Stack.destroy() operation.

interface DestroyOptions {
    color?: "always" | "never" | "raw" | "auto";
    continueOnError?: boolean;
    debug?: boolean;
    excludeProtected?: boolean;
    importFile?: string;
    logFlow?: boolean;
    logToStdErr?: boolean;
    logVerbosity?: number;
    message?: string;
    onEvent?: ((event) => void);
    onOutput?: ((out) => void);
    parallel?: number;
    showSecrets?: boolean;
    suppressOutputs?: boolean;
    suppressProgress?: boolean;
    target?: string[];
    targetDependents?: boolean;
    tracing?: string;
    userAgent?: string;
}

Hierarchy (view full)

Properties

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

Colorize output.

continueOnError?: boolean
debug?: boolean

Print detailed debugging output during resource operations

excludeProtected?: boolean

Do not destroy protected resources.

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

message?: string
onEvent?: ((event) => void)

Type declaration

onOutput?: ((out) => void)

Type declaration

    • (out): void
    • Parameters

      • out: string

      Returns void

parallel?: number
showSecrets?: boolean
suppressOutputs?: boolean

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

suppressProgress?: boolean

Suppress display of periodic progress dots

target?: string[]
targetDependents?: boolean
tracing?: string

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

userAgent?: string

Generated using TypeDoc