Skip to content

Commit 7488b7c

Browse files
committed
Generated java-async 2025-05-07 for RdsAi.
1 parent 26f94c7 commit 7488b7c

File tree

4 files changed

+51
-6
lines changed

4 files changed

+51
-6
lines changed

rdsai-20250507/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-25 Version: 1.0.7
2+
- Generated java-async 2025-05-07 for RdsAi.
3+
14
2025-11-18 Version: 1.0.6
25
- Generated java-async 2025-05-07 for RdsAi.
36

rdsai-20250507/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-rdsai20250507</artifactId>
6-
<version>1.0.6</version>
6+
<version>1.0.7</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-rdsai20250507</name>
99
<description>Alibaba Cloud RdsAi (20250507) Async SDK for Java

rdsai-20250507/src/main/java/com/aliyun/sdk/service/rdsai20250507/models/CreateAppInstanceRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ public class CreateAppInstanceRequest extends Request {
5353
@com.aliyun.core.annotation.NameInMap("InstanceClass")
5454
private String instanceClass;
5555

56+
@com.aliyun.core.annotation.Query
57+
@com.aliyun.core.annotation.NameInMap("PublicEndpointEnabled")
58+
private Boolean publicEndpointEnabled;
59+
5660
@com.aliyun.core.annotation.Query
5761
@com.aliyun.core.annotation.NameInMap("PublicNetworkAccessEnabled")
5862
private Boolean publicNetworkAccessEnabled;
@@ -80,6 +84,7 @@ private CreateAppInstanceRequest(Builder builder) {
8084
this.dashboardUsername = builder.dashboardUsername;
8185
this.databasePassword = builder.databasePassword;
8286
this.instanceClass = builder.instanceClass;
87+
this.publicEndpointEnabled = builder.publicEndpointEnabled;
8388
this.publicNetworkAccessEnabled = builder.publicNetworkAccessEnabled;
8489
this.RAGEnabled = builder.RAGEnabled;
8590
this.regionId = builder.regionId;
@@ -162,6 +167,13 @@ public String getInstanceClass() {
162167
return this.instanceClass;
163168
}
164169

170+
/**
171+
* @return publicEndpointEnabled
172+
*/
173+
public Boolean getPublicEndpointEnabled() {
174+
return this.publicEndpointEnabled;
175+
}
176+
165177
/**
166178
* @return publicNetworkAccessEnabled
167179
*/
@@ -200,6 +212,7 @@ public static final class Builder extends Request.Builder<CreateAppInstanceReque
200212
private String dashboardUsername;
201213
private String databasePassword;
202214
private String instanceClass;
215+
private Boolean publicEndpointEnabled;
203216
private Boolean publicNetworkAccessEnabled;
204217
private Boolean RAGEnabled;
205218
private String regionId;
@@ -220,6 +233,7 @@ private Builder(CreateAppInstanceRequest request) {
220233
this.dashboardUsername = request.dashboardUsername;
221234
this.databasePassword = request.databasePassword;
222235
this.instanceClass = request.instanceClass;
236+
this.publicEndpointEnabled = request.publicEndpointEnabled;
223237
this.publicNetworkAccessEnabled = request.publicNetworkAccessEnabled;
224238
this.RAGEnabled = request.RAGEnabled;
225239
this.regionId = request.regionId;
@@ -308,6 +322,15 @@ public Builder instanceClass(String instanceClass) {
308322
return this;
309323
}
310324

325+
/**
326+
* PublicEndpointEnabled.
327+
*/
328+
public Builder publicEndpointEnabled(Boolean publicEndpointEnabled) {
329+
this.putQueryParameter("PublicEndpointEnabled", publicEndpointEnabled);
330+
this.publicEndpointEnabled = publicEndpointEnabled;
331+
return this;
332+
}
333+
311334
/**
312335
* PublicNetworkAccessEnabled.
313336
*/

rdsai-20250507/src/main/java/com/aliyun/sdk/service/rdsai20250507/models/ResetInstancePasswordRequest.java

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@
1919
public class ResetInstancePasswordRequest extends Request {
2020
@com.aliyun.core.annotation.Query
2121
@com.aliyun.core.annotation.NameInMap("DashboardPassword")
22-
@com.aliyun.core.annotation.Validation(required = true)
2322
private String dashboardPassword;
2423

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("DatabasePassword")
26+
private String databasePassword;
27+
2528
@com.aliyun.core.annotation.Query
2629
@com.aliyun.core.annotation.NameInMap("InstanceName")
2730
@com.aliyun.core.annotation.Validation(required = true)
@@ -34,6 +37,7 @@ public class ResetInstancePasswordRequest extends Request {
3437
private ResetInstancePasswordRequest(Builder builder) {
3538
super(builder);
3639
this.dashboardPassword = builder.dashboardPassword;
40+
this.databasePassword = builder.databasePassword;
3741
this.instanceName = builder.instanceName;
3842
this.regionId = builder.regionId;
3943
}
@@ -58,6 +62,13 @@ public String getDashboardPassword() {
5862
return this.dashboardPassword;
5963
}
6064

65+
/**
66+
* @return databasePassword
67+
*/
68+
public String getDatabasePassword() {
69+
return this.databasePassword;
70+
}
71+
6172
/**
6273
* @return instanceName
6374
*/
@@ -74,6 +85,7 @@ public String getRegionId() {
7485

7586
public static final class Builder extends Request.Builder<ResetInstancePasswordRequest, Builder> {
7687
private String dashboardPassword;
88+
private String databasePassword;
7789
private String instanceName;
7890
private String regionId;
7991

@@ -84,22 +96,29 @@ private Builder() {
8496
private Builder(ResetInstancePasswordRequest request) {
8597
super(request);
8698
this.dashboardPassword = request.dashboardPassword;
99+
this.databasePassword = request.databasePassword;
87100
this.instanceName = request.instanceName;
88101
this.regionId = request.regionId;
89102
}
90103

91104
/**
92-
* <p>This parameter is required.</p>
93-
*
94-
* <strong>example:</strong>
95-
* <p>test_Password</p>
105+
* DashboardPassword.
96106
*/
97107
public Builder dashboardPassword(String dashboardPassword) {
98108
this.putQueryParameter("DashboardPassword", dashboardPassword);
99109
this.dashboardPassword = dashboardPassword;
100110
return this;
101111
}
102112

113+
/**
114+
* DatabasePassword.
115+
*/
116+
public Builder databasePassword(String databasePassword) {
117+
this.putQueryParameter("DatabasePassword", databasePassword);
118+
this.databasePassword = databasePassword;
119+
return this;
120+
}
121+
103122
/**
104123
* <p>This parameter is required.</p>
105124
*

0 commit comments

Comments
 (0)