@edgible-team/sdk
    Preparing search index...

    Interface CreateMigrationRequest

    Body for POST /applications/{applicationId}/migrations (handlers/migrations.ts createMigration).

    interface CreateMigrationRequest {
        applicationId: string;
        idempotencyKey?: string;
        storageName: string;
        targetDeviceId: string;
    }
    Index

    Properties

    applicationId: string

    Application whose storage is being migrated (source device is its current device).

    idempotencyKey?: string

    Dedup key for retry-safe creation (handler reads it from the body, not the header).

    storageName: string

    Declared storage name on the application; must be 'movable' or 'replicated'.

    targetDeviceId: string