Skip to content

Commit a3afd69

Browse files
author
BitsAdmin
committed
Merge branch 'clb-Java-2020-04-01-online-1885-2025_11_26_22_10_15' into 'integration_2025-11-27_1087993550082'
feat: [development task] clb-1885-Java (1876771) See merge request iaasng/volcengine-java-sdk!762
2 parents 6b36f1c + e281734 commit a3afd69

File tree

4 files changed

+257
-4
lines changed

4 files changed

+257
-4
lines changed

volcengine-java-sdk-clb/src/main/java/com/volcengine/clb/model/AddZoneMappingForModifyNetworkLoadBalancerZonesInput.java

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ public class AddZoneMappingForModifyNetworkLoadBalancerZonesInput {
3333
@SerializedName("EipId")
3434
private String eipId = null;
3535

36+
@SerializedName("EipIsp")
37+
private String eipIsp = null;
38+
39+
@SerializedName("EipSpecificEgress")
40+
private String eipSpecificEgress = null;
41+
3642
@SerializedName("Ipv4Address")
3743
private String ipv4Address = null;
3844

@@ -60,6 +66,42 @@ public void setEipId(String eipId) {
6066
this.eipId = eipId;
6167
}
6268

69+
public AddZoneMappingForModifyNetworkLoadBalancerZonesInput eipIsp(String eipIsp) {
70+
this.eipIsp = eipIsp;
71+
return this;
72+
}
73+
74+
/**
75+
* Get eipIsp
76+
* @return eipIsp
77+
**/
78+
@Schema(description = "")
79+
public String getEipIsp() {
80+
return eipIsp;
81+
}
82+
83+
public void setEipIsp(String eipIsp) {
84+
this.eipIsp = eipIsp;
85+
}
86+
87+
public AddZoneMappingForModifyNetworkLoadBalancerZonesInput eipSpecificEgress(String eipSpecificEgress) {
88+
this.eipSpecificEgress = eipSpecificEgress;
89+
return this;
90+
}
91+
92+
/**
93+
* Get eipSpecificEgress
94+
* @return eipSpecificEgress
95+
**/
96+
@Schema(description = "")
97+
public String getEipSpecificEgress() {
98+
return eipSpecificEgress;
99+
}
100+
101+
public void setEipSpecificEgress(String eipSpecificEgress) {
102+
this.eipSpecificEgress = eipSpecificEgress;
103+
}
104+
63105
public AddZoneMappingForModifyNetworkLoadBalancerZonesInput ipv4Address(String ipv4Address) {
64106
this.ipv4Address = ipv4Address;
65107
return this;
@@ -125,14 +167,16 @@ public boolean equals(java.lang.Object o) {
125167
}
126168
AddZoneMappingForModifyNetworkLoadBalancerZonesInput addZoneMappingForModifyNetworkLoadBalancerZonesInput = (AddZoneMappingForModifyNetworkLoadBalancerZonesInput) o;
127169
return Objects.equals(this.eipId, addZoneMappingForModifyNetworkLoadBalancerZonesInput.eipId) &&
170+
Objects.equals(this.eipIsp, addZoneMappingForModifyNetworkLoadBalancerZonesInput.eipIsp) &&
171+
Objects.equals(this.eipSpecificEgress, addZoneMappingForModifyNetworkLoadBalancerZonesInput.eipSpecificEgress) &&
128172
Objects.equals(this.ipv4Address, addZoneMappingForModifyNetworkLoadBalancerZonesInput.ipv4Address) &&
129173
Objects.equals(this.subnetId, addZoneMappingForModifyNetworkLoadBalancerZonesInput.subnetId) &&
130174
Objects.equals(this.zoneId, addZoneMappingForModifyNetworkLoadBalancerZonesInput.zoneId);
131175
}
132176

133177
@Override
134178
public int hashCode() {
135-
return Objects.hash(eipId, ipv4Address, subnetId, zoneId);
179+
return Objects.hash(eipId, eipIsp, eipSpecificEgress, ipv4Address, subnetId, zoneId);
136180
}
137181

138182

@@ -142,6 +186,8 @@ public String toString() {
142186
sb.append("class AddZoneMappingForModifyNetworkLoadBalancerZonesInput {\n");
143187

144188
sb.append(" eipId: ").append(toIndentedString(eipId)).append("\n");
189+
sb.append(" eipIsp: ").append(toIndentedString(eipIsp)).append("\n");
190+
sb.append(" eipSpecificEgress: ").append(toIndentedString(eipSpecificEgress)).append("\n");
145191
sb.append(" ipv4Address: ").append(toIndentedString(ipv4Address)).append("\n");
146192
sb.append(" subnetId: ").append(toIndentedString(subnetId)).append("\n");
147193
sb.append(" zoneId: ").append(toIndentedString(zoneId)).append("\n");

volcengine-java-sdk-clb/src/main/java/com/volcengine/clb/model/ListenerForDescribeNLBListenersOutput.java

Lines changed: 116 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,21 @@ public class ListenerForDescribeNLBListenersOutput {
3636
@SerializedName("AccountId")
3737
private String accountId = null;
3838

39+
@SerializedName("CACertificateId")
40+
private String caCertificateId = null;
41+
42+
@SerializedName("CACertificateSource")
43+
private String caCertificateSource = null;
44+
45+
@SerializedName("CAEnabled")
46+
private Boolean caEnabled = null;
47+
3948
@SerializedName("CertificateId")
4049
private String certificateId = null;
4150

51+
@SerializedName("CertificateSource")
52+
private String certificateSource = null;
53+
4254
@SerializedName("ConnectionTimeout")
4355
private Integer connectionTimeout = null;
4456

@@ -63,6 +75,9 @@ public class ListenerForDescribeNLBListenersOutput {
6375
@SerializedName("LoadBalancerId")
6476
private String loadBalancerId = null;
6577

78+
@SerializedName("PCACertificateId")
79+
private String pcACertificateId = null;
80+
6681
@SerializedName("Port")
6782
private Integer port = null;
6883

@@ -108,6 +123,60 @@ public void setAccountId(String accountId) {
108123
this.accountId = accountId;
109124
}
110125

126+
public ListenerForDescribeNLBListenersOutput caCertificateId(String caCertificateId) {
127+
this.caCertificateId = caCertificateId;
128+
return this;
129+
}
130+
131+
/**
132+
* Get caCertificateId
133+
* @return caCertificateId
134+
**/
135+
@Schema(description = "")
136+
public String getCaCertificateId() {
137+
return caCertificateId;
138+
}
139+
140+
public void setCaCertificateId(String caCertificateId) {
141+
this.caCertificateId = caCertificateId;
142+
}
143+
144+
public ListenerForDescribeNLBListenersOutput caCertificateSource(String caCertificateSource) {
145+
this.caCertificateSource = caCertificateSource;
146+
return this;
147+
}
148+
149+
/**
150+
* Get caCertificateSource
151+
* @return caCertificateSource
152+
**/
153+
@Schema(description = "")
154+
public String getCaCertificateSource() {
155+
return caCertificateSource;
156+
}
157+
158+
public void setCaCertificateSource(String caCertificateSource) {
159+
this.caCertificateSource = caCertificateSource;
160+
}
161+
162+
public ListenerForDescribeNLBListenersOutput caEnabled(Boolean caEnabled) {
163+
this.caEnabled = caEnabled;
164+
return this;
165+
}
166+
167+
/**
168+
* Get caEnabled
169+
* @return caEnabled
170+
**/
171+
@Schema(description = "")
172+
public Boolean isCaEnabled() {
173+
return caEnabled;
174+
}
175+
176+
public void setCaEnabled(Boolean caEnabled) {
177+
this.caEnabled = caEnabled;
178+
}
179+
111180
public ListenerForDescribeNLBListenersOutput certificateId(String certificateId) {
112181
this.certificateId = certificateId;
113182
return this;
@@ -126,6 +195,24 @@ public void setCertificateId(String certificateId) {
126195
this.certificateId = certificateId;
127196
}
128197

198+
public ListenerForDescribeNLBListenersOutput certificateSource(String certificateSource) {
199+
this.certificateSource = certificateSource;
200+
return this;
201+
}
202+
203+
/**
204+
* Get certificateSource
205+
* @return certificateSource
206+
**/
207+
@Schema(description = "")
208+
public String getCertificateSource() {
209+
return certificateSource;
210+
}
211+
212+
public void setCertificateSource(String certificateSource) {
213+
this.certificateSource = certificateSource;
214+
}
215+
129216
public ListenerForDescribeNLBListenersOutput connectionTimeout(Integer connectionTimeout) {
130217
this.connectionTimeout = connectionTimeout;
131218
return this;
@@ -270,6 +357,24 @@ public void setLoadBalancerId(String loadBalancerId) {
270357
this.loadBalancerId = loadBalancerId;
271358
}
272359

360+
public ListenerForDescribeNLBListenersOutput pcACertificateId(String pcACertificateId) {
361+
this.pcACertificateId = pcACertificateId;
362+
return this;
363+
}
364+
365+
/**
366+
* Get pcACertificateId
367+
* @return pcACertificateId
368+
**/
369+
@Schema(description = "")
370+
public String getPcACertificateId() {
371+
return pcACertificateId;
372+
}
373+
374+
public void setPcACertificateId(String pcACertificateId) {
375+
this.pcACertificateId = pcACertificateId;
376+
}
377+
273378
public ListenerForDescribeNLBListenersOutput port(Integer port) {
274379
this.port = port;
275380
return this;
@@ -452,7 +557,11 @@ public boolean equals(java.lang.Object o) {
452557
}
453558
ListenerForDescribeNLBListenersOutput listenerForDescribeNLBListenersOutput = (ListenerForDescribeNLBListenersOutput) o;
454559
return Objects.equals(this.accountId, listenerForDescribeNLBListenersOutput.accountId) &&
560+
Objects.equals(this.caCertificateId, listenerForDescribeNLBListenersOutput.caCertificateId) &&
561+
Objects.equals(this.caCertificateSource, listenerForDescribeNLBListenersOutput.caCertificateSource) &&
562+
Objects.equals(this.caEnabled, listenerForDescribeNLBListenersOutput.caEnabled) &&
455563
Objects.equals(this.certificateId, listenerForDescribeNLBListenersOutput.certificateId) &&
564+
Objects.equals(this.certificateSource, listenerForDescribeNLBListenersOutput.certificateSource) &&
456565
Objects.equals(this.connectionTimeout, listenerForDescribeNLBListenersOutput.connectionTimeout) &&
457566
Objects.equals(this.createTime, listenerForDescribeNLBListenersOutput.createTime) &&
458567
Objects.equals(this.description, listenerForDescribeNLBListenersOutput.description) &&
@@ -461,6 +570,7 @@ public boolean equals(java.lang.Object o) {
461570
Objects.equals(this.listenerId, listenerForDescribeNLBListenersOutput.listenerId) &&
462571
Objects.equals(this.listenerName, listenerForDescribeNLBListenersOutput.listenerName) &&
463572
Objects.equals(this.loadBalancerId, listenerForDescribeNLBListenersOutput.loadBalancerId) &&
573+
Objects.equals(this.pcACertificateId, listenerForDescribeNLBListenersOutput.pcACertificateId) &&
464574
Objects.equals(this.port, listenerForDescribeNLBListenersOutput.port) &&
465575
Objects.equals(this.protocol, listenerForDescribeNLBListenersOutput.protocol) &&
466576
Objects.equals(this.securityPolicyId, listenerForDescribeNLBListenersOutput.securityPolicyId) &&
@@ -474,7 +584,7 @@ public boolean equals(java.lang.Object o) {
474584

475585
@Override
476586
public int hashCode() {
477-
return Objects.hash(accountId, certificateId, connectionTimeout, createTime, description, enabled, endPort, listenerId, listenerName, loadBalancerId, port, protocol, securityPolicyId, securityPolicyType, serverGroupId, startPort, status, tags, updateTime);
587+
return Objects.hash(accountId, caCertificateId, caCertificateSource, caEnabled, certificateId, certificateSource, connectionTimeout, createTime, description, enabled, endPort, listenerId, listenerName, loadBalancerId, pcACertificateId, port, protocol, securityPolicyId, securityPolicyType, serverGroupId, startPort, status, tags, updateTime);
478588
}
479589

480590

@@ -484,7 +594,11 @@ public String toString() {
484594
sb.append("class ListenerForDescribeNLBListenersOutput {\n");
485595

486596
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
597+
sb.append(" caCertificateId: ").append(toIndentedString(caCertificateId)).append("\n");
598+
sb.append(" caCertificateSource: ").append(toIndentedString(caCertificateSource)).append("\n");
599+
sb.append(" caEnabled: ").append(toIndentedString(caEnabled)).append("\n");
487600
sb.append(" certificateId: ").append(toIndentedString(certificateId)).append("\n");
601+
sb.append(" certificateSource: ").append(toIndentedString(certificateSource)).append("\n");
488602
sb.append(" connectionTimeout: ").append(toIndentedString(connectionTimeout)).append("\n");
489603
sb.append(" createTime: ").append(toIndentedString(createTime)).append("\n");
490604
sb.append(" description: ").append(toIndentedString(description)).append("\n");
@@ -493,6 +607,7 @@ public String toString() {
493607
sb.append(" listenerId: ").append(toIndentedString(listenerId)).append("\n");
494608
sb.append(" listenerName: ").append(toIndentedString(listenerName)).append("\n");
495609
sb.append(" loadBalancerId: ").append(toIndentedString(loadBalancerId)).append("\n");
610+
sb.append(" pcACertificateId: ").append(toIndentedString(pcACertificateId)).append("\n");
496611
sb.append(" port: ").append(toIndentedString(port)).append("\n");
497612
sb.append(" protocol: ").append(toIndentedString(protocol)).append("\n");
498613
sb.append(" securityPolicyId: ").append(toIndentedString(securityPolicyId)).append("\n");

volcengine-java-sdk-clb/src/main/java/com/volcengine/clb/model/ZoneMappingForCreateNetworkLoadBalancerInput.java

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ public class ZoneMappingForCreateNetworkLoadBalancerInput {
3333
@SerializedName("EipId")
3434
private String eipId = null;
3535

36+
@SerializedName("EipIsp")
37+
private String eipIsp = null;
38+
39+
@SerializedName("EipSpecificEgress")
40+
private String eipSpecificEgress = null;
41+
3642
@SerializedName("Ipv4Address")
3743
private String ipv4Address = null;
3844

@@ -60,6 +66,42 @@ public void setEipId(String eipId) {
6066
this.eipId = eipId;
6167
}
6268

69+
public ZoneMappingForCreateNetworkLoadBalancerInput eipIsp(String eipIsp) {
70+
this.eipIsp = eipIsp;
71+
return this;
72+
}
73+
74+
/**
75+
* Get eipIsp
76+
* @return eipIsp
77+
**/
78+
@Schema(description = "")
79+
public String getEipIsp() {
80+
return eipIsp;
81+
}
82+
83+
public void setEipIsp(String eipIsp) {
84+
this.eipIsp = eipIsp;
85+
}
86+
87+
public ZoneMappingForCreateNetworkLoadBalancerInput eipSpecificEgress(String eipSpecificEgress) {
88+
this.eipSpecificEgress = eipSpecificEgress;
89+
return this;
90+
}
91+
92+
/**
93+
* Get eipSpecificEgress
94+
* @return eipSpecificEgress
95+
**/
96+
@Schema(description = "")
97+
public String getEipSpecificEgress() {
98+
return eipSpecificEgress;
99+
}
100+
101+
public void setEipSpecificEgress(String eipSpecificEgress) {
102+
this.eipSpecificEgress = eipSpecificEgress;
103+
}
104+
63105
public ZoneMappingForCreateNetworkLoadBalancerInput ipv4Address(String ipv4Address) {
64106
this.ipv4Address = ipv4Address;
65107
return this;
@@ -127,14 +169,16 @@ public boolean equals(java.lang.Object o) {
127169
}
128170
ZoneMappingForCreateNetworkLoadBalancerInput zoneMappingForCreateNetworkLoadBalancerInput = (ZoneMappingForCreateNetworkLoadBalancerInput) o;
129171
return Objects.equals(this.eipId, zoneMappingForCreateNetworkLoadBalancerInput.eipId) &&
172+
Objects.equals(this.eipIsp, zoneMappingForCreateNetworkLoadBalancerInput.eipIsp) &&
173+
Objects.equals(this.eipSpecificEgress, zoneMappingForCreateNetworkLoadBalancerInput.eipSpecificEgress) &&
130174
Objects.equals(this.ipv4Address, zoneMappingForCreateNetworkLoadBalancerInput.ipv4Address) &&
131175
Objects.equals(this.subnetId, zoneMappingForCreateNetworkLoadBalancerInput.subnetId) &&
132176
Objects.equals(this.zoneId, zoneMappingForCreateNetworkLoadBalancerInput.zoneId);
133177
}
134178

135179
@Override
136180
public int hashCode() {
137-
return Objects.hash(eipId, ipv4Address, subnetId, zoneId);
181+
return Objects.hash(eipId, eipIsp, eipSpecificEgress, ipv4Address, subnetId, zoneId);
138182
}
139183

140184

@@ -144,6 +188,8 @@ public String toString() {
144188
sb.append("class ZoneMappingForCreateNetworkLoadBalancerInput {\n");
145189

146190
sb.append(" eipId: ").append(toIndentedString(eipId)).append("\n");
191+
sb.append(" eipIsp: ").append(toIndentedString(eipIsp)).append("\n");
192+
sb.append(" eipSpecificEgress: ").append(toIndentedString(eipSpecificEgress)).append("\n");
147193
sb.append(" ipv4Address: ").append(toIndentedString(ipv4Address)).append("\n");
148194
sb.append(" subnetId: ").append(toIndentedString(subnetId)).append("\n");
149195
sb.append(" zoneId: ").append(toIndentedString(zoneId)).append("\n");

0 commit comments

Comments
 (0)