/* * v1_scheduling.h * * Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass. */ #ifndef _v1_scheduling_H_ #define _v1_scheduling_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" typedef struct v1_scheduling_t v1_scheduling_t; #include "v1_toleration.h" typedef struct v1_scheduling_t { list_t* node_selector; //map list_t *tolerations; //nonprimitive container int _library_owned; // Is the library responsible for freeing this object? } v1_scheduling_t; __attribute__((deprecated)) v1_scheduling_t *v1_scheduling_create( list_t* node_selector, list_t *tolerations ); void v1_scheduling_free(v1_scheduling_t *v1_scheduling); v1_scheduling_t *v1_scheduling_parseFromJSON(cJSON *v1_schedulingJSON); cJSON *v1_scheduling_convertToJSON(v1_scheduling_t *v1_scheduling); #endif /* _v1_scheduling_H_ */