interface FixedActivityResponse {
    action?: "DELETE" | "CREATE" | "UPDATE" | "RUN";
    detail: any;
    owner?: string;
    requestedBy?: string;
    source: "STACK" | "RUNTIME" | "WORKFLOW" | "SCM";
    status:
        | "PENDING"
        | "SUCCESS"
        | "FAILED"
        | "RUNNING"
        | "SKIPPED"
        | "CANCELLED"
        | "NONE"
        | "DRIFT"
        | "SUCCEEDED"
        | "RUNTIME_ERROR"
        | "USER_ERROR"
        | "INTERNAL_ERROR"
        | "ABORTED"
        | "ABORTING"
        | "EXTERNAL_ERROR"
        | "READY_TO_RUN"
        | "TIMEOUT";
    time: number;
    title: string;
    type: | "CREATE"
    | "DEPLOY"
    | "DESTROY"
    | "ROLLBACK"
    | "ACTION"
    | "CUSTOMER_WORKFLOW";
    version: string;
}

Hierarchy

Properties

action?: "DELETE" | "CREATE" | "UPDATE" | "RUN"
detail: any
owner?: string
requestedBy?: string
source: "STACK" | "RUNTIME" | "WORKFLOW" | "SCM"
status:
    | "PENDING"
    | "SUCCESS"
    | "FAILED"
    | "RUNNING"
    | "SKIPPED"
    | "CANCELLED"
    | "NONE"
    | "DRIFT"
    | "SUCCEEDED"
    | "RUNTIME_ERROR"
    | "USER_ERROR"
    | "INTERNAL_ERROR"
    | "ABORTED"
    | "ABORTING"
    | "EXTERNAL_ERROR"
    | "READY_TO_RUN"
    | "TIMEOUT"
time: number
title: string
type:
    | "CREATE"
    | "DEPLOY"
    | "DESTROY"
    | "ROLLBACK"
    | "ACTION"
    | "CUSTOMER_WORKFLOW"
version: string