Files
c/kubernetes/model/v1_node_daemon_endpoints.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

39 lines
1.0 KiB
C

/*
* v1_node_daemon_endpoints.h
*
* NodeDaemonEndpoints lists ports opened by daemons running on the Node.
*/
#ifndef _v1_node_daemon_endpoints_H_
#define _v1_node_daemon_endpoints_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_node_daemon_endpoints_t v1_node_daemon_endpoints_t;
#include "v1_daemon_endpoint.h"
typedef struct v1_node_daemon_endpoints_t {
struct v1_daemon_endpoint_t *kubelet_endpoint; //model
} v1_node_daemon_endpoints_t;
v1_node_daemon_endpoints_t *v1_node_daemon_endpoints_create(
v1_daemon_endpoint_t *kubelet_endpoint
);
void v1_node_daemon_endpoints_free(v1_node_daemon_endpoints_t *v1_node_daemon_endpoints);
v1_node_daemon_endpoints_t *v1_node_daemon_endpoints_parseFromJSON(cJSON *v1_node_daemon_endpointsJSON);
cJSON *v1_node_daemon_endpoints_convertToJSON(v1_node_daemon_endpoints_t *v1_node_daemon_endpoints);
#endif /* _v1_node_daemon_endpoints_H_ */