Files
c/kubernetes/model/v1_ingress_class.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.5 KiB
C

/*
* v1_ingress_class.h
*
* IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The &#x60;ingressclass.kubernetes.io/is-default-class&#x60; annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.
*/
#ifndef _v1_ingress_class_H_
#define _v1_ingress_class_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_ingress_class_t v1_ingress_class_t;
#include "v1_ingress_class_spec.h"
#include "v1_object_meta.h"
typedef struct v1_ingress_class_t {
char *api_version; // string
char *kind; // string
struct v1_object_meta_t *metadata; //model
struct v1_ingress_class_spec_t *spec; //model
int _library_owned; // Is the library responsible for freeing this object?
} v1_ingress_class_t;
__attribute__((deprecated)) v1_ingress_class_t *v1_ingress_class_create(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
v1_ingress_class_spec_t *spec
);
void v1_ingress_class_free(v1_ingress_class_t *v1_ingress_class);
v1_ingress_class_t *v1_ingress_class_parseFromJSON(cJSON *v1_ingress_classJSON);
cJSON *v1_ingress_class_convertToJSON(v1_ingress_class_t *v1_ingress_class);
#endif /* _v1_ingress_class_H_ */