Files
c/kubernetes/model/v1_stateful_set_condition.h
Brendan Burns d72a1c8566 Automated openapi generation from release-1.32
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2025-02-11 19:36:46 +00:00

47 lines
1.3 KiB
C

/*
* v1_stateful_set_condition.h
*
* StatefulSetCondition describes the state of a statefulset at a certain point.
*/
#ifndef _v1_stateful_set_condition_H_
#define _v1_stateful_set_condition_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_stateful_set_condition_t v1_stateful_set_condition_t;
typedef struct v1_stateful_set_condition_t {
char *last_transition_time; //date time
char *message; // string
char *reason; // string
char *status; // string
char *type; // string
int _library_owned; // Is the library responsible for freeing this object?
} v1_stateful_set_condition_t;
__attribute__((deprecated)) v1_stateful_set_condition_t *v1_stateful_set_condition_create(
char *last_transition_time,
char *message,
char *reason,
char *status,
char *type
);
void v1_stateful_set_condition_free(v1_stateful_set_condition_t *v1_stateful_set_condition);
v1_stateful_set_condition_t *v1_stateful_set_condition_parseFromJSON(cJSON *v1_stateful_set_conditionJSON);
cJSON *v1_stateful_set_condition_convertToJSON(v1_stateful_set_condition_t *v1_stateful_set_condition);
#endif /* _v1_stateful_set_condition_H_ */