@@ -139,6 +139,30 @@ public class AccountResponse extends BaseResponse implements ResourceLimitAndCou
139139 @ Param (description = "the number of VM snapshots available for this account" )
140140 private String vmSnapshotAvailable ;
141141
142+ @ SerializedName (ApiConstants .BACKUP_LIMIT )
143+ @ Param (description = "the total number of backups which can be stored by this account" , since = "4.20.0.6-scclouds" )
144+ private String backupLimit ;
145+
146+ @ SerializedName (ApiConstants .BACKUP_TOTAL )
147+ @ Param (description = "the total number of backups stored by this account" , since = "4.20.0.6-scclouds" )
148+ private Long backupTotal ;
149+
150+ @ SerializedName (ApiConstants .BACKUP_AVAILABLE )
151+ @ Param (description = "the total number of backups available to this account" , since = "4.20.0.6-scclouds" )
152+ private String backupAvailable ;
153+
154+ @ SerializedName (ApiConstants .BACKUP_STORAGE_LIMIT )
155+ @ Param (description = "the total backup storage space (in GiB) the account can own" , since = "4.20.0.6-scclouds" )
156+ private String backupStorageLimit ;
157+
158+ @ SerializedName (ApiConstants .BACKUP_STORAGE_TOTAL )
159+ @ Param (description = "the total backup storage space (in GiB) owned by the account" , since = "4.20.0.6-scclouds" )
160+ private Long backupStorageTotal ;
161+
162+ @ SerializedName (ApiConstants .BACKUP_STORAGE_AVAILABLE )
163+ @ Param (description = "the total backup storage space (in GiB) available to the account" , since = "4.20.0.6-scclouds" )
164+ private String backupStorageAvailable ;
165+
142166 @ SerializedName ("templatelimit" )
143167 @ Param (description = "the total number of templates which can be created by this account" )
144168 private String templateLimit ;
@@ -251,6 +275,30 @@ public class AccountResponse extends BaseResponse implements ResourceLimitAndCou
251275 @ Param (description = "the total secondary storage space (in GiB) available to be used for this account" , since = "4.2.0" )
252276 private String secondaryStorageAvailable ;
253277
278+ @ SerializedName (ApiConstants .BUCKET_LIMIT )
279+ @ Param (description = "the total number of buckets which can be stored by this account" , since = "4.20.0.6-scclouds" )
280+ private String bucketLimit ;
281+
282+ @ SerializedName (ApiConstants .BUCKET_TOTAL )
283+ @ Param (description = "the total number of buckets stored by this account" , since = "4.20.0.6-scclouds" )
284+ private Long bucketTotal ;
285+
286+ @ SerializedName (ApiConstants .BUCKET_AVAILABLE )
287+ @ Param (description = "the total number of buckets available to this account" , since = "4.20.0.6-scclouds" )
288+ private String bucketAvailable ;
289+
290+ @ SerializedName (ApiConstants .OBJECT_STORAGE_LIMIT )
291+ @ Param (description = "the total object storage space (in GiB) the account can own" , since = "4.20.0.6-scclouds" )
292+ private String objectStorageLimit ;
293+
294+ @ SerializedName (ApiConstants .OBJECT_STORAGE_TOTAL )
295+ @ Param (description = "the total object storage space (in GiB) owned by the account" , since = "4.20.0.6-scclouds" )
296+ private Long objectStorageTotal ;
297+
298+ @ SerializedName (ApiConstants .OBJECT_STORAGE_AVAILABLE )
299+ @ Param (description = "the total object storage space (in GiB) available to the account" , since = "4.20.0.6-scclouds" )
300+ private String objectStorageAvailable ;
301+
254302 @ SerializedName (ApiConstants .STATE )
255303 @ Param (description = "the state of the account" )
256304 private String state ;
@@ -421,6 +469,36 @@ public void setVmSnapshotAvailable(String vmSnapshotAvailable) {
421469 this .vmSnapshotAvailable = vmSnapshotAvailable ;
422470 }
423471
472+ @ Override
473+ public void setBackupLimit (String backupLimit ) {
474+ this .backupLimit = backupLimit ;
475+ }
476+
477+ @ Override
478+ public void setBackupTotal (Long backupTotal ) {
479+ this .backupTotal = backupTotal ;
480+ }
481+
482+ @ Override
483+ public void setBackupAvailable (String backupAvailable ) {
484+ this .backupAvailable = backupAvailable ;
485+ }
486+
487+ @ Override
488+ public void setBackupStorageLimit (String backupStorageLimit ) {
489+ this .backupStorageLimit = backupStorageLimit ;
490+ }
491+
492+ @ Override
493+ public void setBackupStorageTotal (Long backupStorageTotal ) {
494+ this .backupStorageTotal = backupStorageTotal ;
495+ }
496+
497+ @ Override
498+ public void setBackupStorageAvailable (String backupStorageAvailable ) {
499+ this .backupStorageAvailable = backupStorageAvailable ;
500+ }
501+
424502 @ Override
425503 public void setTemplateLimit (String templateLimit ) {
426504 this .templateLimit = templateLimit ;
@@ -580,6 +658,36 @@ public void setSecondaryStorageAvailable(String secondaryStorageAvailable) {
580658 this .secondaryStorageAvailable = secondaryStorageAvailable ;
581659 }
582660
661+ @ Override
662+ public void setBucketLimit (String bucketLimit ) {
663+ this .bucketLimit = bucketLimit ;
664+ }
665+
666+ @ Override
667+ public void setBucketTotal (Long bucketTotal ) {
668+ this .bucketTotal = bucketTotal ;
669+ }
670+
671+ @ Override
672+ public void setBucketAvailable (String bucketAvailable ) {
673+ this .bucketAvailable = bucketAvailable ;
674+ }
675+
676+ @ Override
677+ public void setObjectStorageLimit (String objectStorageLimit ) {
678+ this .objectStorageLimit = objectStorageLimit ;
679+ }
680+
681+ @ Override
682+ public void setObjectStorageTotal (Long objectStorageTotal ) {
683+ this .objectStorageTotal = objectStorageTotal ;
684+ }
685+
686+ @ Override
687+ public void setObjectStorageAvailable (String objectStorageAvailable ) {
688+ this .objectStorageAvailable = objectStorageAvailable ;
689+ }
690+
583691 public void setDefaultZone (String defaultZoneId ) {
584692 this .defaultZoneId = defaultZoneId ;
585693 }
0 commit comments