Type Alias ApplyStackData

ApplyStackData: {
    body?: request_StackImportRequest;
    path: { stack_id: number };
    query: {
        dryrun?: boolean;
        force?: boolean;
        importResources?: boolean;
        specID?: string;
        workspace: string;
    };
}

Type declaration

  • Optionalbody?: request_StackImportRequest

    The resources to import during the stack preview

  • path: { stack_id: number }
    • stack_id: number

      Stack ID

  • query: {
        dryrun?: boolean;
        force?: boolean;
        importResources?: boolean;
        specID?: string;
        workspace: string;
    }
    • Optionaldryrun?: boolean

      Apply in dry-run mode

    • Optionalforce?: boolean

      Force the apply even when the stack is locked. May cause concurrency issues!!!

    • OptionalimportResources?: boolean

      Import existing resources during the stack preview

    • OptionalspecID?: string

      The Spec ID to use for the apply. Will generate a new spec if omitted.

    • workspace: string

      The target workspace to preview the spec in.