Skip to content

Commit 7e79894

Browse files
committed
Merge branch 'integration_2025-06-19_956533420802' into apig-Java-2021-03-03-online-1285-2025_06_13_10_19_04
# Conflicts: # pom.xml # volcengine-java-sdk-bom/pom.xml
2 parents 4595015 + c159c96 commit 7e79894

File tree

453 files changed

+73010
-1660
lines changed

Some content is hidden

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

453 files changed

+73010
-1660
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,9 @@
286286
<module>volcengine-java-sdk-acep</module>
287287
<module>volcengine-java-sdk-resourcecenter</module>
288288
<module>volcengine-java-sdk-sqs</module>
289+
<module>volcengine-java-sdk-dbw</module>
290+
<module>volcengine-java-sdk-coze20250601</module>
291+
<module>volcengine-java-sdk-aiotvideo</module>
289292
<module>volcengine-java-sdk-apig</module>
290293
</modules>
291294
</project>
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.18</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-aiotvideo</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/aiotvideo/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/aiotvideo/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

volcengine-java-sdk-aiotvideo/src/main/java/com/volcengine/aiotvideo/AiotvideoApi.java

Lines changed: 4970 additions & 0 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+
* aiotvideo
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.aiotvideo.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+
* AIForGetSpaceOutput
28+
*/
29+
30+
31+
32+
public class AIForGetSpaceOutput {
33+
@SerializedName("BindTime")
34+
private String bindTime = null;
35+
36+
@SerializedName("TemplateID")
37+
private String templateID = null;
38+
39+
@SerializedName("TemplateName")
40+
private String templateName = null;
41+
42+
public AIForGetSpaceOutput bindTime(String bindTime) {
43+
this.bindTime = bindTime;
44+
return this;
45+
}
46+
47+
/**
48+
* Get bindTime
49+
* @return bindTime
50+
**/
51+
@Schema(description = "")
52+
public String getBindTime() {
53+
return bindTime;
54+
}
55+
56+
public void setBindTime(String bindTime) {
57+
this.bindTime = bindTime;
58+
}
59+
60+
public AIForGetSpaceOutput templateID(String templateID) {
61+
this.templateID = templateID;
62+
return this;
63+
}
64+
65+
/**
66+
* Get templateID
67+
* @return templateID
68+
**/
69+
@Schema(description = "")
70+
public String getTemplateID() {
71+
return templateID;
72+
}
73+
74+
public void setTemplateID(String templateID) {
75+
this.templateID = templateID;
76+
}
77+
78+
public AIForGetSpaceOutput templateName(String templateName) {
79+
this.templateName = templateName;
80+
return this;
81+
}
82+
83+
/**
84+
* Get templateName
85+
* @return templateName
86+
**/
87+
@Schema(description = "")
88+
public String getTemplateName() {
89+
return templateName;
90+
}
91+
92+
public void setTemplateName(String templateName) {
93+
this.templateName = templateName;
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+
AIForGetSpaceOutput aiForGetSpaceOutput = (AIForGetSpaceOutput) o;
106+
return Objects.equals(this.bindTime, aiForGetSpaceOutput.bindTime) &&
107+
Objects.equals(this.templateID, aiForGetSpaceOutput.templateID) &&
108+
Objects.equals(this.templateName, aiForGetSpaceOutput.templateName);
109+
}
110+
111+
@Override
112+
public int hashCode() {
113+
return Objects.hash(bindTime, templateID, templateName);
114+
}
115+
116+
117+
@Override
118+
public String toString() {
119+
StringBuilder sb = new StringBuilder();
120+
sb.append("class AIForGetSpaceOutput {\n");
121+
122+
sb.append(" bindTime: ").append(toIndentedString(bindTime)).append("\n");
123+
sb.append(" templateID: ").append(toIndentedString(templateID)).append("\n");
124+
sb.append(" templateName: ").append(toIndentedString(templateName)).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: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* aiotvideo
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.aiotvideo.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+
* AIForGetStreamOutput
28+
*/
29+
30+
31+
32+
public class AIForGetStreamOutput {
33+
@SerializedName("TemplateID")
34+
private String templateID = null;
35+
36+
@SerializedName("TemplateName")
37+
private String templateName = null;
38+
39+
public AIForGetStreamOutput templateID(String templateID) {
40+
this.templateID = templateID;
41+
return this;
42+
}
43+
44+
/**
45+
* Get templateID
46+
* @return templateID
47+
**/
48+
@Schema(description = "")
49+
public String getTemplateID() {
50+
return templateID;
51+
}
52+
53+
public void setTemplateID(String templateID) {
54+
this.templateID = templateID;
55+
}
56+
57+
public AIForGetStreamOutput templateName(String templateName) {
58+
this.templateName = templateName;
59+
return this;
60+
}
61+
62+
/**
63+
* Get templateName
64+
* @return templateName
65+
**/
66+
@Schema(description = "")
67+
public String getTemplateName() {
68+
return templateName;
69+
}
70+
71+
public void setTemplateName(String templateName) {
72+
this.templateName = templateName;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
AIForGetStreamOutput aiForGetStreamOutput = (AIForGetStreamOutput) o;
85+
return Objects.equals(this.templateID, aiForGetStreamOutput.templateID) &&
86+
Objects.equals(this.templateName, aiForGetStreamOutput.templateName);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(templateID, templateName);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class AIForGetStreamOutput {\n");
99+
100+
sb.append(" templateID: ").append(toIndentedString(templateID)).append("\n");
101+
sb.append(" templateName: ").append(toIndentedString(templateName)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}

0 commit comments

Comments
 (0)