Skip to content

Commit 3c90294

Browse files
committed
Generated 2019-09-01 for OceanBasePro.
1 parent d6ff7f5 commit 3c90294

30 files changed

+364
-267
lines changed

aliyun-java-sdk-oceanbasepro/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-09 Version: 1.1.28
2+
- Generated 2019-09-01 for `OceanBasePro`.
3+
14
2025-06-11 Version: 1.1.27
25
- Generated 2019-09-01 for `OceanBasePro`.
36

aliyun-java-sdk-oceanbasepro/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-oceanbasepro</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.1.27</version>
7+
<version>1.1.28</version>
88
<name>aliyun-java-sdk-oceanbasepro</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -103,14 +103,14 @@ http://www.aliyun.com</description>
103103
</executions>
104104
</plugin>
105105
<plugin>
106-
<groupId>org.sonatype.plugins</groupId>
107-
<artifactId>nexus-staging-maven-plugin</artifactId>
108-
<version>1.6.3</version>
106+
<groupId>org.sonatype.central</groupId>
107+
<artifactId>central-publishing-maven-plugin</artifactId>
108+
<version>0.8.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111-
<serverId>sonatype-nexus-staging</serverId>
112-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
113-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
111+
<publishingServerId>central</publishingServerId>
112+
<autoPublish>true</autoPublish>
113+
<waitUntil>published</waitUntil>
114114
</configuration>
115115
</plugin>
116116
</plugins>

aliyun-java-sdk-oceanbasepro/src/main/java/com/aliyuncs/oceanbasepro/model/v20190901/DescribeInstanceResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ public static class Instance {
129129

130130
private Boolean allowCreateProxySqlFirewallRule;
131131

132+
private Integer iops;
133+
132134
private List<String> availableZones;
133135

134136
private List<String> zones;
@@ -469,6 +471,14 @@ public void setAllowCreateProxySqlFirewallRule(Boolean allowCreateProxySqlFirewa
469471
this.allowCreateProxySqlFirewallRule = allowCreateProxySqlFirewallRule;
470472
}
471473

474+
public Integer getIops() {
475+
return this.iops;
476+
}
477+
478+
public void setIops(Integer iops) {
479+
this.iops = iops;
480+
}
481+
472482
public List<String> getAvailableZones() {
473483
return this.availableZones;
474484
}

aliyun-java-sdk-oceanbasepro/src/main/java/com/aliyuncs/oceanbasepro/model/v20190901/DescribeInstancesResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ public static class Data {
119119

120120
private Boolean migratable;
121121

122+
private Integer iops;
123+
122124
private List<String> availableZones;
123125

124126
private Resource resource;
@@ -375,6 +377,14 @@ public void setMigratable(Boolean migratable) {
375377
this.migratable = migratable;
376378
}
377379

380+
public Integer getIops() {
381+
return this.iops;
382+
}
383+
384+
public void setIops(Integer iops) {
385+
this.iops = iops;
386+
}
387+
378388
public List<String> getAvailableZones() {
379389
return this.availableZones;
380390
}

aliyun-java-sdk-oceanbasepro/src/main/java/com/aliyuncs/oceanbasepro/model/v20190901/DescribeMetricsDataRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ public class DescribeMetricsDataRequest extends RpcAcsRequest<DescribeMetricsDat
3737

3838
private String replicaType;
3939

40+
private String metricScope;
41+
4042
private String endTime;
4143

4244
private String labels;
@@ -119,6 +121,17 @@ public void setReplicaType(String replicaType) {
119121
}
120122
}
121123

124+
public String getMetricScope() {
125+
return this.metricScope;
126+
}
127+
128+
public void setMetricScope(String metricScope) {
129+
this.metricScope = metricScope;
130+
if(metricScope != null){
131+
putBodyParameter("MetricScope", metricScope);
132+
}
133+
}
134+
122135
public String getEndTime() {
123136
return this.endTime;
124137
}

aliyun-java-sdk-oceanbasepro/src/main/java/com/aliyuncs/oceanbasepro/model/v20190901/DescribeOasAnomalySQLListResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static class DataItem {
7171

7272
private Double executions;
7373

74-
private Double lastExecutedTime;
74+
private String lastExecutedTime;
7575

7676
private String riskLevel;
7777

@@ -157,11 +157,11 @@ public void setExecutions(Double executions) {
157157
this.executions = executions;
158158
}
159159

160-
public Double getLastExecutedTime() {
160+
public String getLastExecutedTime() {
161161
return this.lastExecutedTime;
162162
}
163163

164-
public void setLastExecutedTime(Double lastExecutedTime) {
164+
public void setLastExecutedTime(String lastExecutedTime) {
165165
this.lastExecutedTime = lastExecutedTime;
166166
}
167167

0 commit comments

Comments
 (0)