Skip to content

Commit c76788c

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for acep-Java-2025-05-01-online-1339-2025_07_01_15_34_40
1 parent 6911052 commit c76788c

File tree

116 files changed

+4609
-111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+4609
-111
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>com.volcengine</groupId>
6464
<artifactId>volcengine-java-sdk-bom</artifactId>
65-
<version>0.2.20</version>
65+
<version>0.2.21</version>
6666
<type>pom</type>
6767
<scope>import</scope>
6868
</dependency>
@@ -78,12 +78,12 @@
7878
<dependency>
7979
<groupId>com.volcengine</groupId>
8080
<artifactId>volcengine-java-sdk-vpc</artifactId>
81-
<version>0.2.20</version>
81+
<version>0.2.21</version>
8282
</dependency>
8383
<dependency>
8484
<groupId>com.volcengine</groupId>
8585
<artifactId>volcengine-java-sdk-ecs</artifactId>
86-
<version>0.2.20</version>
86+
<version>0.2.21</version>
8787
</dependency>
8888
</dependencies>
8989
```

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "0.2.20",
3-
"meta_commit": "82b632113bb9694a1715a19be5ae489ba40c2066"
2+
"lasted": "0.2.21",
3+
"meta_commit": "47b3ac75c683ebb4adbf2bfb734ea3cc25f12fe8"
44
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcengine-java-sdk</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.2.20</version>
7+
<version>0.2.21</version>
88
<name>volcengine-java-sdk</name>
99
<url>https://open.volcengineapi.com</url>
1010
<description>The Java SDK For Volcengine</description>

volcengine-java-sdk-acep/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcengine-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.2.20</version>
6+
<version>0.2.21</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcengine-java-sdk-acep/src/main/java/com/volcengine/acep/AcepApi.java

Lines changed: 1149 additions & 15 deletions
Large diffs are not rendered by default.
Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,283 @@
1+
/*
2+
* acep
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.acep.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* AddCustomRouteRequest
28+
*/
29+
30+
31+
32+
public class AddCustomRouteRequest {
33+
@SerializedName("CustomRouteName")
34+
private String customRouteName = null;
35+
36+
@SerializedName("DstIP")
37+
private String dstIP = null;
38+
39+
@SerializedName("ProductId")
40+
private String productId = null;
41+
42+
@SerializedName("ProxyCipher")
43+
private String proxyCipher = null;
44+
45+
@SerializedName("ProxyPassword")
46+
private String proxyPassword = null;
47+
48+
@SerializedName("ProxyPort")
49+
private Integer proxyPort = null;
50+
51+
@SerializedName("ProxyProtocol")
52+
private String proxyProtocol = null;
53+
54+
@SerializedName("ProxyUserName")
55+
private String proxyUserName = null;
56+
57+
@SerializedName("Zone")
58+
private String zone = null;
59+
60+
public AddCustomRouteRequest customRouteName(String customRouteName) {
61+
this.customRouteName = customRouteName;
62+
return this;
63+
}
64+
65+
/**
66+
* Get customRouteName
67+
* @return customRouteName
68+
**/
69+
@Schema(description = "")
70+
public String getCustomRouteName() {
71+
return customRouteName;
72+
}
73+
74+
public void setCustomRouteName(String customRouteName) {
75+
this.customRouteName = customRouteName;
76+
}
77+
78+
public AddCustomRouteRequest dstIP(String dstIP) {
79+
this.dstIP = dstIP;
80+
return this;
81+
}
82+
83+
/**
84+
* Get dstIP
85+
* @return dstIP
86+
**/
87+
@NotNull
88+
@Schema(required = true, description = "")
89+
public String getDstIP() {
90+
return dstIP;
91+
}
92+
93+
public void setDstIP(String dstIP) {
94+
this.dstIP = dstIP;
95+
}
96+
97+
public AddCustomRouteRequest productId(String productId) {
98+
this.productId = productId;
99+
return this;
100+
}
101+
102+
/**
103+
* Get productId
104+
* @return productId
105+
**/
106+
@NotNull
107+
@Schema(required = true, description = "")
108+
public String getProductId() {
109+
return productId;
110+
}
111+
112+
public void setProductId(String productId) {
113+
this.productId = productId;
114+
}
115+
116+
public AddCustomRouteRequest proxyCipher(String proxyCipher) {
117+
this.proxyCipher = proxyCipher;
118+
return this;
119+
}
120+
121+
/**
122+
* Get proxyCipher
123+
* @return proxyCipher
124+
**/
125+
@Schema(description = "")
126+
public String getProxyCipher() {
127+
return proxyCipher;
128+
}
129+
130+
public void setProxyCipher(String proxyCipher) {
131+
this.proxyCipher = proxyCipher;
132+
}
133+
134+
public AddCustomRouteRequest proxyPassword(String proxyPassword) {
135+
this.proxyPassword = proxyPassword;
136+
return this;
137+
}
138+
139+
/**
140+
* Get proxyPassword
141+
* @return proxyPassword
142+
**/
143+
@Schema(description = "")
144+
public String getProxyPassword() {
145+
return proxyPassword;
146+
}
147+
148+
public void setProxyPassword(String proxyPassword) {
149+
this.proxyPassword = proxyPassword;
150+
}
151+
152+
public AddCustomRouteRequest proxyPort(Integer proxyPort) {
153+
this.proxyPort = proxyPort;
154+
return this;
155+
}
156+
157+
/**
158+
* Get proxyPort
159+
* @return proxyPort
160+
**/
161+
@NotNull
162+
@Schema(required = true, description = "")
163+
public Integer getProxyPort() {
164+
return proxyPort;
165+
}
166+
167+
public void setProxyPort(Integer proxyPort) {
168+
this.proxyPort = proxyPort;
169+
}
170+
171+
public AddCustomRouteRequest proxyProtocol(String proxyProtocol) {
172+
this.proxyProtocol = proxyProtocol;
173+
return this;
174+
}
175+
176+
/**
177+
* Get proxyProtocol
178+
* @return proxyProtocol
179+
**/
180+
@NotNull
181+
@Schema(required = true, description = "")
182+
public String getProxyProtocol() {
183+
return proxyProtocol;
184+
}
185+
186+
public void setProxyProtocol(String proxyProtocol) {
187+
this.proxyProtocol = proxyProtocol;
188+
}
189+
190+
public AddCustomRouteRequest proxyUserName(String proxyUserName) {
191+
this.proxyUserName = proxyUserName;
192+
return this;
193+
}
194+
195+
/**
196+
* Get proxyUserName
197+
* @return proxyUserName
198+
**/
199+
@Schema(description = "")
200+
public String getProxyUserName() {
201+
return proxyUserName;
202+
}
203+
204+
public void setProxyUserName(String proxyUserName) {
205+
this.proxyUserName = proxyUserName;
206+
}
207+
208+
public AddCustomRouteRequest zone(String zone) {
209+
this.zone = zone;
210+
return this;
211+
}
212+
213+
/**
214+
* Get zone
215+
* @return zone
216+
**/
217+
@NotNull
218+
@Schema(required = true, description = "")
219+
public String getZone() {
220+
return zone;
221+
}
222+
223+
public void setZone(String zone) {
224+
this.zone = zone;
225+
}
226+
227+
228+
@Override
229+
public boolean equals(java.lang.Object o) {
230+
if (this == o) {
231+
return true;
232+
}
233+
if (o == null || getClass() != o.getClass()) {
234+
return false;
235+
}
236+
AddCustomRouteRequest addCustomRouteRequest = (AddCustomRouteRequest) o;
237+
return Objects.equals(this.customRouteName, addCustomRouteRequest.customRouteName) &&
238+
Objects.equals(this.dstIP, addCustomRouteRequest.dstIP) &&
239+
Objects.equals(this.productId, addCustomRouteRequest.productId) &&
240+
Objects.equals(this.proxyCipher, addCustomRouteRequest.proxyCipher) &&
241+
Objects.equals(this.proxyPassword, addCustomRouteRequest.proxyPassword) &&
242+
Objects.equals(this.proxyPort, addCustomRouteRequest.proxyPort) &&
243+
Objects.equals(this.proxyProtocol, addCustomRouteRequest.proxyProtocol) &&
244+
Objects.equals(this.proxyUserName, addCustomRouteRequest.proxyUserName) &&
245+
Objects.equals(this.zone, addCustomRouteRequest.zone);
246+
}
247+
248+
@Override
249+
public int hashCode() {
250+
return Objects.hash(customRouteName, dstIP, productId, proxyCipher, proxyPassword, proxyPort, proxyProtocol, proxyUserName, zone);
251+
}
252+
253+
254+
@Override
255+
public String toString() {
256+
StringBuilder sb = new StringBuilder();
257+
sb.append("class AddCustomRouteRequest {\n");
258+
259+
sb.append(" customRouteName: ").append(toIndentedString(customRouteName)).append("\n");
260+
sb.append(" dstIP: ").append(toIndentedString(dstIP)).append("\n");
261+
sb.append(" productId: ").append(toIndentedString(productId)).append("\n");
262+
sb.append(" proxyCipher: ").append(toIndentedString(proxyCipher)).append("\n");
263+
sb.append(" proxyPassword: ").append(toIndentedString(proxyPassword)).append("\n");
264+
sb.append(" proxyPort: ").append(toIndentedString(proxyPort)).append("\n");
265+
sb.append(" proxyProtocol: ").append(toIndentedString(proxyProtocol)).append("\n");
266+
sb.append(" proxyUserName: ").append(toIndentedString(proxyUserName)).append("\n");
267+
sb.append(" zone: ").append(toIndentedString(zone)).append("\n");
268+
sb.append("}");
269+
return sb.toString();
270+
}
271+
272+
/**
273+
* Convert the given object to string with each line indented by 4 spaces
274+
* (except the first line).
275+
*/
276+
private String toIndentedString(java.lang.Object o) {
277+
if (o == null) {
278+
return "null";
279+
}
280+
return o.toString().replace("\n", "\n ");
281+
}
282+
283+
}

0 commit comments

Comments
 (0)