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

    Interface StackDeployParams

    Stack source: pre-parsed documents, or raw YAML + substitution env.

    interface StackDeployParams {
        allowHostnameRemoval?: boolean;
        app?: string;
        documents?: {}[];
        dryRun?: boolean;
        env?: EnvRecord;
        organizationId: string;
        yaml?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    allowHostnameRemoval?: boolean

    ADR-0015: acknowledge applies that withdraw a currently-routable hostname (access renamed/deleted, primary reassigned, custom removed). Rides to the declaration-apply body key allowHostnameRemoval. Without it such an update fails 409 HOSTNAME_REMOVAL_BLOCKED; the create path never trips it.

    app?: string

    Limit to a single application by metadata.name.

    documents?: {}[]

    Already-parsed canonical documents (e.g. from loadStackFile).

    dryRun?: boolean

    Plan only — resolves the deploy order without any API call.

    env?: EnvRecord

    Env record for ${VAR} substitution when yaml is given (default {}).

    organizationId: string
    yaml?: string

    Raw multi-document stack YAML, parsed with parseStackDocuments.