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

Properties

args?: Record<string, unknown>

Arguments to pass with the cron.

containerId: string

UUID of the container invoked by this cron.

id: string

UUID of the cron.

name: string

Name of the cron.

schedule: string

UNIX cron shedule.

Status of the cron.