@@ -33,6 +33,93 @@ public void setULHostInstanceSets(List<ULHostInstanceSet> ulHostInstanceSets) {
33
33
this .ulHostInstanceSets = ulHostInstanceSets ;
34
34
}
35
35
36
+ public static class ExclusiveUTPInfo extends Response {
37
+
38
+ /** 当前周期总流量 */
39
+ @ SerializedName ("TotalSize" )
40
+ private Integer totalSize ;
41
+
42
+ /** 当前周期剩余流量 */
43
+ @ SerializedName ("AvailableSize" )
44
+ private Integer availableSize ;
45
+
46
+ /** 当前周期已使用流量 */
47
+ @ SerializedName ("UsedSize" )
48
+ private Integer usedSize ;
49
+
50
+ /** 当前周期超出限额的流量 */
51
+ @ SerializedName ("ExcessSize" )
52
+ private Integer excessSize ;
53
+
54
+ /** 上次重置时间 */
55
+ @ SerializedName ("LastResetTime" )
56
+ private Integer lastResetTime ;
57
+
58
+ /** 下次重置时间 */
59
+ @ SerializedName ("NextResetTime" )
60
+ private Integer nextResetTime ;
61
+
62
+ /** 创建时间 */
63
+ @ SerializedName ("CreateTime" )
64
+ private Integer createTime ;
65
+
66
+ public Integer getTotalSize () {
67
+ return totalSize ;
68
+ }
69
+
70
+ public void setTotalSize (Integer totalSize ) {
71
+ this .totalSize = totalSize ;
72
+ }
73
+
74
+ public Integer getAvailableSize () {
75
+ return availableSize ;
76
+ }
77
+
78
+ public void setAvailableSize (Integer availableSize ) {
79
+ this .availableSize = availableSize ;
80
+ }
81
+
82
+ public Integer getUsedSize () {
83
+ return usedSize ;
84
+ }
85
+
86
+ public void setUsedSize (Integer usedSize ) {
87
+ this .usedSize = usedSize ;
88
+ }
89
+
90
+ public Integer getExcessSize () {
91
+ return excessSize ;
92
+ }
93
+
94
+ public void setExcessSize (Integer excessSize ) {
95
+ this .excessSize = excessSize ;
96
+ }
97
+
98
+ public Integer getLastResetTime () {
99
+ return lastResetTime ;
100
+ }
101
+
102
+ public void setLastResetTime (Integer lastResetTime ) {
103
+ this .lastResetTime = lastResetTime ;
104
+ }
105
+
106
+ public Integer getNextResetTime () {
107
+ return nextResetTime ;
108
+ }
109
+
110
+ public void setNextResetTime (Integer nextResetTime ) {
111
+ this .nextResetTime = nextResetTime ;
112
+ }
113
+
114
+ public Integer getCreateTime () {
115
+ return createTime ;
116
+ }
117
+
118
+ public void setCreateTime (Integer createTime ) {
119
+ this .createTime = createTime ;
120
+ }
121
+ }
122
+
36
123
public static class UHostIPSet extends Response {
37
124
38
125
/** IPv4/IPv6; */
@@ -304,6 +391,10 @@ public static class ULHostInstanceSet extends Response {
304
391
@ SerializedName ("DiskSet" )
305
392
private List <ULHostDiskSet > diskSet ;
306
393
394
+ /** 流量包详情信息 */
395
+ @ SerializedName ("ExclusiveUTPInfo" )
396
+ private ExclusiveUTPInfo exclusiveUTPInfo ;
397
+
307
398
/** 是否自动续费。枚举值:Yes/No */
308
399
@ SerializedName ("AutoRenew" )
309
400
private String autoRenew ;
@@ -432,6 +523,14 @@ public void setDiskSet(List<ULHostDiskSet> diskSet) {
432
523
this .diskSet = diskSet ;
433
524
}
434
525
526
+ public ExclusiveUTPInfo getExclusiveUTPInfo () {
527
+ return exclusiveUTPInfo ;
528
+ }
529
+
530
+ public void setExclusiveUTPInfo (ExclusiveUTPInfo exclusiveUTPInfo ) {
531
+ this .exclusiveUTPInfo = exclusiveUTPInfo ;
532
+ }
533
+
435
534
public String getAutoRenew () {
436
535
return autoRenew ;
437
536
}
0 commit comments