Type Alias Evaluation

type Evaluation = {
    alertId?: string;
    byokMigrationId?: string;
    causalEvent?: unknown;
    condition?: Condition;
    conditionId?: string;
    contextId?: string;
    dataConditionEvaluatorId?: string;
    endTime?: string;
    errors?: EvaluationErrors;
    id?: string;
    ownerId?: string;
    reloadEndTime?: string;
    removalErrorCount?: number;
    result?: boolean;
    resultData?: unknown;
    retries?: number;
    retryPolicy?: "NONE" | "TOO_MANY_REQUESTS" | "GENERIC_ERROR";
    startTime?: string;
    status?: "RUNNING" | "FAILED" | "FINISHED" | "DELETING";
    tenantId?: string;
}
Index

Properties

alertId?: string

The id of the alerting task the condition and evaluation is part of

byokMigrationId?: string
causalEvent?: unknown
condition?: Condition
conditionId?: string
contextId?: string
dataConditionEvaluatorId?: string

The unique id for the resource given from Data Condition Evaluator.

endTime?: string
id?: string
ownerId?: string
reloadEndTime?: string
removalErrorCount?: number
result?: boolean
resultData?: unknown
retries?: number
retryPolicy?: "NONE" | "TOO_MANY_REQUESTS" | "GENERIC_ERROR"
startTime?: string
status?: "RUNNING" | "FAILED" | "FINISHED" | "DELETING"
tenantId?: string