@pulumi/pulumi - v3.251.0
    Preparing search index...

    Interface RenameOptions

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

    interface RenameOptions {
        color?: "always" | "never" | "raw" | "auto";
        configFile?: string;
        debug?: boolean;
        importFile?: string;
        logFlow?: boolean;
        logToStdErr?: boolean;
        logVerbosity?: number;
        onError?: (err: string) => void;
        onOutput?: (out: string) => void;
        showSecrets?: boolean;
        signal?: AbortSignal;
        stackName: string;
        suppressOutputs?: boolean;
        suppressProgress?: boolean;
        tracing?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    Colorize output.

    configFile?: string

    Use the configuration values in the specified file rather than detecting the file name.

    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.

    onError?: (err: string) => void

    A callback to be executed when the operation produces stderr output.

    onOutput?: (out: string) => void

    A callback to be executed when the operation produces stdout output.

    showSecrets?: boolean

    Include secrets in the UpSummary.

    signal?: AbortSignal

    A signal to abort an ongoing operation.

    stackName: string

    The new name for the stack.

    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 files.