* 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
978 B
C
49 lines
978 B
C
/*
|
|
* 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
|
|
|
|
} v1_scale_t;
|
|
|
|
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_ */
|
|
|