Files
c/kubernetes/model/v1_config_map_projection.h
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

43 lines
1.3 KiB
C

/*
* v1_config_map_projection.h
*
* Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.
*/
#ifndef _v1_config_map_projection_H_
#define _v1_config_map_projection_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_config_map_projection_t v1_config_map_projection_t;
#include "v1_key_to_path.h"
typedef struct v1_config_map_projection_t {
list_t *items; //nonprimitive container
char *name; // string
int optional; //boolean
} v1_config_map_projection_t;
v1_config_map_projection_t *v1_config_map_projection_create(
list_t *items,
char *name,
int optional
);
void v1_config_map_projection_free(v1_config_map_projection_t *v1_config_map_projection);
v1_config_map_projection_t *v1_config_map_projection_parseFromJSON(cJSON *v1_config_map_projectionJSON);
cJSON *v1_config_map_projection_convertToJSON(v1_config_map_projection_t *v1_config_map_projection);
#endif /* _v1_config_map_projection_H_ */