RunTaskRequest: {
    message?: string;
    pluginAlias: string;
    runTaskId: string;
    status:
        | "EXTERNAL_ERROR"
        | "INTERNAL_ERROR"
        | "ABORTED"
        | "FAILED"
        | "SUCCEEDED"
        | "RUNNING"
        | "PENDING"
        | "READY_TO_RUN";
    type: | "IAC"
    | "DEPLOY"
    | "DESTROY"
    | "IAC_SELF_HOSTED"
    | "DEPLOY_SELF_HOSTED"
    | "DESTROY_SELF_HOSTED";
}

Type declaration

  • Optionalmessage?: string

    Add message when plugin deployment gives error.

  • pluginAlias: string

    Plugin Alias.

  • runTaskId: string

    Plugin Id.

  • status:
        | "EXTERNAL_ERROR"
        | "INTERNAL_ERROR"
        | "ABORTED"
        | "FAILED"
        | "SUCCEEDED"
        | "RUNNING"
        | "PENDING"
        | "READY_TO_RUN"

    Plugin status to update.

  • type:
        | "IAC"
        | "DEPLOY"
        | "DESTROY"
        | "IAC_SELF_HOSTED"
        | "DEPLOY_SELF_HOSTED"
        | "DESTROY_SELF_HOSTED"

    Plugin type.