Skip to content

Commit

Permalink
Generated 2017-08-01 for polardb.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 13, 2024
1 parent 985a2f8 commit 5096bb5
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 15 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-polardb/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-13 Version: 1.8.49
- Generated 2017-08-01 for `polardb`.

2024-11-18 Version: 1.8.48
- Generated 2017-08-01 for `polardb`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-polardb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-polardb</artifactId>
<packaging>jar</packaging>
<version>1.8.48</version>
<version>1.8.49</version>
<name>aliyun-java-sdk-polardb</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ public class CreateAccountRequest extends RpcAcsRequest<CreateAccountResponse> {

private String accountPassword;

private String dBName;

private String privForAllDB;
private String dBName;
public CreateAccountRequest() {
super("polardb", "2017-08-01", "CreateAccount", "polardb");
setMethod(MethodType.POST);
Expand Down Expand Up @@ -189,17 +187,6 @@ public void setDBName(String dBName) {
if(dBName != null){
putQueryParameter("DBName", dBName);
}
}

public String getPrivForAllDB() {
return this.privForAllDB;
}

public void setPrivForAllDB(String privForAllDB) {
this.privForAllDB = privForAllDB;
if(privForAllDB != null){
putQueryParameter("PrivForAllDB", privForAllDB);
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ public class CreateDBClusterRequest extends RpcAcsRequest<CreateDBClusterRespons

private String burstingEnabled;

private String targetMinorVersion;

private Integer dBNodeNum;

private Long storageUpperBound;
Expand Down Expand Up @@ -618,6 +620,17 @@ public void setBurstingEnabled(String burstingEnabled) {
}
}

public String getTargetMinorVersion() {
return this.targetMinorVersion;
}

public void setTargetMinorVersion(String targetMinorVersion) {
this.targetMinorVersion = targetMinorVersion;
if(targetMinorVersion != null){
putQueryParameter("TargetMinorVersion", targetMinorVersion);
}
}

public Integer getDBNodeNum() {
return this.dBNodeNum;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public class ModifyDBClusterAndNodesParametersRequest extends RpcAcsRequest<Modi

private String plannedStartTime;

private String standbyClusterIdListNeedToSync;

private String parameters;

private Boolean fromTimeService;
Expand Down Expand Up @@ -154,6 +156,17 @@ public void setPlannedStartTime(String plannedStartTime) {
}
}

public String getStandbyClusterIdListNeedToSync() {
return this.standbyClusterIdListNeedToSync;
}

public void setStandbyClusterIdListNeedToSync(String standbyClusterIdListNeedToSync) {
this.standbyClusterIdListNeedToSync = standbyClusterIdListNeedToSync;
if(standbyClusterIdListNeedToSync != null){
putQueryParameter("StandbyClusterIdListNeedToSync", standbyClusterIdListNeedToSync);
}
}

public String getParameters() {
return this.parameters;
}
Expand Down

0 comments on commit 5096bb5

Please sign in to comment.