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

    Interface UpdateSummary

    A summary of a stack operation.

    interface UpdateSummary {
        config: ConfigMap;
        Deployment?: string;
        endTime: Date;
        environment: { [key: string]: string };
        kind: UpdateKind;
        message: string;
        resourceChanges?: OpMap;
        result: automation.UpdateResult;
        startTime: Date;
        version: number;
    }
    Index

    Properties

    config: ConfigMap

    The configuration used for the operation.

    Deployment?: string

    A raw JSON blob detailing the deployment.

    endTime: Date

    The time at which the operation completed.

    environment: { [key: string]: string }

    The environment supplied to the operation.

    The kind of operation to be executed/that was executed.

    message: string

    An optional message associated with the operation.

    resourceChanges?: OpMap

    A summary of the changes yielded by the operation (e.g. 4 unchanged, 3 created, etc.).

    The operation result.

    startTime: Date

    The time at which the operation started.

    version: number

    The version of the stack created by the operation.