Skip to content

Commit 5347f9a

Browse files
committed
Merge "integration_2025-11-20_1086065921538" into "i18n_openapi-Java-2021-05-21-online-1846-2025_11_19_17_20_34"
Conflicts: pom.xml volcengine-java-sdk-bom/pom.xml
2 parents d790d2d + 8082dd3 commit 5347f9a

File tree

110 files changed

+18818
-166
lines changed

Some content is hidden

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

110 files changed

+18818
-166
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,5 +322,6 @@
322322
<module>volcengine-java-sdk-milvus</module>
323323
<module>volcengine-java-sdk-smc</module>
324324
<module>volcengine-java-sdk-i18nopenapi</module>
325+
<module>volcengine-java-sdk-config</module>
325326
</modules>
326327
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,12 @@
649649
<optional>false</optional>
650650
<version>${project.version}</version>
651651
</dependency>
652+
<dependency>
653+
<groupId>com.volcengine</groupId>
654+
<artifactId>volcengine-java-sdk-config</artifactId>
655+
<optional>false</optional>
656+
<version>${project.version}</version>
657+
</dependency>
652658
</dependencies>
653659
</dependencyManagement>
654660
</project>

volcengine-java-sdk-config/pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>volcengine-java-sdk</artifactId>
5+
<groupId>com.volcengine</groupId>
6+
<version>0.2.47</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-config</artifactId>
11+
<name>volcengine-java-sdk-config</name>
12+
<description>The Java SDK for Volcengine config</description>
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.volcengine</groupId>
16+
<artifactId>volcengine-java-sdk-core</artifactId>
17+
<version>${project.version}</version>
18+
</dependency>
19+
</dependencies>
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-source-plugin</artifactId>
25+
<configuration>
26+
<excludes>
27+
<exclude>com/volcengine/config/examples/**</exclude>
28+
</excludes>
29+
</configuration>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-jar-plugin</artifactId>
34+
<configuration>
35+
<excludes>
36+
<exclude>com/volcengine/config/examples/**</exclude>
37+
</excludes>
38+
</configuration>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
</project>

volcengine-java-sdk-config/src/main/java/com/volcengine/config/ConfigApi.java

Lines changed: 2702 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 265 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,265 @@
1+
/*
2+
* config
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.config.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+
* AccountGroupForDescribeAccountGroupsOutput
30+
*/
31+
32+
33+
34+
public class AccountGroupForDescribeAccountGroupsOutput {
35+
@SerializedName("AccountGroupId")
36+
private String accountGroupId = null;
37+
38+
@SerializedName("CreatedTime")
39+
private String createdTime = null;
40+
41+
@SerializedName("Description")
42+
private String description = null;
43+
44+
@SerializedName("GroupName")
45+
private String groupName = null;
46+
47+
@SerializedName("GroupType")
48+
private String groupType = null;
49+
50+
@SerializedName("Principals")
51+
private List<String> principals = null;
52+
53+
@SerializedName("Status")
54+
private String status = null;
55+
56+
@SerializedName("UpdatedTime")
57+
private String updatedTime = null;
58+
59+
public AccountGroupForDescribeAccountGroupsOutput accountGroupId(String accountGroupId) {
60+
this.accountGroupId = accountGroupId;
61+
return this;
62+
}
63+
64+
/**
65+
* Get accountGroupId
66+
* @return accountGroupId
67+
**/
68+
@Schema(description = "")
69+
public String getAccountGroupId() {
70+
return accountGroupId;
71+
}
72+
73+
public void setAccountGroupId(String accountGroupId) {
74+
this.accountGroupId = accountGroupId;
75+
}
76+
77+
public AccountGroupForDescribeAccountGroupsOutput createdTime(String createdTime) {
78+
this.createdTime = createdTime;
79+
return this;
80+
}
81+
82+
/**
83+
* Get createdTime
84+
* @return createdTime
85+
**/
86+
@Schema(description = "")
87+
public String getCreatedTime() {
88+
return createdTime;
89+
}
90+
91+
public void setCreatedTime(String createdTime) {
92+
this.createdTime = createdTime;
93+
}
94+
95+
public AccountGroupForDescribeAccountGroupsOutput description(String description) {
96+
this.description = description;
97+
return this;
98+
}
99+
100+
/**
101+
* Get description
102+
* @return description
103+
**/
104+
@Schema(description = "")
105+
public String getDescription() {
106+
return description;
107+
}
108+
109+
public void setDescription(String description) {
110+
this.description = description;
111+
}
112+
113+
public AccountGroupForDescribeAccountGroupsOutput groupName(String groupName) {
114+
this.groupName = groupName;
115+
return this;
116+
}
117+
118+
/**
119+
* Get groupName
120+
* @return groupName
121+
**/
122+
@Schema(description = "")
123+
public String getGroupName() {
124+
return groupName;
125+
}
126+
127+
public void setGroupName(String groupName) {
128+
this.groupName = groupName;
129+
}
130+
131+
public AccountGroupForDescribeAccountGroupsOutput groupType(String groupType) {
132+
this.groupType = groupType;
133+
return this;
134+
}
135+
136+
/**
137+
* Get groupType
138+
* @return groupType
139+
**/
140+
@Schema(description = "")
141+
public String getGroupType() {
142+
return groupType;
143+
}
144+
145+
public void setGroupType(String groupType) {
146+
this.groupType = groupType;
147+
}
148+
149+
public AccountGroupForDescribeAccountGroupsOutput principals(List<String> principals) {
150+
this.principals = principals;
151+
return this;
152+
}
153+
154+
public AccountGroupForDescribeAccountGroupsOutput addPrincipalsItem(String principalsItem) {
155+
if (this.principals == null) {
156+
this.principals = new ArrayList<String>();
157+
}
158+
this.principals.add(principalsItem);
159+
return this;
160+
}
161+
162+
/**
163+
* Get principals
164+
* @return principals
165+
**/
166+
@Schema(description = "")
167+
public List<String> getPrincipals() {
168+
return principals;
169+
}
170+
171+
public void setPrincipals(List<String> principals) {
172+
this.principals = principals;
173+
}
174+
175+
public AccountGroupForDescribeAccountGroupsOutput status(String status) {
176+
this.status = status;
177+
return this;
178+
}
179+
180+
/**
181+
* Get status
182+
* @return status
183+
**/
184+
@Schema(description = "")
185+
public String getStatus() {
186+
return status;
187+
}
188+
189+
public void setStatus(String status) {
190+
this.status = status;
191+
}
192+
193+
public AccountGroupForDescribeAccountGroupsOutput updatedTime(String updatedTime) {
194+
this.updatedTime = updatedTime;
195+
return this;
196+
}
197+
198+
/**
199+
* Get updatedTime
200+
* @return updatedTime
201+
**/
202+
@Schema(description = "")
203+
public String getUpdatedTime() {
204+
return updatedTime;
205+
}
206+
207+
public void setUpdatedTime(String updatedTime) {
208+
this.updatedTime = updatedTime;
209+
}
210+
211+
212+
@Override
213+
public boolean equals(java.lang.Object o) {
214+
if (this == o) {
215+
return true;
216+
}
217+
if (o == null || getClass() != o.getClass()) {
218+
return false;
219+
}
220+
AccountGroupForDescribeAccountGroupsOutput accountGroupForDescribeAccountGroupsOutput = (AccountGroupForDescribeAccountGroupsOutput) o;
221+
return Objects.equals(this.accountGroupId, accountGroupForDescribeAccountGroupsOutput.accountGroupId) &&
222+
Objects.equals(this.createdTime, accountGroupForDescribeAccountGroupsOutput.createdTime) &&
223+
Objects.equals(this.description, accountGroupForDescribeAccountGroupsOutput.description) &&
224+
Objects.equals(this.groupName, accountGroupForDescribeAccountGroupsOutput.groupName) &&
225+
Objects.equals(this.groupType, accountGroupForDescribeAccountGroupsOutput.groupType) &&
226+
Objects.equals(this.principals, accountGroupForDescribeAccountGroupsOutput.principals) &&
227+
Objects.equals(this.status, accountGroupForDescribeAccountGroupsOutput.status) &&
228+
Objects.equals(this.updatedTime, accountGroupForDescribeAccountGroupsOutput.updatedTime);
229+
}
230+
231+
@Override
232+
public int hashCode() {
233+
return Objects.hash(accountGroupId, createdTime, description, groupName, groupType, principals, status, updatedTime);
234+
}
235+
236+
237+
@Override
238+
public String toString() {
239+
StringBuilder sb = new StringBuilder();
240+
sb.append("class AccountGroupForDescribeAccountGroupsOutput {\n");
241+
242+
sb.append(" accountGroupId: ").append(toIndentedString(accountGroupId)).append("\n");
243+
sb.append(" createdTime: ").append(toIndentedString(createdTime)).append("\n");
244+
sb.append(" description: ").append(toIndentedString(description)).append("\n");
245+
sb.append(" groupName: ").append(toIndentedString(groupName)).append("\n");
246+
sb.append(" groupType: ").append(toIndentedString(groupType)).append("\n");
247+
sb.append(" principals: ").append(toIndentedString(principals)).append("\n");
248+
sb.append(" status: ").append(toIndentedString(status)).append("\n");
249+
sb.append(" updatedTime: ").append(toIndentedString(updatedTime)).append("\n");
250+
sb.append("}");
251+
return sb.toString();
252+
}
253+
254+
/**
255+
* Convert the given object to string with each line indented by 4 spaces
256+
* (except the first line).
257+
*/
258+
private String toIndentedString(java.lang.Object o) {
259+
if (o == null) {
260+
return "null";
261+
}
262+
return o.toString().replace("\n", "\n ");
263+
}
264+
265+
}

0 commit comments

Comments
 (0)