Skip to content

Commit 44ae9f4

Browse files
committed
Generated java-async 2020-06-15 for hitsdb.
1 parent bc04b5c commit 44ae9f4

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

hitsdb-20200615/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 4.0.13
2+
- Generated java-async 2020-06-15 for hitsdb.
3+
14
2025-05-20 Version: 4.0.12
25
- Generated java-async 2020-06-15 for hitsdb.
36

hitsdb-20200615/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-hitsdb20200615</artifactId>
6-
<version>4.0.12</version>
6+
<version>4.0.13</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-hitsdb20200615</name>
99
<description>Alibaba Cloud hitsdb (20200615) Async SDK for Java

hitsdb-20200615/src/main/java/com/aliyun/sdk/service/hitsdb20200615/models/UpgradeLindormV2StreamEngineRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class UpgradeLindormV2StreamEngineRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("RegionId")
2222
private String regionId;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("CustomConfig")
26+
private String customConfig;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("InstanceId")
2630
@com.aliyun.core.annotation.Validation(required = true)
@@ -75,6 +79,7 @@ public class UpgradeLindormV2StreamEngineRequest extends Request {
7579
private UpgradeLindormV2StreamEngineRequest(Builder builder) {
7680
super(builder);
7781
this.regionId = builder.regionId;
82+
this.customConfig = builder.customConfig;
7883
this.instanceId = builder.instanceId;
7984
this.ownerAccount = builder.ownerAccount;
8085
this.ownerId = builder.ownerId;
@@ -108,6 +113,13 @@ public String getRegionId() {
108113
return this.regionId;
109114
}
110115

116+
/**
117+
* @return customConfig
118+
*/
119+
public String getCustomConfig() {
120+
return this.customConfig;
121+
}
122+
111123
/**
112124
* @return instanceId
113125
*/
@@ -187,6 +199,7 @@ public String getUpgradeType() {
187199

188200
public static final class Builder extends Request.Builder<UpgradeLindormV2StreamEngineRequest, Builder> {
189201
private String regionId;
202+
private String customConfig;
190203
private String instanceId;
191204
private String ownerAccount;
192205
private Long ownerId;
@@ -206,6 +219,7 @@ private Builder() {
206219
private Builder(UpgradeLindormV2StreamEngineRequest request) {
207220
super(request);
208221
this.regionId = request.regionId;
222+
this.customConfig = request.customConfig;
209223
this.instanceId = request.instanceId;
210224
this.ownerAccount = request.ownerAccount;
211225
this.ownerId = request.ownerId;
@@ -228,6 +242,15 @@ public Builder regionId(String regionId) {
228242
return this;
229243
}
230244

245+
/**
246+
* CustomConfig.
247+
*/
248+
public Builder customConfig(String customConfig) {
249+
this.putQueryParameter("CustomConfig", customConfig);
250+
this.customConfig = customConfig;
251+
return this;
252+
}
253+
231254
/**
232255
* <p>This parameter is required.</p>
233256
*/

0 commit comments

Comments
 (0)