interface Cron {
    args?: Record<string, unknown>;
    functionId: string;
    id: string;
    name: string;
    schedule: string;
    status: Function.v1beta1.CronStatus;
}

Properties

args?: Record<string, unknown>

Arguments to pass with the cron.

functionId: string

UUID of the function the cron applies to.

id: string

UUID of the cron.

name: string

Name of the cron.

schedule: string

Schedule of the cron.

Status of the cron.