* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
/*
|
|
* v1_persistent_volume.h
|
|
*
|
|
* PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes
|
|
*/
|
|
|
|
#ifndef _v1_persistent_volume_H_
|
|
#define _v1_persistent_volume_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_persistent_volume_t v1_persistent_volume_t;
|
|
|
|
#include "v1_object_meta.h"
|
|
#include "v1_persistent_volume_spec.h"
|
|
#include "v1_persistent_volume_status.h"
|
|
|
|
|
|
|
|
typedef struct v1_persistent_volume_t {
|
|
char *api_version; // string
|
|
char *kind; // string
|
|
struct v1_object_meta_t *metadata; //model
|
|
struct v1_persistent_volume_spec_t *spec; //model
|
|
struct v1_persistent_volume_status_t *status; //model
|
|
|
|
} v1_persistent_volume_t;
|
|
|
|
v1_persistent_volume_t *v1_persistent_volume_create(
|
|
char *api_version,
|
|
char *kind,
|
|
v1_object_meta_t *metadata,
|
|
v1_persistent_volume_spec_t *spec,
|
|
v1_persistent_volume_status_t *status
|
|
);
|
|
|
|
void v1_persistent_volume_free(v1_persistent_volume_t *v1_persistent_volume);
|
|
|
|
v1_persistent_volume_t *v1_persistent_volume_parseFromJSON(cJSON *v1_persistent_volumeJSON);
|
|
|
|
cJSON *v1_persistent_volume_convertToJSON(v1_persistent_volume_t *v1_persistent_volume);
|
|
|
|
#endif /* _v1_persistent_volume_H_ */
|
|
|