File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/model Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 2222import com .fasterxml .jackson .annotation .JsonInclude ;
2323import com .fasterxml .jackson .annotation .JsonProperty ;
2424
25+ import java .util .List ;
2526import java .util .Objects ;
2627
2728@ JsonInclude (JsonInclude .Include .NON_NULL )
@@ -50,6 +51,12 @@ public class Volume {
5051 @ JsonProperty ("anti_ransomware" )
5152 private AntiRansomware antiRansomware ;
5253
54+ @ JsonProperty ("aggregates" )
55+ private List <Aggregate > aggregates = null ;
56+
57+ @ JsonProperty ("size" )
58+ private Long size = null ;
59+
5360 // Getters and setters
5461 public String getUuid () {
5562 return uuid ;
@@ -111,6 +118,15 @@ public void setAntiRansomware(AntiRansomware antiRansomware) {
111118 this .antiRansomware = antiRansomware ;
112119 }
113120
121+ public List <Aggregate > getAggregates () { return aggregates ; }
122+
123+ public void setAggregates (List <Aggregate > aggregates ) { this .aggregates = aggregates ; }
124+
125+ public Long getSize () { return size ; }
126+
127+ public void setSize (Long size ) { this .size = size ; }
128+
129+
114130 @ Override
115131 public boolean equals (Object o ) {
116132 if (o == null || getClass () != o .getClass ()) return false ;
You can’t perform that action at this time.
0 commit comments