Files
c/kubernetes/model/v1_cron_job_spec.h
Kubernetes Prow Robot cf0538fd4d Automated openapi generation from release-1.24
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2022-06-05 18:16:17 +00:00

53 lines
1.3 KiB
C

/*
* v1_cron_job_spec.h
*
* CronJobSpec describes how the job execution will look like and when it will actually run.
*/
#ifndef _v1_cron_job_spec_H_
#define _v1_cron_job_spec_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_cron_job_spec_t v1_cron_job_spec_t;
#include "v1_job_template_spec.h"
typedef struct v1_cron_job_spec_t {
char *concurrency_policy; // string
int failed_jobs_history_limit; //numeric
struct v1_job_template_spec_t *job_template; //model
char *schedule; // string
long starting_deadline_seconds; //numeric
int successful_jobs_history_limit; //numeric
int suspend; //boolean
char *time_zone; // string
} v1_cron_job_spec_t;
v1_cron_job_spec_t *v1_cron_job_spec_create(
char *concurrency_policy,
int failed_jobs_history_limit,
v1_job_template_spec_t *job_template,
char *schedule,
long starting_deadline_seconds,
int successful_jobs_history_limit,
int suspend,
char *time_zone
);
void v1_cron_job_spec_free(v1_cron_job_spec_t *v1_cron_job_spec);
v1_cron_job_spec_t *v1_cron_job_spec_parseFromJSON(cJSON *v1_cron_job_specJSON);
cJSON *v1_cron_job_spec_convertToJSON(v1_cron_job_spec_t *v1_cron_job_spec);
#endif /* _v1_cron_job_spec_H_ */