2020-03-18 17:24:33 +08:00
|
|
|
/*
|
|
|
|
|
* 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"
|
2020-06-20 09:41:15 +08:00
|
|
|
#include "../include/binary.h"
|
|
|
|
|
|
|
|
|
|
typedef struct v1_scale_t v1_scale_t;
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
#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
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
2020-03-18 17:24:33 +08:00
|
|
|
} v1_scale_t;
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
__attribute__((deprecated)) v1_scale_t *v1_scale_create(
|
2020-03-18 17:24:33 +08:00
|
|
|
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_ */
|
|
|
|
|
|