com.woorea.openstack.cinder.model.Volume Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2016 AT&T Intellectual Property. All rights reserved. This code is licensed under the Apache License, Version 2.0
*******************************************************************************/
package com.woorea.openstack.cinder.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
@JsonRootName("volume")
public class Volume implements Serializable {
private String id;
private String status;
private String name;
private String description;
@JsonProperty("availability_zone")
private String availabilityZone;
@JsonProperty("volume_type")
private String volumeType;
@JsonProperty("snapshot_id")
private String snapshotId;
@JsonProperty("source_volid")
private String sourceVolid;
@JsonProperty("bootable")
private Boolean bootable;
private List