Skip to content

Commit c0de697

Browse files
committed
Merge 'integration_2026-03-12_1124107332866' into 'master'
merge branch integration_2026-03-12_1124107332866 into master See merge request: !918
2 parents e967315 + b55b466 commit c0de697

File tree

780 files changed

+107798
-9977
lines changed

Some content is hidden

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

780 files changed

+107798
-9977
lines changed

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.14</version>
67+
<version>1.0.15</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.14</version>
83+
<version>1.0.15</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>com.volcengine</groupId>
8787
<artifactId>volcengine-java-sdk-ecs</artifactId>
88-
<version>1.0.14</version>
88+
<version>1.0.15</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.14",
3-
"meta_commit": "bca411b04b2fdc0b5fe802b2f9f6621e7256b039"
2+
"lasted": "1.0.15",
3+
"meta_commit": "971d207c4aa61c8a81b7d41a71ec48a7ead257ae"
44
}

pom.xml

Lines changed: 2 additions & 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.14</version>
7+
<version>1.0.15</version>
88
<name>volcengine-java-sdk</name>
99
<url>https://open.volcengineapi.com</url>
1010
<description>The Java SDK For Volcengine</description>
@@ -333,5 +333,6 @@
333333
<module>volcengine-java-sdk-insight</module>
334334
<module>volcengine-java-sdk-llmscan</module>
335335
<module>volcengine-java-sdk-mem0</module>
336+
<module>volcengine-java-sdk-apmplusserver</module>
336337
</modules>
337338
</project>

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.14</version>
6+
<version>1.0.15</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: 3798 additions & 1152 deletions
Large diffs are not rendered by default.
Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
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+
* AttachTagRequest
30+
*/
31+
32+
33+
34+
public class AttachTagRequest {
35+
@SerializedName("PodIdList")
36+
private List<String> podIdList = null;
37+
38+
@SerializedName("ProductId")
39+
private String productId = null;
40+
41+
@SerializedName("TagId")
42+
private String tagId = null;
43+
44+
public AttachTagRequest podIdList(List<String> podIdList) {
45+
this.podIdList = podIdList;
46+
return this;
47+
}
48+
49+
public AttachTagRequest addPodIdListItem(String podIdListItem) {
50+
if (this.podIdList == null) {
51+
this.podIdList = new ArrayList<String>();
52+
}
53+
this.podIdList.add(podIdListItem);
54+
return this;
55+
}
56+
57+
/**
58+
* Get podIdList
59+
* @return podIdList
60+
**/
61+
@Schema(description = "")
62+
public List<String> getPodIdList() {
63+
return podIdList;
64+
}
65+
66+
public void setPodIdList(List<String> podIdList) {
67+
this.podIdList = podIdList;
68+
}
69+
70+
public AttachTagRequest productId(String productId) {
71+
this.productId = productId;
72+
return this;
73+
}
74+
75+
/**
76+
* Get productId
77+
* @return productId
78+
**/
79+
@NotNull
80+
@Schema(required = true, description = "")
81+
public String getProductId() {
82+
return productId;
83+
}
84+
85+
public void setProductId(String productId) {
86+
this.productId = productId;
87+
}
88+
89+
public AttachTagRequest tagId(String tagId) {
90+
this.tagId = tagId;
91+
return this;
92+
}
93+
94+
/**
95+
* Get tagId
96+
* @return tagId
97+
**/
98+
@NotNull
99+
@Schema(required = true, description = "")
100+
public String getTagId() {
101+
return tagId;
102+
}
103+
104+
public void setTagId(String tagId) {
105+
this.tagId = tagId;
106+
}
107+
108+
109+
@Override
110+
public boolean equals(java.lang.Object o) {
111+
if (this == o) {
112+
return true;
113+
}
114+
if (o == null || getClass() != o.getClass()) {
115+
return false;
116+
}
117+
AttachTagRequest attachTagRequest = (AttachTagRequest) o;
118+
return Objects.equals(this.podIdList, attachTagRequest.podIdList) &&
119+
Objects.equals(this.productId, attachTagRequest.productId) &&
120+
Objects.equals(this.tagId, attachTagRequest.tagId);
121+
}
122+
123+
@Override
124+
public int hashCode() {
125+
return Objects.hash(podIdList, productId, tagId);
126+
}
127+
128+
129+
@Override
130+
public String toString() {
131+
StringBuilder sb = new StringBuilder();
132+
sb.append("class AttachTagRequest {\n");
133+
134+
sb.append(" podIdList: ").append(toIndentedString(podIdList)).append("\n");
135+
sb.append(" productId: ").append(toIndentedString(productId)).append("\n");
136+
sb.append(" tagId: ").append(toIndentedString(tagId)).append("\n");
137+
sb.append("}");
138+
return sb.toString();
139+
}
140+
141+
/**
142+
* Convert the given object to string with each line indented by 4 spaces
143+
* (except the first line).
144+
*/
145+
private String toIndentedString(java.lang.Object o) {
146+
if (o == null) {
147+
return "null";
148+
}
149+
return o.toString().replace("\n", "\n ");
150+
}
151+
152+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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 javax.validation.constraints.*;
18+
import javax.validation.Valid;
19+
/**
20+
* AttachTagResponse
21+
*/
22+
23+
24+
25+
public class AttachTagResponse extends com.volcengine.model.AbstractResponse {
26+
27+
@Override
28+
public boolean equals(java.lang.Object o) {
29+
if (this == o) {
30+
return true;
31+
}
32+
if (o == null || getClass() != o.getClass()) {
33+
return false;
34+
}
35+
return true;
36+
}
37+
38+
@Override
39+
public int hashCode() {
40+
return Objects.hash();
41+
}
42+
43+
44+
@Override
45+
public String toString() {
46+
StringBuilder sb = new StringBuilder();
47+
sb.append("class AttachTagResponse {\n");
48+
49+
sb.append("}");
50+
return sb.toString();
51+
}
52+
53+
/**
54+
* Convert the given object to string with each line indented by 4 spaces
55+
* (except the first line).
56+
*/
57+
private String toIndentedString(java.lang.Object o) {
58+
if (o == null) {
59+
return "null";
60+
}
61+
return o.toString().replace("\n", "\n ");
62+
}
63+
64+
}

0 commit comments

Comments
 (0)