Represents a revision of a build definition.

interface BuildDefinitionRevision {
    changedBy?: IdentityRef;
    changedDate?: Date;
    changeType?: AuditAction;
    comment?: string;
    definitionUrl?: string;
    name?: string;
    revision?: number;
}

Properties

changedBy?: IdentityRef

The identity of the person or process that changed the definition.

changedDate?: Date

The date and time that the definition was changed.

changeType?: AuditAction

The change type (add, edit, delete).

comment?: string

The comment associated with the change.

definitionUrl?: string

A link to the definition at this revision.

name?: string

The name of the definition.

revision?: number

The revision number.