Package version:

Interface ClusterInPlaceUpgradeHistoryProperties

Cluster in-place upgrade history properties.

interface ClusterInPlaceUpgradeHistoryProperties {
    componentName?: string;
    severity?: string;
    sourceBuildNumber?: string;
    sourceClusterVersion?: string;
    sourceOssVersion?: string;
    targetBuildNumber?: string;
    targetClusterVersion?: string;
    targetOssVersion?: string;
    upgradeResult: string;
    upgradeType:
        | "HotfixUpgrade"
        | "PatchVersionUpgrade"
        | "ClusterInPlaceUpgradeHistoryProperties"
        | "HotfixUpgradeRollback"
        | "PatchVersionUpgradeRollback";
    utcTime: string;
}

Hierarchy (view full)

Properties

componentName?: string

Component name to upgrade.

severity?: string

Severity of this upgrade.

sourceBuildNumber?: string

Source build number.

sourceClusterVersion?: string

Version with three part.

sourceOssVersion?: string

Version with three part.

targetBuildNumber?: string

Target build number.

targetClusterVersion?: string

Version with three part.

targetOssVersion?: string

Version with three part.

upgradeResult: string

Result of this upgrade.

upgradeType:
    | "HotfixUpgrade"
    | "PatchVersionUpgrade"
    | "ClusterInPlaceUpgradeHistoryProperties"
    | "HotfixUpgradeRollback"
    | "PatchVersionUpgradeRollback"

Polymorphic discriminator, which specifies the different types this object can be

utcTime: string

Time when created this upgrade history.