2024-05-18 13:20:54 +00:00
|
|
|
/*
|
|
|
|
|
* v1alpha1_migration_condition.h
|
|
|
|
|
*
|
|
|
|
|
* Describes the state of a migration at a certain point.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _v1alpha1_migration_condition_H_
|
|
|
|
|
#define _v1alpha1_migration_condition_H_
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
#include "../include/list.h"
|
|
|
|
|
#include "../include/keyValuePair.h"
|
|
|
|
|
#include "../include/binary.h"
|
|
|
|
|
|
|
|
|
|
typedef struct v1alpha1_migration_condition_t v1alpha1_migration_condition_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct v1alpha1_migration_condition_t {
|
|
|
|
|
char *last_update_time; //date time
|
|
|
|
|
char *message; // string
|
|
|
|
|
char *reason; // string
|
|
|
|
|
char *status; // string
|
|
|
|
|
char *type; // string
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
2024-05-18 13:20:54 +00:00
|
|
|
} v1alpha1_migration_condition_t;
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
__attribute__((deprecated)) v1alpha1_migration_condition_t *v1alpha1_migration_condition_create(
|
2024-05-18 13:20:54 +00:00
|
|
|
char *last_update_time,
|
|
|
|
|
char *message,
|
|
|
|
|
char *reason,
|
|
|
|
|
char *status,
|
|
|
|
|
char *type
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
void v1alpha1_migration_condition_free(v1alpha1_migration_condition_t *v1alpha1_migration_condition);
|
|
|
|
|
|
|
|
|
|
v1alpha1_migration_condition_t *v1alpha1_migration_condition_parseFromJSON(cJSON *v1alpha1_migration_conditionJSON);
|
|
|
|
|
|
|
|
|
|
cJSON *v1alpha1_migration_condition_convertToJSON(v1alpha1_migration_condition_t *v1alpha1_migration_condition);
|
|
|
|
|
|
|
|
|
|
#endif /* _v1alpha1_migration_condition_H_ */
|
|
|
|
|
|