Files
c/kubernetes/model/v1_scale.h

50 lines
1.1 KiB
C
Raw Permalink Normal View History

/*
* v1_scale.h
*
* Scale represents a scaling request for a resource.
*/
#ifndef _v1_scale_H_
#define _v1_scale_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_scale_t v1_scale_t;
#include "v1_object_meta.h"
#include "v1_scale_spec.h"
#include "v1_scale_status.h"
typedef struct v1_scale_t {
char *api_version; // string
char *kind; // string
struct v1_object_meta_t *metadata; //model
struct v1_scale_spec_t *spec; //model
struct v1_scale_status_t *status; //model
int _library_owned; // Is the library responsible for freeing this object?
} v1_scale_t;
__attribute__((deprecated)) v1_scale_t *v1_scale_create(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
v1_scale_spec_t *spec,
v1_scale_status_t *status
);
void v1_scale_free(v1_scale_t *v1_scale);
v1_scale_t *v1_scale_parseFromJSON(cJSON *v1_scaleJSON);
cJSON *v1_scale_convertToJSON(v1_scale_t *v1_scale);
#endif /* _v1_scale_H_ */