Skip to content

Commit d58f52c

Browse files
committed
Merge "integration_2025-08-28_1042083431682" into "graph-Java-2018-01-01-online-1485-2025_08_27_11_43_40"
Conflicts: pom.xml volcengine-java-sdk-bom/pom.xml
2 parents 31e06b1 + 49dbc69 commit d58f52c

File tree

256 files changed

+44452
-170
lines changed

Some content is hidden

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

256 files changed

+44452
-170
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,5 +302,6 @@
302302
<module>volcengine-java-sdk-graph20250815</module>
303303
<module>volcengine-java-sdk-speechsaasprod20250521</module>
304304
<module>volcengine-java-sdk-graph</module>
305+
<module>volcengine-java-sdk-bmq</module>
305306
</modules>
306307
</project>

volcengine-java-sdk-bmq/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.29</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-bmq</artifactId>
11+
<name>volcengine-java-sdk-bmq</name>
12+
<description>The Java SDK for Volcengine bmq</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/bmq/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/bmq/examples/**</exclude>
37+
</excludes>
38+
</configuration>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
</project>

volcengine-java-sdk-bmq/src/main/java/com/volcengine/bmq/BmqApi.java

Lines changed: 4592 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
/*
2+
* bmq
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.bmq.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+
* CreateGroupRequest
28+
*/
29+
30+
31+
32+
public class CreateGroupRequest {
33+
@SerializedName("Description")
34+
private String description = null;
35+
36+
@SerializedName("GroupName")
37+
private String groupName = null;
38+
39+
@SerializedName("InstanceId")
40+
private String instanceId = null;
41+
42+
public CreateGroupRequest description(String description) {
43+
this.description = description;
44+
return this;
45+
}
46+
47+
/**
48+
* Get description
49+
* @return description
50+
**/
51+
@Size(max=255) @Schema(description = "")
52+
public String getDescription() {
53+
return description;
54+
}
55+
56+
public void setDescription(String description) {
57+
this.description = description;
58+
}
59+
60+
public CreateGroupRequest groupName(String groupName) {
61+
this.groupName = groupName;
62+
return this;
63+
}
64+
65+
/**
66+
* Get groupName
67+
* @return groupName
68+
**/
69+
@NotNull
70+
@Size(min=3,max=128) @Schema(required = true, description = "")
71+
public String getGroupName() {
72+
return groupName;
73+
}
74+
75+
public void setGroupName(String groupName) {
76+
this.groupName = groupName;
77+
}
78+
79+
public CreateGroupRequest instanceId(String instanceId) {
80+
this.instanceId = instanceId;
81+
return this;
82+
}
83+
84+
/**
85+
* Get instanceId
86+
* @return instanceId
87+
**/
88+
@NotNull
89+
@Schema(required = true, description = "")
90+
public String getInstanceId() {
91+
return instanceId;
92+
}
93+
94+
public void setInstanceId(String instanceId) {
95+
this.instanceId = instanceId;
96+
}
97+
98+
99+
@Override
100+
public boolean equals(java.lang.Object o) {
101+
if (this == o) {
102+
return true;
103+
}
104+
if (o == null || getClass() != o.getClass()) {
105+
return false;
106+
}
107+
CreateGroupRequest createGroupRequest = (CreateGroupRequest) o;
108+
return Objects.equals(this.description, createGroupRequest.description) &&
109+
Objects.equals(this.groupName, createGroupRequest.groupName) &&
110+
Objects.equals(this.instanceId, createGroupRequest.instanceId);
111+
}
112+
113+
@Override
114+
public int hashCode() {
115+
return Objects.hash(description, groupName, instanceId);
116+
}
117+
118+
119+
@Override
120+
public String toString() {
121+
StringBuilder sb = new StringBuilder();
122+
sb.append("class CreateGroupRequest {\n");
123+
124+
sb.append(" description: ").append(toIndentedString(description)).append("\n");
125+
sb.append(" groupName: ").append(toIndentedString(groupName)).append("\n");
126+
sb.append(" instanceId: ").append(toIndentedString(instanceId)).append("\n");
127+
sb.append("}");
128+
return sb.toString();
129+
}
130+
131+
/**
132+
* Convert the given object to string with each line indented by 4 spaces
133+
* (except the first line).
134+
*/
135+
private String toIndentedString(java.lang.Object o) {
136+
if (o == null) {
137+
return "null";
138+
}
139+
return o.toString().replace("\n", "\n ");
140+
}
141+
142+
}
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* bmq
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.bmq.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+
* CreateGroupResponse
28+
*/
29+
30+
31+
32+
public class CreateGroupResponse extends com.volcengine.model.AbstractResponse {
33+
@SerializedName("GroupId")
34+
private String groupId = null;
35+
36+
public CreateGroupResponse groupId(String groupId) {
37+
this.groupId = groupId;
38+
return this;
39+
}
40+
41+
/**
42+
* Get groupId
43+
* @return groupId
44+
**/
45+
@Schema(description = "")
46+
public String getGroupId() {
47+
return groupId;
48+
}
49+
50+
public void setGroupId(String groupId) {
51+
this.groupId = groupId;
52+
}
53+
54+
55+
@Override
56+
public boolean equals(java.lang.Object o) {
57+
if (this == o) {
58+
return true;
59+
}
60+
if (o == null || getClass() != o.getClass()) {
61+
return false;
62+
}
63+
CreateGroupResponse createGroupResponse = (CreateGroupResponse) o;
64+
return Objects.equals(this.groupId, createGroupResponse.groupId);
65+
}
66+
67+
@Override
68+
public int hashCode() {
69+
return Objects.hash(groupId);
70+
}
71+
72+
73+
@Override
74+
public String toString() {
75+
StringBuilder sb = new StringBuilder();
76+
sb.append("class CreateGroupResponse {\n");
77+
78+
sb.append(" groupId: ").append(toIndentedString(groupId)).append("\n");
79+
sb.append("}");
80+
return sb.toString();
81+
}
82+
83+
/**
84+
* Convert the given object to string with each line indented by 4 spaces
85+
* (except the first line).
86+
*/
87+
private String toIndentedString(java.lang.Object o) {
88+
if (o == null) {
89+
return "null";
90+
}
91+
return o.toString().replace("\n", "\n ");
92+
}
93+
94+
}

0 commit comments

Comments
 (0)