summaryrefslogtreecommitdiffstats
path: root/cinder-model/src/main/java/com/woorea/openstack/cinder/model/Capabilities.java
blob: 1140a24759e6fecc7263e0fbef0cd1c14a4fcca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*-
 * ============LICENSE_START=======================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package com.woorea.openstack.cinder.model;

import java.io.Serializable;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;

/**
 * Model for Volume
 */
@JsonRootName("capabilities")
public class Capabilities implements Serializable {

    @JsonProperty("pool_name")
    private String poolName;
    @JsonProperty("QoS_support")
    private boolean qosSupport;
    @JsonProperty("allocated_capacity_gb")
    private Long allocatedCapacityGb;
    @JsonProperty("driver_version")
    private String driverVersion;
    @JsonProperty("free_capacity_gb")
    private Long freeCapacityGb;
    @JsonProperty("location_info")
    private String locationInfo;

    private String timestamp;
    @JsonProperty("volume_backend_name")
    private String volumeBackendName;
    @JsonProperty("total_capacity_gb")
    private Long totalCapacityGb;
    @JsonProperty("reserved_percentage")
    private Integer reservedPercentage;
    @JsonProperty("vendor_name")
    private String vendorName;
    @JsonProperty("storage_protocol")
    private String storageProtocol;
    @JsonProperty("extra_specs")
    private Map<String, String> extraSpecs;

    public String getPoolName() {
        return poolName;
    }

    public void setPoolName(String poolName) {
        this.poolName = poolName;
    }

    public boolean isQosSupport() {
        return qosSupport;
    }

    public void setQosSupport(boolean qosSupport) {
        this.qosSupport = qosSupport;
    }

    public Long getAllocatedCapacityGb() {
        return allocatedCapacityGb;
    }

    public void setAllocatedCapacityGb(Long allocatedCapacityGb) {
        this.allocatedCapacityGb = allocatedCapacityGb;
    }

    public String getDriverVersion() {
        return driverVersion;
    }

    public void setDriverVersion(String driverVersion) {
        this.driverVersion = driverVersion;
    }

    public Long getFreeCapacityGb() {
        return freeCapacityGb;
    }

    public void setFreeCapacityGb(Long freeCapacityGb) {
        this.freeCapacityGb = freeCapacityGb;
    }

    public String getLocationInfo() {
        return locationInfo;
    }

    public void setLocationInfo(String locationInfo) {
        this.locationInfo = locationInfo;
    }

    public String getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(String timestamp) {
        this.timestamp = timestamp;
    }

    public String getVolumeBackendName() {
        return volumeBackendName;
    }

    public void setVolumeBackendName(String volumeBackendName) {
        this.volumeBackendName = volumeBackendName;
    }

    public Long getTotalCapacityGb() {
        return totalCapacityGb;
    }

    public void setTotalCapacityGb(Long totalCapacityGb) {
        this.totalCapacityGb = totalCapacityGb;
    }

    public Integer getReservedPercentage() {
        return reservedPercentage;
    }

    public void setReservedPercentage(Integer reservedPercentage) {
        this.reservedPercentage = reservedPercentage;
    }

    public String getVendorName() {
        return vendorName;
    }

    public void setVendorName(String vendorName) {
        this.vendorName = vendorName;
    }

    public String getStorageProtocol() {
        return storageProtocol;
    }

    public void setStorageProtocol(String storageProtocol) {
        this.storageProtocol = storageProtocol;
    }

    public Map<String, String> getExtraSpecs() {
        return extraSpecs;
    }

    public void setExtraSpecs(Map<String, String> extraSpecs) {
        this.extraSpecs = extraSpecs;
    }

    @Override
    public String toString() {
        return "Capabilities{" + "poolName='" + poolName + ", qosSupport='" + qosSupport + ", allocatedCapacityGb='"
                + allocatedCapacityGb + ", driverVersion='" + driverVersion + ", freeCapacityGb='" + freeCapacityGb
                + ", locationInfo='" + locationInfo + ", timestamp='" + timestamp + ", volumeBackendName='"
                + volumeBackendName + ", totalCapacityGb='" + totalCapacityGb + ", reservedPercentage='"
                + reservedPercentage + ", vendorName='" + vendorName + ", storageProtocol='" + storageProtocol
                + ", extraSpecs='" + extraSpecs + '}';
    }
}