Skip to content

Commit 65c60da

Browse files
author
BitsAdmin
committed
Merge 'acep-Java-2025-05-01-online-2486-2026_04_09_01_31_52' into 'integration_2026-04-09_1135713353474'
feat: [development task] ACEP-2486-Java (2265214) See merge request: !955
2 parents 3a88a3e + c850fac commit 65c60da

35 files changed

Lines changed: 7944 additions & 110 deletions

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+
}
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
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 com.volcengine.acep.model.ProxyResultForGetProxyOutput;
23+
import io.swagger.v3.oas.annotations.media.Schema;
24+
import java.io.IOException;
25+
import java.util.ArrayList;
26+
import java.util.List;
27+
import javax.validation.constraints.*;
28+
import javax.validation.Valid;
29+
/**
30+
* GetProxyResponse
31+
*/
32+
33+
34+
35+
public class GetProxyResponse extends com.volcengine.model.AbstractResponse {
36+
@SerializedName("ProxyResult")
37+
private List<ProxyResultForGetProxyOutput> proxyResult = null;
38+
39+
public GetProxyResponse proxyResult(List<ProxyResultForGetProxyOutput> proxyResult) {
40+
this.proxyResult = proxyResult;
41+
return this;
42+
}
43+
44+
public GetProxyResponse addProxyResultItem(ProxyResultForGetProxyOutput proxyResultItem) {
45+
if (this.proxyResult == null) {
46+
this.proxyResult = new ArrayList<ProxyResultForGetProxyOutput>();
47+
}
48+
this.proxyResult.add(proxyResultItem);
49+
return this;
50+
}
51+
52+
/**
53+
* Get proxyResult
54+
* @return proxyResult
55+
**/
56+
@Valid
57+
@Schema(description = "")
58+
public List<ProxyResultForGetProxyOutput> getProxyResult() {
59+
return proxyResult;
60+
}
61+
62+
public void setProxyResult(List<ProxyResultForGetProxyOutput> proxyResult) {
63+
this.proxyResult = proxyResult;
64+
}
65+
66+
67+
@Override
68+
public boolean equals(java.lang.Object o) {
69+
if (this == o) {
70+
return true;
71+
}
72+
if (o == null || getClass() != o.getClass()) {
73+
return false;
74+
}
75+
GetProxyResponse getProxyResponse = (GetProxyResponse) o;
76+
return Objects.equals(this.proxyResult, getProxyResponse.proxyResult);
77+
}
78+
79+
@Override
80+
public int hashCode() {
81+
return Objects.hash(proxyResult);
82+
}
83+
84+
85+
@Override
86+
public String toString() {
87+
StringBuilder sb = new StringBuilder();
88+
sb.append("class GetProxyResponse {\n");
89+
90+
sb.append(" proxyResult: ").append(toIndentedString(proxyResult)).append("\n");
91+
sb.append("}");
92+
return sb.toString();
93+
}
94+
95+
/**
96+
* Convert the given object to string with each line indented by 4 spaces
97+
* (except the first line).
98+
*/
99+
private String toIndentedString(java.lang.Object o) {
100+
if (o == null) {
101+
return "null";
102+
}
103+
return o.toString().replace("\n", "\n ");
104+
}
105+
106+
}

0 commit comments

Comments
 (0)