Files
c/kubernetes/model/v1_node.h
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

49 lines
1008 B
C

/*
* v1_node.h
*
* Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
*/
#ifndef _v1_node_H_
#define _v1_node_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_node_t v1_node_t;
#include "v1_node_spec.h"
#include "v1_node_status.h"
#include "v1_object_meta.h"
typedef struct v1_node_t {
char *api_version; // string
char *kind; // string
struct v1_object_meta_t *metadata; //model
struct v1_node_spec_t *spec; //model
struct v1_node_status_t *status; //model
} v1_node_t;
v1_node_t *v1_node_create(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
v1_node_spec_t *spec,
v1_node_status_t *status
);
void v1_node_free(v1_node_t *v1_node);
v1_node_t *v1_node_parseFromJSON(cJSON *v1_nodeJSON);
cJSON *v1_node_convertToJSON(v1_node_t *v1_node);
#endif /* _v1_node_H_ */