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

40 lines
1.2 KiB
C

/*
* v1_custom_resource_validation.h
*
* CustomResourceValidation is a list of validation methods for CustomResources.
*/
#ifndef _v1_custom_resource_validation_H_
#define _v1_custom_resource_validation_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_custom_resource_validation_t v1_custom_resource_validation_t;
#include "v1_json_schema_props.h"
typedef struct v1_custom_resource_validation_t {
struct v1_json_schema_props_t *open_apiv3_schema; //model
int _library_owned; // Is the library responsible for freeing this object?
} v1_custom_resource_validation_t;
__attribute__((deprecated)) v1_custom_resource_validation_t *v1_custom_resource_validation_create(
v1_json_schema_props_t *open_apiv3_schema
);
void v1_custom_resource_validation_free(v1_custom_resource_validation_t *v1_custom_resource_validation);
v1_custom_resource_validation_t *v1_custom_resource_validation_parseFromJSON(cJSON *v1_custom_resource_validationJSON);
cJSON *v1_custom_resource_validation_convertToJSON(v1_custom_resource_validation_t *v1_custom_resource_validation);
#endif /* _v1_custom_resource_validation_H_ */