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

391 lines
14 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "v1_persistent_volume_claim_spec.h"
static v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec_create_internal(
list_t *access_modes,
v1_typed_local_object_reference_t *data_source,
v1_typed_object_reference_t *data_source_ref,
v1_volume_resource_requirements_t *resources,
v1_label_selector_t *selector,
char *storage_class_name,
char *volume_attributes_class_name,
char *volume_mode,
char *volume_name
) {
v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec_local_var = malloc(sizeof(v1_persistent_volume_claim_spec_t));
if (!v1_persistent_volume_claim_spec_local_var) {
return NULL;
}
v1_persistent_volume_claim_spec_local_var->access_modes = access_modes;
v1_persistent_volume_claim_spec_local_var->data_source = data_source;
v1_persistent_volume_claim_spec_local_var->data_source_ref = data_source_ref;
v1_persistent_volume_claim_spec_local_var->resources = resources;
v1_persistent_volume_claim_spec_local_var->selector = selector;
v1_persistent_volume_claim_spec_local_var->storage_class_name = storage_class_name;
v1_persistent_volume_claim_spec_local_var->volume_attributes_class_name = volume_attributes_class_name;
v1_persistent_volume_claim_spec_local_var->volume_mode = volume_mode;
v1_persistent_volume_claim_spec_local_var->volume_name = volume_name;
v1_persistent_volume_claim_spec_local_var->_library_owned = 1;
return v1_persistent_volume_claim_spec_local_var;
}
__attribute__((deprecated)) v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec_create(
list_t *access_modes,
v1_typed_local_object_reference_t *data_source,
v1_typed_object_reference_t *data_source_ref,
v1_volume_resource_requirements_t *resources,
v1_label_selector_t *selector,
char *storage_class_name,
char *volume_attributes_class_name,
char *volume_mode,
char *volume_name
) {
return v1_persistent_volume_claim_spec_create_internal (
access_modes,
data_source,
data_source_ref,
resources,
selector,
storage_class_name,
volume_attributes_class_name,
volume_mode,
volume_name
);
}
void v1_persistent_volume_claim_spec_free(v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec) {
if(NULL == v1_persistent_volume_claim_spec){
return ;
}
if(v1_persistent_volume_claim_spec->_library_owned != 1){
fprintf(stderr, "WARNING: %s() does NOT free objects allocated by the user\n", "v1_persistent_volume_claim_spec_free");
return ;
}
listEntry_t *listEntry;
if (v1_persistent_volume_claim_spec->access_modes) {
list_ForEach(listEntry, v1_persistent_volume_claim_spec->access_modes) {
free(listEntry->data);
}
list_freeList(v1_persistent_volume_claim_spec->access_modes);
v1_persistent_volume_claim_spec->access_modes = NULL;
}
if (v1_persistent_volume_claim_spec->data_source) {
v1_typed_local_object_reference_free(v1_persistent_volume_claim_spec->data_source);
v1_persistent_volume_claim_spec->data_source = NULL;
}
if (v1_persistent_volume_claim_spec->data_source_ref) {
v1_typed_object_reference_free(v1_persistent_volume_claim_spec->data_source_ref);
v1_persistent_volume_claim_spec->data_source_ref = NULL;
}
if (v1_persistent_volume_claim_spec->resources) {
v1_volume_resource_requirements_free(v1_persistent_volume_claim_spec->resources);
v1_persistent_volume_claim_spec->resources = NULL;
}
if (v1_persistent_volume_claim_spec->selector) {
v1_label_selector_free(v1_persistent_volume_claim_spec->selector);
v1_persistent_volume_claim_spec->selector = NULL;
}
if (v1_persistent_volume_claim_spec->storage_class_name) {
free(v1_persistent_volume_claim_spec->storage_class_name);
v1_persistent_volume_claim_spec->storage_class_name = NULL;
}
if (v1_persistent_volume_claim_spec->volume_attributes_class_name) {
free(v1_persistent_volume_claim_spec->volume_attributes_class_name);
v1_persistent_volume_claim_spec->volume_attributes_class_name = NULL;
}
if (v1_persistent_volume_claim_spec->volume_mode) {
free(v1_persistent_volume_claim_spec->volume_mode);
v1_persistent_volume_claim_spec->volume_mode = NULL;
}
if (v1_persistent_volume_claim_spec->volume_name) {
free(v1_persistent_volume_claim_spec->volume_name);
v1_persistent_volume_claim_spec->volume_name = NULL;
}
free(v1_persistent_volume_claim_spec);
}
cJSON *v1_persistent_volume_claim_spec_convertToJSON(v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec) {
cJSON *item = cJSON_CreateObject();
// v1_persistent_volume_claim_spec->access_modes
if(v1_persistent_volume_claim_spec->access_modes) {
cJSON *access_modes = cJSON_AddArrayToObject(item, "accessModes");
if(access_modes == NULL) {
goto fail; //primitive container
}
listEntry_t *access_modesListEntry;
list_ForEach(access_modesListEntry, v1_persistent_volume_claim_spec->access_modes) {
if(cJSON_AddStringToObject(access_modes, "", access_modesListEntry->data) == NULL)
{
goto fail;
}
}
}
// v1_persistent_volume_claim_spec->data_source
if(v1_persistent_volume_claim_spec->data_source) {
cJSON *data_source_local_JSON = v1_typed_local_object_reference_convertToJSON(v1_persistent_volume_claim_spec->data_source);
if(data_source_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "dataSource", data_source_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
// v1_persistent_volume_claim_spec->data_source_ref
if(v1_persistent_volume_claim_spec->data_source_ref) {
cJSON *data_source_ref_local_JSON = v1_typed_object_reference_convertToJSON(v1_persistent_volume_claim_spec->data_source_ref);
if(data_source_ref_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "dataSourceRef", data_source_ref_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
// v1_persistent_volume_claim_spec->resources
if(v1_persistent_volume_claim_spec->resources) {
cJSON *resources_local_JSON = v1_volume_resource_requirements_convertToJSON(v1_persistent_volume_claim_spec->resources);
if(resources_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "resources", resources_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
// v1_persistent_volume_claim_spec->selector
if(v1_persistent_volume_claim_spec->selector) {
cJSON *selector_local_JSON = v1_label_selector_convertToJSON(v1_persistent_volume_claim_spec->selector);
if(selector_local_JSON == NULL) {
goto fail; //model
}
cJSON_AddItemToObject(item, "selector", selector_local_JSON);
if(item->child == NULL) {
goto fail;
}
}
// v1_persistent_volume_claim_spec->storage_class_name
if(v1_persistent_volume_claim_spec->storage_class_name) {
if(cJSON_AddStringToObject(item, "storageClassName", v1_persistent_volume_claim_spec->storage_class_name) == NULL) {
goto fail; //String
}
}
// v1_persistent_volume_claim_spec->volume_attributes_class_name
if(v1_persistent_volume_claim_spec->volume_attributes_class_name) {
if(cJSON_AddStringToObject(item, "volumeAttributesClassName", v1_persistent_volume_claim_spec->volume_attributes_class_name) == NULL) {
goto fail; //String
}
}
// v1_persistent_volume_claim_spec->volume_mode
if(v1_persistent_volume_claim_spec->volume_mode) {
if(cJSON_AddStringToObject(item, "volumeMode", v1_persistent_volume_claim_spec->volume_mode) == NULL) {
goto fail; //String
}
}
// v1_persistent_volume_claim_spec->volume_name
if(v1_persistent_volume_claim_spec->volume_name) {
if(cJSON_AddStringToObject(item, "volumeName", v1_persistent_volume_claim_spec->volume_name) == NULL) {
goto fail; //String
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec_parseFromJSON(cJSON *v1_persistent_volume_claim_specJSON){
v1_persistent_volume_claim_spec_t *v1_persistent_volume_claim_spec_local_var = NULL;
// define the local list for v1_persistent_volume_claim_spec->access_modes
list_t *access_modesList = NULL;
// define the local variable for v1_persistent_volume_claim_spec->data_source
v1_typed_local_object_reference_t *data_source_local_nonprim = NULL;
// define the local variable for v1_persistent_volume_claim_spec->data_source_ref
v1_typed_object_reference_t *data_source_ref_local_nonprim = NULL;
// define the local variable for v1_persistent_volume_claim_spec->resources
v1_volume_resource_requirements_t *resources_local_nonprim = NULL;
// define the local variable for v1_persistent_volume_claim_spec->selector
v1_label_selector_t *selector_local_nonprim = NULL;
// v1_persistent_volume_claim_spec->access_modes
cJSON *access_modes = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "accessModes");
if (cJSON_IsNull(access_modes)) {
access_modes = NULL;
}
if (access_modes) {
cJSON *access_modes_local = NULL;
if(!cJSON_IsArray(access_modes)) {
goto end;//primitive container
}
access_modesList = list_createList();
cJSON_ArrayForEach(access_modes_local, access_modes)
{
if(!cJSON_IsString(access_modes_local))
{
goto end;
}
list_addElement(access_modesList , strdup(access_modes_local->valuestring));
}
}
// v1_persistent_volume_claim_spec->data_source
cJSON *data_source = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "dataSource");
if (cJSON_IsNull(data_source)) {
data_source = NULL;
}
if (data_source) {
data_source_local_nonprim = v1_typed_local_object_reference_parseFromJSON(data_source); //nonprimitive
}
// v1_persistent_volume_claim_spec->data_source_ref
cJSON *data_source_ref = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "dataSourceRef");
if (cJSON_IsNull(data_source_ref)) {
data_source_ref = NULL;
}
if (data_source_ref) {
data_source_ref_local_nonprim = v1_typed_object_reference_parseFromJSON(data_source_ref); //nonprimitive
}
// v1_persistent_volume_claim_spec->resources
cJSON *resources = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "resources");
if (cJSON_IsNull(resources)) {
resources = NULL;
}
if (resources) {
resources_local_nonprim = v1_volume_resource_requirements_parseFromJSON(resources); //nonprimitive
}
// v1_persistent_volume_claim_spec->selector
cJSON *selector = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "selector");
if (cJSON_IsNull(selector)) {
selector = NULL;
}
if (selector) {
selector_local_nonprim = v1_label_selector_parseFromJSON(selector); //nonprimitive
}
// v1_persistent_volume_claim_spec->storage_class_name
cJSON *storage_class_name = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "storageClassName");
if (cJSON_IsNull(storage_class_name)) {
storage_class_name = NULL;
}
if (storage_class_name) {
if(!cJSON_IsString(storage_class_name) && !cJSON_IsNull(storage_class_name))
{
goto end; //String
}
}
// v1_persistent_volume_claim_spec->volume_attributes_class_name
cJSON *volume_attributes_class_name = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "volumeAttributesClassName");
if (cJSON_IsNull(volume_attributes_class_name)) {
volume_attributes_class_name = NULL;
}
if (volume_attributes_class_name) {
if(!cJSON_IsString(volume_attributes_class_name) && !cJSON_IsNull(volume_attributes_class_name))
{
goto end; //String
}
}
// v1_persistent_volume_claim_spec->volume_mode
cJSON *volume_mode = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "volumeMode");
if (cJSON_IsNull(volume_mode)) {
volume_mode = NULL;
}
if (volume_mode) {
if(!cJSON_IsString(volume_mode) && !cJSON_IsNull(volume_mode))
{
goto end; //String
}
}
// v1_persistent_volume_claim_spec->volume_name
cJSON *volume_name = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_claim_specJSON, "volumeName");
if (cJSON_IsNull(volume_name)) {
volume_name = NULL;
}
if (volume_name) {
if(!cJSON_IsString(volume_name) && !cJSON_IsNull(volume_name))
{
goto end; //String
}
}
v1_persistent_volume_claim_spec_local_var = v1_persistent_volume_claim_spec_create_internal (
access_modes ? access_modesList : NULL,
data_source ? data_source_local_nonprim : NULL,
data_source_ref ? data_source_ref_local_nonprim : NULL,
resources ? resources_local_nonprim : NULL,
selector ? selector_local_nonprim : NULL,
storage_class_name && !cJSON_IsNull(storage_class_name) ? strdup(storage_class_name->valuestring) : NULL,
volume_attributes_class_name && !cJSON_IsNull(volume_attributes_class_name) ? strdup(volume_attributes_class_name->valuestring) : NULL,
volume_mode && !cJSON_IsNull(volume_mode) ? strdup(volume_mode->valuestring) : NULL,
volume_name && !cJSON_IsNull(volume_name) ? strdup(volume_name->valuestring) : NULL
);
return v1_persistent_volume_claim_spec_local_var;
end:
if (access_modesList) {
listEntry_t *listEntry = NULL;
list_ForEach(listEntry, access_modesList) {
free(listEntry->data);
listEntry->data = NULL;
}
list_freeList(access_modesList);
access_modesList = NULL;
}
if (data_source_local_nonprim) {
v1_typed_local_object_reference_free(data_source_local_nonprim);
data_source_local_nonprim = NULL;
}
if (data_source_ref_local_nonprim) {
v1_typed_object_reference_free(data_source_ref_local_nonprim);
data_source_ref_local_nonprim = NULL;
}
if (resources_local_nonprim) {
v1_volume_resource_requirements_free(resources_local_nonprim);
resources_local_nonprim = NULL;
}
if (selector_local_nonprim) {
v1_label_selector_free(selector_local_nonprim);
selector_local_nonprim = NULL;
}
return NULL;
}