Interface IMigrationInformation

interface IMigrationInformation {
    completedAt: string;
    id: string;
    initiatedAt: string;
    migratingFrom: string;
    migratingTo: string;
    migratingToFingerprint: string;
    migratingToPrefix: string;
    progress: number;
    state: "New" | "InProgress" | "Completed";
    tenantId: string;
}

Properties

completedAt: string
id: string

Migration operation ID

initiatedAt: string
migratingFrom: string

The key ARN bing migrated from (in case of QlikVault, could be a short name only)

migratingTo: string

The nre key ARN that keys should be migrated to

migratingToFingerprint: string

The nre ARN fingerprint

migratingToPrefix: string

The nre key prefix (to help services know which prefix should NOT be migrated)

progress: number

Progress in percentage

state: "New" | "InProgress" | "Completed"

Migration operation state

tenantId: string