@@ -83,6 +83,14 @@ public static class GlobalSSHInfo extends Response {
8383 @ SerializedName ("Expire" )
8484 private Boolean expire ;
8585
86+ /** 是否开启EIP IPV6 接入,Flase:未开启 */
87+ @ SerializedName ("IPV6Access" )
88+ private Boolean ipv6Access ;
89+
90+ /** GlobalSSH分配的其他可用加速域名列表 */
91+ @ SerializedName ("ExtraDomain" )
92+ private List <String > extraDomain ;
93+
8694 /** globalssh Ultimate带宽包大小 */
8795 @ SerializedName ("BandwidthPackage" )
8896 private Integer bandwidthPackage ;
@@ -91,6 +99,10 @@ public static class GlobalSSHInfo extends Response {
9199 @ SerializedName ("ForwardRegion" )
92100 private String forwardRegion ;
93101
102+ /** 加速域名当前可用性检测结果 HashMap 结构 0表示可用, 1 表示有污染 */
103+ @ SerializedName ("DomainStatus" )
104+ private Object domainStatus ;
105+
94106 public String getInstanceId () {
95107 return instanceId ;
96108 }
@@ -187,6 +199,22 @@ public void setExpire(Boolean expire) {
187199 this .expire = expire ;
188200 }
189201
202+ public Boolean getIPV6Access () {
203+ return ipv6Access ;
204+ }
205+
206+ public void setIPV6Access (Boolean ipv6Access ) {
207+ this .ipv6Access = ipv6Access ;
208+ }
209+
210+ public List <String > getExtraDomain () {
211+ return extraDomain ;
212+ }
213+
214+ public void setExtraDomain (List <String > extraDomain ) {
215+ this .extraDomain = extraDomain ;
216+ }
217+
190218 public Integer getBandwidthPackage () {
191219 return bandwidthPackage ;
192220 }
@@ -202,5 +230,13 @@ public String getForwardRegion() {
202230 public void setForwardRegion (String forwardRegion ) {
203231 this .forwardRegion = forwardRegion ;
204232 }
233+
234+ public Object getDomainStatus () {
235+ return domainStatus ;
236+ }
237+
238+ public void setDomainStatus (Object domainStatus ) {
239+ this .domainStatus = domainStatus ;
240+ }
205241 }
206242}
0 commit comments