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

43 lines
1.1 KiB
C

/*
* v1_ingress_port_status.h
*
* IngressPortStatus represents the error condition of a service port
*/
#ifndef _v1_ingress_port_status_H_
#define _v1_ingress_port_status_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_ingress_port_status_t v1_ingress_port_status_t;
typedef struct v1_ingress_port_status_t {
char *error; // string
int port; //numeric
char *protocol; // string
int _library_owned; // Is the library responsible for freeing this object?
} v1_ingress_port_status_t;
__attribute__((deprecated)) v1_ingress_port_status_t *v1_ingress_port_status_create(
char *error,
int port,
char *protocol
);
void v1_ingress_port_status_free(v1_ingress_port_status_t *v1_ingress_port_status);
v1_ingress_port_status_t *v1_ingress_port_status_parseFromJSON(cJSON *v1_ingress_port_statusJSON);
cJSON *v1_ingress_port_status_convertToJSON(v1_ingress_port_status_t *v1_ingress_port_status);
#endif /* _v1_ingress_port_status_H_ */