/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface CronJobUpdate
 */
export interface CronJobUpdate {
    /**
     * The unique ID of the given Cron Job.
     * @type {number}
     * @memberof CronJobUpdate
     */
    id: number;
    /**
     * A cron expression consisting of Minute, Hour, Day of Month, Month and Day of Week subexpressions.
     * @type {string}
     * @memberof CronJobUpdate
     */
    pattern: string;
    /**
     * The name of the cron job. Must not be greater than 60 characters.
     * @type {string}
     * @memberof CronJobUpdate
     */
    name: string;
    /**
     * The command line to be executed when running the cron job. Must be at least 5 characters. Must not be greater than 255 characters.
     * @type {string}
     * @memberof CronJobUpdate
     */
    command: string;
    /**
     * The name of the system user on behalf of which the cron job will be executed. Must not be greater than 60 characters.
     * @type {string}
     * @memberof CronJobUpdate
     */
    run_as_user: string;
    /**
     * Numeric ID of the application to which the cron job belongs to.
     * @type {number}
     * @memberof CronJobUpdate
     */
    application_id?: number;
}
