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

interface UpOptions {
    color?: "always" | "never" | "raw" | "auto";
    continueOnError?: boolean;
    debug?: boolean;
    diff?: boolean;
    expectNoChanges?: boolean;
    importFile?: string;
    logFlow?: boolean;
    logToStdErr?: boolean;
    logVerbosity?: number;
    message?: string;
    onEvent?: ((event) => void);
    onOutput?: ((out) => void);
    parallel?: number;
    plan?: string;
    policyPackConfigs?: string[];
    policyPacks?: string[];
    program?: PulumiFn;
    refresh?: boolean;
    replace?: string[];
    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

Continue to perform the update operation despite the occurrence of errors.

debug?: boolean

Print detailed debugging output during resource operations

diff?: boolean
expectNoChanges?: boolean
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
plan?: string

Plan specifies the path to an update plan to use for the update.

policyPackConfigs?: string[]
policyPacks?: string[]
program?: PulumiFn
refresh?: boolean

Refresh the state of the stack's resources before this update.

replace?: string[]
showSecrets?: boolean

Include secrets in the UpSummary.

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