2020-03-18 17:24:33 +08:00
|
|
|
/*
|
|
|
|
|
* v1_custom_resource_definition.h
|
|
|
|
|
*
|
|
|
|
|
* CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _v1_custom_resource_definition_H_
|
|
|
|
|
#define _v1_custom_resource_definition_H_
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
#include "../include/list.h"
|
|
|
|
|
#include "../include/keyValuePair.h"
|
2020-06-20 09:41:15 +08:00
|
|
|
#include "../include/binary.h"
|
|
|
|
|
|
|
|
|
|
typedef struct v1_custom_resource_definition_t v1_custom_resource_definition_t;
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
#include "v1_custom_resource_definition_spec.h"
|
|
|
|
|
#include "v1_custom_resource_definition_status.h"
|
|
|
|
|
#include "v1_object_meta.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct v1_custom_resource_definition_t {
|
|
|
|
|
char *api_version; // string
|
|
|
|
|
char *kind; // string
|
|
|
|
|
struct v1_object_meta_t *metadata; //model
|
|
|
|
|
struct v1_custom_resource_definition_spec_t *spec; //model
|
|
|
|
|
struct v1_custom_resource_definition_status_t *status; //model
|
|
|
|
|
|
|
|
|
|
} v1_custom_resource_definition_t;
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_create(
|
|
|
|
|
char *api_version,
|
|
|
|
|
char *kind,
|
|
|
|
|
v1_object_meta_t *metadata,
|
|
|
|
|
v1_custom_resource_definition_spec_t *spec,
|
|
|
|
|
v1_custom_resource_definition_status_t *status
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
void v1_custom_resource_definition_free(v1_custom_resource_definition_t *v1_custom_resource_definition);
|
|
|
|
|
|
|
|
|
|
v1_custom_resource_definition_t *v1_custom_resource_definition_parseFromJSON(cJSON *v1_custom_resource_definitionJSON);
|
|
|
|
|
|
|
|
|
|
cJSON *v1_custom_resource_definition_convertToJSON(v1_custom_resource_definition_t *v1_custom_resource_definition);
|
|
|
|
|
|
|
|
|
|
#endif /* _v1_custom_resource_definition_H_ */
|
|
|
|
|
|