Skip to content

Commit be1c42e

Browse files
author
BitsAdmin
committed
Merge branch 'dns-Java-2018-08-01-online-1852-2025_11_19_20_55_18' into 'integration_2025-11-20_1086065921538'
feat: [development task] dns-1852-Java (1852996) See merge request iaasng/volcengine-java-sdk!757
2 parents 1ebcce0 + 84c0aaa commit be1c42e

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

volcengine-java-sdk-dns/src/main/java/com/volcengine/dns/model/ZoneForListZonesOutput.java

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333

3434

3535
public class ZoneForListZonesOutput {
36+
@SerializedName("AutoRenew")
37+
private String autoRenew = null;
38+
3639
@SerializedName("CacheStage")
3740
private Integer cacheStage = null;
3841

@@ -81,6 +84,24 @@ public class ZoneForListZonesOutput {
8184
@SerializedName("ZoneName")
8285
private String zoneName = null;
8386

87+
public ZoneForListZonesOutput autoRenew(String autoRenew) {
88+
this.autoRenew = autoRenew;
89+
return this;
90+
}
91+
92+
/**
93+
* Get autoRenew
94+
* @return autoRenew
95+
**/
96+
@Schema(description = "")
97+
public String getAutoRenew() {
98+
return autoRenew;
99+
}
100+
101+
public void setAutoRenew(String autoRenew) {
102+
this.autoRenew = autoRenew;
103+
}
104+
84105
public ZoneForListZonesOutput cacheStage(Integer cacheStage) {
85106
this.cacheStage = cacheStage;
86107
return this;
@@ -388,7 +409,8 @@ public boolean equals(java.lang.Object o) {
388409
return false;
389410
}
390411
ZoneForListZonesOutput zoneForListZonesOutput = (ZoneForListZonesOutput) o;
391-
return Objects.equals(this.cacheStage, zoneForListZonesOutput.cacheStage) &&
412+
return Objects.equals(this.autoRenew, zoneForListZonesOutput.autoRenew) &&
413+
Objects.equals(this.cacheStage, zoneForListZonesOutput.cacheStage) &&
392414
Objects.equals(this.configurationCode, zoneForListZonesOutput.configurationCode) &&
393415
Objects.equals(this.createdAt, zoneForListZonesOutput.createdAt) &&
394416
Objects.equals(this.dnsSecurity, zoneForListZonesOutput.dnsSecurity) &&
@@ -408,7 +430,7 @@ public boolean equals(java.lang.Object o) {
408430

409431
@Override
410432
public int hashCode() {
411-
return Objects.hash(cacheStage, configurationCode, createdAt, dnsSecurity, expiredTime, instanceID, isSubDomain, lastOperator, projectName, recordCount, remark, tags, tradeCode, updatedAt, ZID, zoneName);
433+
return Objects.hash(autoRenew, cacheStage, configurationCode, createdAt, dnsSecurity, expiredTime, instanceID, isSubDomain, lastOperator, projectName, recordCount, remark, tags, tradeCode, updatedAt, ZID, zoneName);
412434
}
413435

414436

@@ -417,6 +439,7 @@ public String toString() {
417439
StringBuilder sb = new StringBuilder();
418440
sb.append("class ZoneForListZonesOutput {\n");
419441

442+
sb.append(" autoRenew: ").append(toIndentedString(autoRenew)).append("\n");
420443
sb.append(" cacheStage: ").append(toIndentedString(cacheStage)).append("\n");
421444
sb.append(" configurationCode: ").append(toIndentedString(configurationCode)).append("\n");
422445
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");

0 commit comments

Comments
 (0)