A summary of a stack operation.

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

Properties

Deployment?: string

A raw JSON blob detailing the deployment.

config: ConfigMap

The configuration used for the operation.

endTime: Date

The time at which the operation completed.

environment: {
    [key: string]: string;
}

The environment supplied to the operation.

Type declaration

  • [key: string]: string

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.

Generated using TypeDoc