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

    Interface CreateUploadParams

    interface CreateUploadParams {
        applicationId: string;
        applyMode?: "replace" | "merge";
        deviceId?: string;
        expectedBytes?: number;
        expectedSha256?: string;
        linkedDeclarationVersion?: number;
        name: string;
        quiesce?: boolean;
    }
    Index

    Properties

    applicationId: string
    applyMode?: "replace" | "merge"

    What happens to existing data during apply.

    deviceId?: string
    expectedBytes?: number

    Bytes the caller plans to send (quota / disk-pressure preflight).

    expectedSha256?: string

    sha256 of the tarball stream (verified by the agent on receive).

    linkedDeclarationVersion?: number

    Set when the session is part of a stack deploy initFrom upload.

    name: string

    Storage entry within the application this upload targets.

    quiesce?: boolean

    Pause + resume the workload around the swap.