Package version:

The info w.r.t Agent Upgrade.

interface AgentUpgrade {
    correlationId?: string;
    desiredVersion?: string;
    enableAutomaticUpgrade?: boolean;
    lastAttemptDesiredVersion?: string;
    lastAttemptMessage?: string;
    lastAttemptStatus?: string;
    lastAttemptTimestamp?: Date;
}

Properties

correlationId?: string

The correlation ID passed in from RSM per upgrade.

desiredVersion?: string

Specifies the version info w.r.t AgentUpgrade for the machine.

enableAutomaticUpgrade?: boolean

Specifies if RSM should try to upgrade this machine

lastAttemptDesiredVersion?: string

Specifies the version of the last attempt NOTE: This property will not be serialized. It can only be populated by the server.

lastAttemptMessage?: string

Failure message of last upgrade attempt if any. NOTE: This property will not be serialized. It can only be populated by the server.

lastAttemptStatus?: string

Specifies the status of Agent Upgrade. NOTE: This property will not be serialized. It can only be populated by the server.

lastAttemptTimestamp?: Date

Timestamp of last upgrade attempt NOTE: This property will not be serialized. It can only be populated by the server.