The deployment output from running a Pulumi program update.

interface UpResult {
    outputs: OutputMap;
    stderr: string;
    stdout: string;
    summary: UpdateSummary;
}

Properties

outputs: OutputMap

The outputs from the update.

stderr: string

The standard error output from the update.

stdout: string

The standard output from the update.

summary: UpdateSummary

A summary of the update.

Generated using TypeDoc