Files
c/kubernetes/model/v1_pod_scheduling_gate.c
Kubernetes Prow Robot 060e5f800a Automated openapi generation from release-1.26
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2023-02-23 01:48:36 +00:00

78 lines
1.8 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_pod_scheduling_gate.h"
v1_pod_scheduling_gate_t *v1_pod_scheduling_gate_create(
char *name
) {
v1_pod_scheduling_gate_t *v1_pod_scheduling_gate_local_var = malloc(sizeof(v1_pod_scheduling_gate_t));
if (!v1_pod_scheduling_gate_local_var) {
return NULL;
}
v1_pod_scheduling_gate_local_var->name = name;
return v1_pod_scheduling_gate_local_var;
}
void v1_pod_scheduling_gate_free(v1_pod_scheduling_gate_t *v1_pod_scheduling_gate) {
if(NULL == v1_pod_scheduling_gate){
return ;
}
listEntry_t *listEntry;
if (v1_pod_scheduling_gate->name) {
free(v1_pod_scheduling_gate->name);
v1_pod_scheduling_gate->name = NULL;
}
free(v1_pod_scheduling_gate);
}
cJSON *v1_pod_scheduling_gate_convertToJSON(v1_pod_scheduling_gate_t *v1_pod_scheduling_gate) {
cJSON *item = cJSON_CreateObject();
// v1_pod_scheduling_gate->name
if (!v1_pod_scheduling_gate->name) {
goto fail;
}
if(cJSON_AddStringToObject(item, "name", v1_pod_scheduling_gate->name) == NULL) {
goto fail; //String
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_pod_scheduling_gate_t *v1_pod_scheduling_gate_parseFromJSON(cJSON *v1_pod_scheduling_gateJSON){
v1_pod_scheduling_gate_t *v1_pod_scheduling_gate_local_var = NULL;
// v1_pod_scheduling_gate->name
cJSON *name = cJSON_GetObjectItemCaseSensitive(v1_pod_scheduling_gateJSON, "name");
if (!name) {
goto end;
}
if(!cJSON_IsString(name))
{
goto end; //String
}
v1_pod_scheduling_gate_local_var = v1_pod_scheduling_gate_create (
strdup(name->valuestring)
);
return v1_pod_scheduling_gate_local_var;
end:
return NULL;
}