Skip to content

Commit 2c713dd

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for acep-Java-2025-05-01-online-2486-2026_04_09_01_31_52
1 parent 478c017 commit 2c713dd

159 files changed

Lines changed: 8071 additions & 237 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>com.volcengine</groupId>
6666
<artifactId>volcengine-java-sdk-bom</artifactId>
67-
<version>1.0.18</version>
67+
<version>1.0.19</version>
6868
<type>pom</type>
6969
<scope>import</scope>
7070
</dependency>
@@ -80,12 +80,12 @@
8080
<dependency>
8181
<groupId>com.volcengine</groupId>
8282
<artifactId>volcengine-java-sdk-vpc</artifactId>
83-
<version>1.0.18</version>
83+
<version>1.0.19</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>com.volcengine</groupId>
8787
<artifactId>volcengine-java-sdk-ecs</artifactId>
88-
<version>1.0.18</version>
88+
<version>1.0.19</version>
8989
</dependency>
9090
</dependencies>
9191
```

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "1.0.18",
3-
"meta_commit": "48352beedef08039bad46007853a532a5d327b50"
2+
"lasted": "1.0.19",
3+
"meta_commit": "af16dc16eae050d2569174fb08e835cca214f895"
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>1.0.18</version>
7+
<version>1.0.19</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>1.0.18</version>
6+
<version>1.0.19</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: 1369 additions & 109 deletions
Large diffs are not rendered by default.
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
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+
* EipForListPodOutput
28+
*/
29+
30+
31+
32+
public class EipForListPodOutput {
33+
@SerializedName("EipAddress")
34+
private String eipAddress = null;
35+
36+
@SerializedName("EipId")
37+
private String eipId = null;
38+
39+
@SerializedName("Isp")
40+
private Integer isp = null;
41+
42+
public EipForListPodOutput eipAddress(String eipAddress) {
43+
this.eipAddress = eipAddress;
44+
return this;
45+
}
46+
47+
/**
48+
* Get eipAddress
49+
* @return eipAddress
50+
**/
51+
@Schema(description = "")
52+
public String getEipAddress() {
53+
return eipAddress;
54+
}
55+
56+
public void setEipAddress(String eipAddress) {
57+
this.eipAddress = eipAddress;
58+
}
59+
60+
public EipForListPodOutput eipId(String eipId) {
61+
this.eipId = eipId;
62+
return this;
63+
}
64+
65+
/**
66+
* Get eipId
67+
* @return eipId
68+
**/
69+
@Schema(description = "")
70+
public String getEipId() {
71+
return eipId;
72+
}
73+
74+
public void setEipId(String eipId) {
75+
this.eipId = eipId;
76+
}
77+
78+
public EipForListPodOutput isp(Integer isp) {
79+
this.isp = isp;
80+
return this;
81+
}
82+
83+
/**
84+
* Get isp
85+
* @return isp
86+
**/
87+
@Schema(description = "")
88+
public Integer getIsp() {
89+
return isp;
90+
}
91+
92+
public void setIsp(Integer isp) {
93+
this.isp = isp;
94+
}
95+
96+
97+
@Override
98+
public boolean equals(java.lang.Object o) {
99+
if (this == o) {
100+
return true;
101+
}
102+
if (o == null || getClass() != o.getClass()) {
103+
return false;
104+
}
105+
EipForListPodOutput eipForListPodOutput = (EipForListPodOutput) o;
106+
return Objects.equals(this.eipAddress, eipForListPodOutput.eipAddress) &&
107+
Objects.equals(this.eipId, eipForListPodOutput.eipId) &&
108+
Objects.equals(this.isp, eipForListPodOutput.isp);
109+
}
110+
111+
@Override
112+
public int hashCode() {
113+
return Objects.hash(eipAddress, eipId, isp);
114+
}
115+
116+
117+
@Override
118+
public String toString() {
119+
StringBuilder sb = new StringBuilder();
120+
sb.append("class EipForListPodOutput {\n");
121+
122+
sb.append(" eipAddress: ").append(toIndentedString(eipAddress)).append("\n");
123+
sb.append(" eipId: ").append(toIndentedString(eipId)).append("\n");
124+
sb.append(" isp: ").append(toIndentedString(isp)).append("\n");
125+
sb.append("}");
126+
return sb.toString();
127+
}
128+
129+
/**
130+
* Convert the given object to string with each line indented by 4 spaces
131+
* (except the first line).
132+
*/
133+
private String toIndentedString(java.lang.Object o) {
134+
if (o == null) {
135+
return "null";
136+
}
137+
return o.toString().replace("\n", "\n ");
138+
}
139+
140+
}
Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
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 java.util.ArrayList;
25+
import java.util.List;
26+
import javax.validation.constraints.*;
27+
import javax.validation.Valid;
28+
/**
29+
* GetProxyRequest
30+
*/
31+
32+
33+
34+
public class GetProxyRequest {
35+
@SerializedName("PodIdList")
36+
private List<String> podIdList = null;
37+
38+
@SerializedName("ProductId")
39+
private String productId = null;
40+
41+
public GetProxyRequest podIdList(List<String> podIdList) {
42+
this.podIdList = podIdList;
43+
return this;
44+
}
45+
46+
public GetProxyRequest addPodIdListItem(String podIdListItem) {
47+
if (this.podIdList == null) {
48+
this.podIdList = new ArrayList<String>();
49+
}
50+
this.podIdList.add(podIdListItem);
51+
return this;
52+
}
53+
54+
/**
55+
* Get podIdList
56+
* @return podIdList
57+
**/
58+
@Schema(description = "")
59+
public List<String> getPodIdList() {
60+
return podIdList;
61+
}
62+
63+
public void setPodIdList(List<String> podIdList) {
64+
this.podIdList = podIdList;
65+
}
66+
67+
public GetProxyRequest productId(String productId) {
68+
this.productId = productId;
69+
return this;
70+
}
71+
72+
/**
73+
* Get productId
74+
* @return productId
75+
**/
76+
@NotNull
77+
@Schema(required = true, description = "")
78+
public String getProductId() {
79+
return productId;
80+
}
81+
82+
public void setProductId(String productId) {
83+
this.productId = productId;
84+
}
85+
86+
87+
@Override
88+
public boolean equals(java.lang.Object o) {
89+
if (this == o) {
90+
return true;
91+
}
92+
if (o == null || getClass() != o.getClass()) {
93+
return false;
94+
}
95+
GetProxyRequest getProxyRequest = (GetProxyRequest) o;
96+
return Objects.equals(this.podIdList, getProxyRequest.podIdList) &&
97+
Objects.equals(this.productId, getProxyRequest.productId);
98+
}
99+
100+
@Override
101+
public int hashCode() {
102+
return Objects.hash(podIdList, productId);
103+
}
104+
105+
106+
@Override
107+
public String toString() {
108+
StringBuilder sb = new StringBuilder();
109+
sb.append("class GetProxyRequest {\n");
110+
111+
sb.append(" podIdList: ").append(toIndentedString(podIdList)).append("\n");
112+
sb.append(" productId: ").append(toIndentedString(productId)).append("\n");
113+
sb.append("}");
114+
return sb.toString();
115+
}
116+
117+
/**
118+
* Convert the given object to string with each line indented by 4 spaces
119+
* (except the first line).
120+
*/
121+
private String toIndentedString(java.lang.Object o) {
122+
if (o == null) {
123+
return "null";
124+
}
125+
return o.toString().replace("\n", "\n ");
126+
}
127+
128+
}

0 commit comments

Comments
 (0)