Skip to content

Commit 33ad963

Browse files
author
BitsAdmin
committed
Merge branch 'speech_saas_prod-Java-2025-05-20-online-1466-2025_08_20_18_48_53' into 'integration_2025-08-21_1037883052802'
feat: [development task] speech_saas_prod-1466-Java (1576758) See merge request iaasng/volcengine-java-sdk!618
2 parents bebe0b8 + 2c2d6ec commit 33ad963

File tree

47 files changed

+9357
-15
lines changed

Some content is hidden

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

47 files changed

+9357
-15
lines changed

volcengine-java-sdk-speechsaasprod/src/main/java/com/volcengine/speechsaasprod/SpeechSaasProdApi.java

Lines changed: 1653 additions & 15 deletions
Large diffs are not rendered by default.
Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
/*
2+
* speech_saas_prod
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.speechsaasprod.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+
* APIKeyForListAPIKeysOutput
28+
*/
29+
30+
31+
32+
public class APIKeyForListAPIKeysOutput {
33+
@SerializedName("APIKey")
34+
private String apIKey = null;
35+
36+
@SerializedName("CreateTime")
37+
private String createTime = null;
38+
39+
@SerializedName("Disable")
40+
private Boolean disable = null;
41+
42+
@SerializedName("ID")
43+
private Integer ID = null;
44+
45+
@SerializedName("Name")
46+
private String name = null;
47+
48+
@SerializedName("UpdateTime")
49+
private String updateTime = null;
50+
51+
public APIKeyForListAPIKeysOutput apIKey(String apIKey) {
52+
this.apIKey = apIKey;
53+
return this;
54+
}
55+
56+
/**
57+
* Get apIKey
58+
* @return apIKey
59+
**/
60+
@Schema(description = "")
61+
public String getApIKey() {
62+
return apIKey;
63+
}
64+
65+
public void setApIKey(String apIKey) {
66+
this.apIKey = apIKey;
67+
}
68+
69+
public APIKeyForListAPIKeysOutput createTime(String createTime) {
70+
this.createTime = createTime;
71+
return this;
72+
}
73+
74+
/**
75+
* Get createTime
76+
* @return createTime
77+
**/
78+
@Schema(description = "")
79+
public String getCreateTime() {
80+
return createTime;
81+
}
82+
83+
public void setCreateTime(String createTime) {
84+
this.createTime = createTime;
85+
}
86+
87+
public APIKeyForListAPIKeysOutput disable(Boolean disable) {
88+
this.disable = disable;
89+
return this;
90+
}
91+
92+
/**
93+
* Get disable
94+
* @return disable
95+
**/
96+
@Schema(description = "")
97+
public Boolean isDisable() {
98+
return disable;
99+
}
100+
101+
public void setDisable(Boolean disable) {
102+
this.disable = disable;
103+
}
104+
105+
public APIKeyForListAPIKeysOutput ID(Integer ID) {
106+
this.ID = ID;
107+
return this;
108+
}
109+
110+
/**
111+
* Get ID
112+
* @return ID
113+
**/
114+
@Schema(description = "")
115+
public Integer getID() {
116+
return ID;
117+
}
118+
119+
public void setID(Integer ID) {
120+
this.ID = ID;
121+
}
122+
123+
public APIKeyForListAPIKeysOutput name(String name) {
124+
this.name = name;
125+
return this;
126+
}
127+
128+
/**
129+
* Get name
130+
* @return name
131+
**/
132+
@Schema(description = "")
133+
public String getName() {
134+
return name;
135+
}
136+
137+
public void setName(String name) {
138+
this.name = name;
139+
}
140+
141+
public APIKeyForListAPIKeysOutput updateTime(String updateTime) {
142+
this.updateTime = updateTime;
143+
return this;
144+
}
145+
146+
/**
147+
* Get updateTime
148+
* @return updateTime
149+
**/
150+
@Schema(description = "")
151+
public String getUpdateTime() {
152+
return updateTime;
153+
}
154+
155+
public void setUpdateTime(String updateTime) {
156+
this.updateTime = updateTime;
157+
}
158+
159+
160+
@Override
161+
public boolean equals(java.lang.Object o) {
162+
if (this == o) {
163+
return true;
164+
}
165+
if (o == null || getClass() != o.getClass()) {
166+
return false;
167+
}
168+
APIKeyForListAPIKeysOutput apIKeyForListAPIKeysOutput = (APIKeyForListAPIKeysOutput) o;
169+
return Objects.equals(this.apIKey, apIKeyForListAPIKeysOutput.apIKey) &&
170+
Objects.equals(this.createTime, apIKeyForListAPIKeysOutput.createTime) &&
171+
Objects.equals(this.disable, apIKeyForListAPIKeysOutput.disable) &&
172+
Objects.equals(this.ID, apIKeyForListAPIKeysOutput.ID) &&
173+
Objects.equals(this.name, apIKeyForListAPIKeysOutput.name) &&
174+
Objects.equals(this.updateTime, apIKeyForListAPIKeysOutput.updateTime);
175+
}
176+
177+
@Override
178+
public int hashCode() {
179+
return Objects.hash(apIKey, createTime, disable, ID, name, updateTime);
180+
}
181+
182+
183+
@Override
184+
public String toString() {
185+
StringBuilder sb = new StringBuilder();
186+
sb.append("class APIKeyForListAPIKeysOutput {\n");
187+
188+
sb.append(" apIKey: ").append(toIndentedString(apIKey)).append("\n");
189+
sb.append(" createTime: ").append(toIndentedString(createTime)).append("\n");
190+
sb.append(" disable: ").append(toIndentedString(disable)).append("\n");
191+
sb.append(" ID: ").append(toIndentedString(ID)).append("\n");
192+
sb.append(" name: ").append(toIndentedString(name)).append("\n");
193+
sb.append(" updateTime: ").append(toIndentedString(updateTime)).append("\n");
194+
sb.append("}");
195+
return sb.toString();
196+
}
197+
198+
/**
199+
* Convert the given object to string with each line indented by 4 spaces
200+
* (except the first line).
201+
*/
202+
private String toIndentedString(java.lang.Object o) {
203+
if (o == null) {
204+
return "null";
205+
}
206+
return o.toString().replace("\n", "\n ");
207+
}
208+
209+
}
Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
/*
2+
* speech_saas_prod
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.speechsaasprod.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.speechsaasprod.model.TagForActivateServiceInput;
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+
* ActivateServiceRequest
31+
*/
32+
33+
34+
35+
public class ActivateServiceRequest {
36+
@SerializedName("BlueprintID")
37+
private Integer blueprintID = null;
38+
39+
@SerializedName("ProjectName")
40+
private String projectName = null;
41+
42+
@SerializedName("ResourceID")
43+
private String resourceID = null;
44+
45+
@SerializedName("Tags")
46+
private List<TagForActivateServiceInput> tags = null;
47+
48+
public ActivateServiceRequest blueprintID(Integer blueprintID) {
49+
this.blueprintID = blueprintID;
50+
return this;
51+
}
52+
53+
/**
54+
* Get blueprintID
55+
* @return blueprintID
56+
**/
57+
@Schema(description = "")
58+
public Integer getBlueprintID() {
59+
return blueprintID;
60+
}
61+
62+
public void setBlueprintID(Integer blueprintID) {
63+
this.blueprintID = blueprintID;
64+
}
65+
66+
public ActivateServiceRequest projectName(String projectName) {
67+
this.projectName = projectName;
68+
return this;
69+
}
70+
71+
/**
72+
* Get projectName
73+
* @return projectName
74+
**/
75+
@NotNull
76+
@Schema(required = true, description = "")
77+
public String getProjectName() {
78+
return projectName;
79+
}
80+
81+
public void setProjectName(String projectName) {
82+
this.projectName = projectName;
83+
}
84+
85+
public ActivateServiceRequest resourceID(String resourceID) {
86+
this.resourceID = resourceID;
87+
return this;
88+
}
89+
90+
/**
91+
* Get resourceID
92+
* @return resourceID
93+
**/
94+
@Schema(description = "")
95+
public String getResourceID() {
96+
return resourceID;
97+
}
98+
99+
public void setResourceID(String resourceID) {
100+
this.resourceID = resourceID;
101+
}
102+
103+
public ActivateServiceRequest tags(List<TagForActivateServiceInput> tags) {
104+
this.tags = tags;
105+
return this;
106+
}
107+
108+
public ActivateServiceRequest addTagsItem(TagForActivateServiceInput tagsItem) {
109+
if (this.tags == null) {
110+
this.tags = new ArrayList<TagForActivateServiceInput>();
111+
}
112+
this.tags.add(tagsItem);
113+
return this;
114+
}
115+
116+
/**
117+
* Get tags
118+
* @return tags
119+
**/
120+
@Valid
121+
@Schema(description = "")
122+
public List<TagForActivateServiceInput> getTags() {
123+
return tags;
124+
}
125+
126+
public void setTags(List<TagForActivateServiceInput> tags) {
127+
this.tags = tags;
128+
}
129+
130+
131+
@Override
132+
public boolean equals(java.lang.Object o) {
133+
if (this == o) {
134+
return true;
135+
}
136+
if (o == null || getClass() != o.getClass()) {
137+
return false;
138+
}
139+
ActivateServiceRequest activateServiceRequest = (ActivateServiceRequest) o;
140+
return Objects.equals(this.blueprintID, activateServiceRequest.blueprintID) &&
141+
Objects.equals(this.projectName, activateServiceRequest.projectName) &&
142+
Objects.equals(this.resourceID, activateServiceRequest.resourceID) &&
143+
Objects.equals(this.tags, activateServiceRequest.tags);
144+
}
145+
146+
@Override
147+
public int hashCode() {
148+
return Objects.hash(blueprintID, projectName, resourceID, tags);
149+
}
150+
151+
152+
@Override
153+
public String toString() {
154+
StringBuilder sb = new StringBuilder();
155+
sb.append("class ActivateServiceRequest {\n");
156+
157+
sb.append(" blueprintID: ").append(toIndentedString(blueprintID)).append("\n");
158+
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
159+
sb.append(" resourceID: ").append(toIndentedString(resourceID)).append("\n");
160+
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
161+
sb.append("}");
162+
return sb.toString();
163+
}
164+
165+
/**
166+
* Convert the given object to string with each line indented by 4 spaces
167+
* (except the first line).
168+
*/
169+
private String toIndentedString(java.lang.Object o) {
170+
if (o == null) {
171+
return "null";
172+
}
173+
return o.toString().replace("\n", "\n ");
174+
}
175+
176+
}

0 commit comments

Comments
 (0)