Skip to content

Commit efd3ee2

Browse files
author
BitsAdmin
committed
Merge branch 'bytehouse_ce-Java-2024-08-31-online-1329-2025_06_25_15_24_58' into 'integration_2025-07-03_983023972098'
feat: [development task] bytehouse_ce-1329-Java (1417555) See merge request iaasng/volcengine-java-sdk!560
2 parents 35a54be + a02a4b5 commit efd3ee2

File tree

112 files changed

+18850
-0
lines changed

Some content is hidden

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

112 files changed

+18850
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@
292292
<module>volcengine-java-sdk-apig</module>
293293
<module>volcengine-java-sdk-apig20221112</module>
294294
<module>volcengine-java-sdk-aiotvideo20231001</module>
295+
<module>volcengine-java-sdk-bytehousece20240831</module>
295296
<module>volcengine-java-sdk-ga</module>
296297
<module>volcengine-java-sdk-secagent</module>
297298
</modules>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,12 @@
517517
<optional>false</optional>
518518
<version>${project.version}</version>
519519
</dependency>
520+
<dependency>
521+
<groupId>com.volcengine</groupId>
522+
<artifactId>volcengine-java-sdk-bytehousece20240831</artifactId>
523+
<optional>false</optional>
524+
<version>${project.version}</version>
525+
</dependency>
520526
<dependency>
521527
<groupId>com.volcengine</groupId>
522528
<artifactId>volcengine-java-sdk-ga</artifactId>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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.21</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-bytehousece20240831</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.volcengine</groupId>
14+
<artifactId>volcengine-java-sdk-core</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
</dependencies>
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-source-plugin</artifactId>
23+
<configuration>
24+
<excludes>
25+
<exclude>com/volcengine/bytehousece20240831/examples/**</exclude>
26+
</excludes>
27+
</configuration>
28+
</plugin>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-jar-plugin</artifactId>
32+
<configuration>
33+
<excludes>
34+
<exclude>com/volcengine/bytehousece20240831/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

volcengine-java-sdk-bytehousece20240831/src/main/java/com/volcengine/bytehousece20240831/BytehouseCe20240831Api.java

Lines changed: 3206 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
/*
2+
* bytehouse_ce20240831
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.bytehousece20240831.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.bytehousece20240831.model.UserForAssignRoleInput;
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+
* AssignRoleRequest
31+
*/
32+
33+
34+
35+
public class AssignRoleRequest {
36+
@SerializedName("RoleID")
37+
private Integer roleID = null;
38+
39+
@SerializedName("Users")
40+
private List<UserForAssignRoleInput> users = null;
41+
42+
public AssignRoleRequest roleID(Integer roleID) {
43+
this.roleID = roleID;
44+
return this;
45+
}
46+
47+
/**
48+
* Get roleID
49+
* @return roleID
50+
**/
51+
@NotNull
52+
@Schema(required = true, description = "")
53+
public Integer getRoleID() {
54+
return roleID;
55+
}
56+
57+
public void setRoleID(Integer roleID) {
58+
this.roleID = roleID;
59+
}
60+
61+
public AssignRoleRequest users(List<UserForAssignRoleInput> users) {
62+
this.users = users;
63+
return this;
64+
}
65+
66+
public AssignRoleRequest addUsersItem(UserForAssignRoleInput usersItem) {
67+
if (this.users == null) {
68+
this.users = new ArrayList<UserForAssignRoleInput>();
69+
}
70+
this.users.add(usersItem);
71+
return this;
72+
}
73+
74+
/**
75+
* Get users
76+
* @return users
77+
**/
78+
@Valid
79+
@Schema(description = "")
80+
public List<UserForAssignRoleInput> getUsers() {
81+
return users;
82+
}
83+
84+
public void setUsers(List<UserForAssignRoleInput> users) {
85+
this.users = users;
86+
}
87+
88+
89+
@Override
90+
public boolean equals(java.lang.Object o) {
91+
if (this == o) {
92+
return true;
93+
}
94+
if (o == null || getClass() != o.getClass()) {
95+
return false;
96+
}
97+
AssignRoleRequest assignRoleRequest = (AssignRoleRequest) o;
98+
return Objects.equals(this.roleID, assignRoleRequest.roleID) &&
99+
Objects.equals(this.users, assignRoleRequest.users);
100+
}
101+
102+
@Override
103+
public int hashCode() {
104+
return Objects.hash(roleID, users);
105+
}
106+
107+
108+
@Override
109+
public String toString() {
110+
StringBuilder sb = new StringBuilder();
111+
sb.append("class AssignRoleRequest {\n");
112+
113+
sb.append(" roleID: ").append(toIndentedString(roleID)).append("\n");
114+
sb.append(" users: ").append(toIndentedString(users)).append("\n");
115+
sb.append("}");
116+
return sb.toString();
117+
}
118+
119+
/**
120+
* Convert the given object to string with each line indented by 4 spaces
121+
* (except the first line).
122+
*/
123+
private String toIndentedString(java.lang.Object o) {
124+
if (o == null) {
125+
return "null";
126+
}
127+
return o.toString().replace("\n", "\n ");
128+
}
129+
130+
}
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
* bytehouse_ce20240831
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.bytehousece20240831.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.bytehousece20240831.model.DataForAssignRoleOutput;
23+
import io.swagger.v3.oas.annotations.media.Schema;
24+
import java.io.IOException;
25+
import javax.validation.constraints.*;
26+
import javax.validation.Valid;
27+
/**
28+
* AssignRoleResponse
29+
*/
30+
31+
32+
33+
public class AssignRoleResponse extends com.volcengine.model.AbstractResponse {
34+
@SerializedName("Data")
35+
private DataForAssignRoleOutput data = null;
36+
37+
@SerializedName("Message")
38+
private String message = null;
39+
40+
public AssignRoleResponse data(DataForAssignRoleOutput data) {
41+
this.data = data;
42+
return this;
43+
}
44+
45+
/**
46+
* Get data
47+
* @return data
48+
**/
49+
@Valid
50+
@Schema(description = "")
51+
public DataForAssignRoleOutput getData() {
52+
return data;
53+
}
54+
55+
public void setData(DataForAssignRoleOutput data) {
56+
this.data = data;
57+
}
58+
59+
public AssignRoleResponse message(String message) {
60+
this.message = message;
61+
return this;
62+
}
63+
64+
/**
65+
* Get message
66+
* @return message
67+
**/
68+
@Schema(description = "")
69+
public String getMessage() {
70+
return message;
71+
}
72+
73+
public void setMessage(String message) {
74+
this.message = message;
75+
}
76+
77+
78+
@Override
79+
public boolean equals(java.lang.Object o) {
80+
if (this == o) {
81+
return true;
82+
}
83+
if (o == null || getClass() != o.getClass()) {
84+
return false;
85+
}
86+
AssignRoleResponse assignRoleResponse = (AssignRoleResponse) o;
87+
return Objects.equals(this.data, assignRoleResponse.data) &&
88+
Objects.equals(this.message, assignRoleResponse.message);
89+
}
90+
91+
@Override
92+
public int hashCode() {
93+
return Objects.hash(data, message);
94+
}
95+
96+
97+
@Override
98+
public String toString() {
99+
StringBuilder sb = new StringBuilder();
100+
sb.append("class AssignRoleResponse {\n");
101+
102+
sb.append(" data: ").append(toIndentedString(data)).append("\n");
103+
sb.append(" message: ").append(toIndentedString(message)).append("\n");
104+
sb.append("}");
105+
return sb.toString();
106+
}
107+
108+
/**
109+
* Convert the given object to string with each line indented by 4 spaces
110+
* (except the first line).
111+
*/
112+
private String toIndentedString(java.lang.Object o) {
113+
if (o == null) {
114+
return "null";
115+
}
116+
return o.toString().replace("\n", "\n ");
117+
}
118+
119+
}

0 commit comments

Comments
 (0)