51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
/*
|
|
* v1_container_state_terminated.h
|
|
*
|
|
* ContainerStateTerminated is a terminated state of a container.
|
|
*/
|
|
|
|
#ifndef _v1_container_state_terminated_H_
|
|
#define _v1_container_state_terminated_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_container_state_terminated_t v1_container_state_terminated_t;
|
|
|
|
|
|
|
|
|
|
typedef struct v1_container_state_terminated_t {
|
|
char *container_id; // string
|
|
int exit_code; //numeric
|
|
char *finished_at; //date time
|
|
char *message; // string
|
|
char *reason; // string
|
|
int signal; //numeric
|
|
char *started_at; //date time
|
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
|
} v1_container_state_terminated_t;
|
|
|
|
__attribute__((deprecated)) v1_container_state_terminated_t *v1_container_state_terminated_create(
|
|
char *container_id,
|
|
int exit_code,
|
|
char *finished_at,
|
|
char *message,
|
|
char *reason,
|
|
int signal,
|
|
char *started_at
|
|
);
|
|
|
|
void v1_container_state_terminated_free(v1_container_state_terminated_t *v1_container_state_terminated);
|
|
|
|
v1_container_state_terminated_t *v1_container_state_terminated_parseFromJSON(cJSON *v1_container_state_terminatedJSON);
|
|
|
|
cJSON *v1_container_state_terminated_convertToJSON(v1_container_state_terminated_t *v1_container_state_terminated);
|
|
|
|
#endif /* _v1_container_state_terminated_H_ */
|
|
|