46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* v1_volume_attachment_status.h
|
|
*
|
|
* VolumeAttachmentStatus is the status of a VolumeAttachment request.
|
|
*/
|
|
|
|
#ifndef _v1_volume_attachment_status_H_
|
|
#define _v1_volume_attachment_status_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_volume_attachment_status_t v1_volume_attachment_status_t;
|
|
|
|
#include "v1_volume_error.h"
|
|
|
|
|
|
|
|
typedef struct v1_volume_attachment_status_t {
|
|
struct v1_volume_error_t *attach_error; //model
|
|
int attached; //boolean
|
|
list_t* attachment_metadata; //map
|
|
struct v1_volume_error_t *detach_error; //model
|
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
|
} v1_volume_attachment_status_t;
|
|
|
|
__attribute__((deprecated)) v1_volume_attachment_status_t *v1_volume_attachment_status_create(
|
|
v1_volume_error_t *attach_error,
|
|
int attached,
|
|
list_t* attachment_metadata,
|
|
v1_volume_error_t *detach_error
|
|
);
|
|
|
|
void v1_volume_attachment_status_free(v1_volume_attachment_status_t *v1_volume_attachment_status);
|
|
|
|
v1_volume_attachment_status_t *v1_volume_attachment_status_parseFromJSON(cJSON *v1_volume_attachment_statusJSON);
|
|
|
|
cJSON *v1_volume_attachment_status_convertToJSON(v1_volume_attachment_status_t *v1_volume_attachment_status);
|
|
|
|
#endif /* _v1_volume_attachment_status_H_ */
|
|
|