crossZones) {
+ this.crossZones = crossZones;
+ }
+
+ public Integer getEnableSSL() {
+ return enableSSL;
+ }
+
+ public void setEnableSSL(Integer enableSSL) {
+ this.enableSSL = enableSSL;
+ }
+
+ public Integer getSSLExpirationTime() {
+ return sslExpirationTime;
+ }
+
+ public void setSSLExpirationTime(Integer sslExpirationTime) {
+ this.sslExpirationTime = sslExpirationTime;
+ }
}
public static class DiskInfo extends Response {
@@ -343,6 +416,81 @@ public void setDiskSize(Integer diskSize) {
}
}
+ public static class MongodbMachineType extends Response {
+
+ /** 机器类型ID o.mongo2m.medium,o.mongo2m.xlarge */
+ @SerializedName("MachineTypeId")
+ private String machineTypeId;
+
+ /** 配置简称 2C4G */
+ @SerializedName("Description")
+ private String description;
+
+ /** cpu核数 */
+ @SerializedName("Cpu")
+ private Integer cpu;
+
+ /** 内存用量(GB) */
+ @SerializedName("Memory")
+ private Integer memory;
+
+ /** 机器类型,N/O */
+ @SerializedName("UHhostMachineType")
+ private String uHhostMachineType;
+
+ /** 配置分组,2m , 4m */
+ @SerializedName("Group")
+ private String group;
+
+ public String getMachineTypeId() {
+ return machineTypeId;
+ }
+
+ public void setMachineTypeId(String machineTypeId) {
+ this.machineTypeId = machineTypeId;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public Integer getCpu() {
+ return cpu;
+ }
+
+ public void setCpu(Integer cpu) {
+ this.cpu = cpu;
+ }
+
+ public Integer getMemory() {
+ return memory;
+ }
+
+ public void setMemory(Integer memory) {
+ this.memory = memory;
+ }
+
+ public String getUHhostMachineType() {
+ return uHhostMachineType;
+ }
+
+ public void setUHhostMachineType(String uHhostMachineType) {
+ this.uHhostMachineType = uHhostMachineType;
+ }
+
+ public String getGroup() {
+ return group;
+ }
+
+ public void setGroup(String group) {
+ this.group = group;
+ }
+ }
+
public static class NodeInfo extends Response {
/** 可用区 */
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogRequest.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogRequest.java
new file mode 100644
index 00000000..aab08b78
--- /dev/null
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogRequest.java
@@ -0,0 +1,126 @@
+/**
+ * Copyright 2021 UCloud Technology Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ *
http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package cn.ucloud.umongodb.models;
+
+
+import cn.ucloud.common.annotation.NotEmpty;
+import cn.ucloud.common.annotation.UCloudParam;
+import cn.ucloud.common.request.Request;
+
+public class GetUMongoDBLogRequest extends Request {
+
+ /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @NotEmpty
+ @UCloudParam("Region")
+ private String region;
+
+ /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @UCloudParam("Zone")
+ private String zone;
+
+ /**
+ * 项目ID。不填写为默认项目,子帐号必须填写。
+ * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
+ */
+ @UCloudParam("ProjectId")
+ private String projectId;
+
+ /** 集群id */
+ @NotEmpty
+ @UCloudParam("ClusterId")
+ private String clusterId;
+
+ /** 节点id, 慢日志 mongos 节点不可选 */
+ @NotEmpty
+ @UCloudParam("NodeId")
+ private String nodeId;
+
+ /** 查询的日志开始的时间戳(Unix Timestamp)。对于实时查询,这个参数应该是上次轮询请求时的时间戳,后台会返回从该值到当前时间的日志内容 */
+ @NotEmpty
+ @UCloudParam("Begin")
+ private Integer begin;
+
+ /** 日志类型:SlowLog,ErrorLog */
+ @NotEmpty
+ @UCloudParam("LogType")
+ private String logType;
+
+ /** 查询日志的结束时间戳(Unix Timestamp),对于实时查询不传该值,与BeginTime的差值不超过24小时:(EndTime-BeginTime) < 24*60*60 */
+ @UCloudParam("End")
+ private Integer end;
+
+ public String getRegion() {
+ return region;
+ }
+
+ public void setRegion(String region) {
+ this.region = region;
+ }
+
+ public String getZone() {
+ return zone;
+ }
+
+ public void setZone(String zone) {
+ this.zone = zone;
+ }
+
+ public String getProjectId() {
+ return projectId;
+ }
+
+ public void setProjectId(String projectId) {
+ this.projectId = projectId;
+ }
+
+ public String getClusterId() {
+ return clusterId;
+ }
+
+ public void setClusterId(String clusterId) {
+ this.clusterId = clusterId;
+ }
+
+ public String getNodeId() {
+ return nodeId;
+ }
+
+ public void setNodeId(String nodeId) {
+ this.nodeId = nodeId;
+ }
+
+ public Integer getBegin() {
+ return begin;
+ }
+
+ public void setBegin(Integer begin) {
+ this.begin = begin;
+ }
+
+ public String getLogType() {
+ return logType;
+ }
+
+ public void setLogType(String logType) {
+ this.logType = logType;
+ }
+
+ public Integer getEnd() {
+ return end;
+ }
+
+ public void setEnd(Integer end) {
+ this.end = end;
+ }
+}
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogResponse.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogResponse.java
new file mode 100644
index 00000000..208b5988
--- /dev/null
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/GetUMongoDBLogResponse.java
@@ -0,0 +1,58 @@
+/**
+ * Copyright 2021 UCloud Technology Co., Ltd.
+ *
+ *
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ *
http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package cn.ucloud.umongodb.models;
+
+
+import cn.ucloud.common.response.Response;
+
+import com.google.gson.annotations.SerializedName;
+
+public class GetUMongoDBLogResponse extends Response {
+
+ /** 查询到的日志内容,一段纯文本 */
+ @SerializedName("Log")
+ private String log;
+
+ /** 支持的最大行数 */
+ @SerializedName("MaxLine")
+ private Integer maxLine;
+
+ /** 是否已被截断 */
+ @SerializedName("IsTruncate")
+ private Boolean isTruncate;
+
+ public String getLog() {
+ return log;
+ }
+
+ public void setLog(String log) {
+ this.log = log;
+ }
+
+ public Integer getMaxLine() {
+ return maxLine;
+ }
+
+ public void setMaxLine(Integer maxLine) {
+ this.maxLine = maxLine;
+ }
+
+ public Boolean getIsTruncate() {
+ return isTruncate;
+ }
+
+ public void setIsTruncate(Boolean isTruncate) {
+ this.isTruncate = isTruncate;
+ }
+}
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBBackupResponse.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBBackupResponse.java
index 26bebd19..cc9fabc9 100644
--- a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBBackupResponse.java
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBBackupResponse.java
@@ -35,6 +35,10 @@ public void setDataSet(List dataSet) {
public static class BackupInfo extends Response {
+ /** 可用区 */
+ @SerializedName("Zone")
+ private String zone;
+
/** 备份ID */
@SerializedName("BackupId")
private String backupId;
@@ -83,6 +87,14 @@ public static class BackupInfo extends Response {
@SerializedName("DiskSize")
private Integer diskSize;
+ public String getZone() {
+ return zone;
+ }
+
+ public void setZone(String zone) {
+ this.zone = zone;
+ }
+
public String getBackupId() {
return backupId;
}
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBInstancesResponse.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBInstancesResponse.java
index c385b88d..e4fc554e 100644
--- a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBInstancesResponse.java
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBInstancesResponse.java
@@ -66,7 +66,8 @@ public static class MongodbInstance extends Response {
/**
* 副本集/分片集群状态标记
* Initing:初始化中,InitFailed:安装失败,Starting:启动中,StartFailed:启动失败,Running:运行,Stopping:关闭中,Stopped:已关闭,
- * StopFailed:关闭失败,Deleting:删除中,Deleted:已删除,DeleteFailed:删除失败,Restarting:重启中,RestartFailed:重启失败。
+ * StopFailed:关闭失败,Deleting:删除中,Deleted:已删除,DeleteFailed:删除失败,Restarting:重启中,RestartFailed:重启失败,Upgrading:
+ * 升降级中,UpgradeFailed: 升降级失败,Switching:主备切换中
*/
@SerializedName("State")
private String state;
@@ -75,6 +76,34 @@ public static class MongodbInstance extends Response {
@SerializedName("IPv6ConnectURL")
private String iPv6ConnectURL;
+ /** DB实例过期时间,采用UTC计时时间戳 */
+ @SerializedName("ExpiredTime")
+ private Integer expiredTime;
+
+ /** 数据节点计算规格 */
+ @SerializedName("DataComputeType")
+ private MongodbMachineType dataComputeType;
+
+ /** VPC的ID */
+ @SerializedName("VPCId")
+ private String vpcId;
+
+ /** 子网ID */
+ @SerializedName("SubnetId")
+ private String subnetId;
+
+ /** 数据节点磁盘空间(GB) */
+ @SerializedName("DiskSpace")
+ private Integer diskSpace;
+
+ /** 业务组 */
+ @SerializedName("Tag")
+ private String tag;
+
+ /** 跨可用区列表 */
+ @SerializedName("CrossZones")
+ private List crossZones;
+
public String getZone() {
return zone;
}
@@ -146,5 +175,136 @@ public String getIPv6ConnectURL() {
public void setIPv6ConnectURL(String iPv6ConnectURL) {
this.iPv6ConnectURL = iPv6ConnectURL;
}
+
+ public Integer getExpiredTime() {
+ return expiredTime;
+ }
+
+ public void setExpiredTime(Integer expiredTime) {
+ this.expiredTime = expiredTime;
+ }
+
+ public MongodbMachineType getDataComputeType() {
+ return dataComputeType;
+ }
+
+ public void setDataComputeType(MongodbMachineType dataComputeType) {
+ this.dataComputeType = dataComputeType;
+ }
+
+ public String getVPCId() {
+ return vpcId;
+ }
+
+ public void setVPCId(String vpcId) {
+ this.vpcId = vpcId;
+ }
+
+ public String getSubnetId() {
+ return subnetId;
+ }
+
+ public void setSubnetId(String subnetId) {
+ this.subnetId = subnetId;
+ }
+
+ public Integer getDiskSpace() {
+ return diskSpace;
+ }
+
+ public void setDiskSpace(Integer diskSpace) {
+ this.diskSpace = diskSpace;
+ }
+
+ public String getTag() {
+ return tag;
+ }
+
+ public void setTag(String tag) {
+ this.tag = tag;
+ }
+
+ public List getCrossZones() {
+ return crossZones;
+ }
+
+ public void setCrossZones(List crossZones) {
+ this.crossZones = crossZones;
+ }
+ }
+
+ public static class MongodbMachineType extends Response {
+
+ /** 机器类型ID o.mongo2m.medium,o.mongo2m.xlarge */
+ @SerializedName("MachineTypeId")
+ private String machineTypeId;
+
+ /** 配置简称 2C4G */
+ @SerializedName("Description")
+ private String description;
+
+ /** cpu核数 */
+ @SerializedName("Cpu")
+ private Integer cpu;
+
+ /** 内存用量(GB) */
+ @SerializedName("Memory")
+ private Integer memory;
+
+ /** 机器类型,N/O */
+ @SerializedName("UHhostMachineType")
+ private String uHhostMachineType;
+
+ /** 配置分组,2m , 4m */
+ @SerializedName("Group")
+ private String group;
+
+ public String getMachineTypeId() {
+ return machineTypeId;
+ }
+
+ public void setMachineTypeId(String machineTypeId) {
+ this.machineTypeId = machineTypeId;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public Integer getCpu() {
+ return cpu;
+ }
+
+ public void setCpu(Integer cpu) {
+ this.cpu = cpu;
+ }
+
+ public Integer getMemory() {
+ return memory;
+ }
+
+ public void setMemory(Integer memory) {
+ this.memory = memory;
+ }
+
+ public String getUHhostMachineType() {
+ return uHhostMachineType;
+ }
+
+ public void setUHhostMachineType(String uHhostMachineType) {
+ this.uHhostMachineType = uHhostMachineType;
+ }
+
+ public String getGroup() {
+ return group;
+ }
+
+ public void setGroup(String group) {
+ this.group = group;
+ }
}
}
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecRequest.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecRequest.java
new file mode 100644
index 00000000..564e12bf
--- /dev/null
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecRequest.java
@@ -0,0 +1,87 @@
+/**
+ * Copyright 2021 UCloud Technology Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ *
http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package cn.ucloud.umongodb.models;
+
+
+import cn.ucloud.common.annotation.NotEmpty;
+import cn.ucloud.common.annotation.UCloudParam;
+import cn.ucloud.common.request.Request;
+
+public class ListUMongoDBMachineSpecRequest extends Request {
+
+ /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @NotEmpty
+ @UCloudParam("Region")
+ private String region;
+
+ /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @NotEmpty
+ @UCloudParam("Zone")
+ private String zone;
+
+ /**
+ * 项目ID。不填写为默认项目,子帐号必须填写。
+ * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
+ */
+ @UCloudParam("ProjectId")
+ private String projectId;
+
+ /** 机型,如O */
+ @UCloudParam("ClassType")
+ private String classType;
+
+ /** 磁盘类型,如CLOUD_RSSD */
+ @UCloudParam("DiskType")
+ private String diskType;
+
+ public String getRegion() {
+ return region;
+ }
+
+ public void setRegion(String region) {
+ this.region = region;
+ }
+
+ public String getZone() {
+ return zone;
+ }
+
+ public void setZone(String zone) {
+ this.zone = zone;
+ }
+
+ public String getProjectId() {
+ return projectId;
+ }
+
+ public void setProjectId(String projectId) {
+ this.projectId = projectId;
+ }
+
+ public String getClassType() {
+ return classType;
+ }
+
+ public void setClassType(String classType) {
+ this.classType = classType;
+ }
+
+ public String getDiskType() {
+ return diskType;
+ }
+
+ public void setDiskType(String diskType) {
+ this.diskType = diskType;
+ }
+}
diff --git a/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecResponse.java b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecResponse.java
new file mode 100644
index 00000000..c91e1a70
--- /dev/null
+++ b/ucloud-sdk-java-umongodb/src/main/java/cn/ucloud/umongodb/models/ListUMongoDBMachineSpecResponse.java
@@ -0,0 +1,161 @@
+/**
+ * Copyright 2021 UCloud Technology Co., Ltd.
+ *
+ *
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ *
http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package cn.ucloud.umongodb.models;
+
+import cn.ucloud.common.response.Response;
+
+import com.google.gson.annotations.SerializedName;
+
+import java.util.List;
+
+public class ListUMongoDBMachineSpecResponse extends Response {
+
+ /** 规格列表 */
+ @SerializedName("DataSet")
+ private List dataSet;
+
+ public List getDataSet() {
+ return dataSet;
+ }
+
+ public void setDataSet(List dataSet) {
+ this.dataSet = dataSet;
+ }
+
+ public static class MongodbMachineSpec extends Response {
+
+ /** 规格类型;O | N */
+ @SerializedName("ClassType")
+ private String classType;
+
+ /** 磁盘类型;CLOUD_RSSD | CLOUD_SSD | LOCAL_SSD */
+ @SerializedName("DiskType")
+ private List diskType;
+
+ /** 计算规格列表 */
+ @SerializedName("ComputeType")
+ private List computeType;
+
+ /** 默认规格 */
+ @SerializedName("DefaultMachineType")
+ private MongodbMachineType defaultMachineType;
+
+ public String getClassType() {
+ return classType;
+ }
+
+ public void setClassType(String classType) {
+ this.classType = classType;
+ }
+
+ public List getDiskType() {
+ return diskType;
+ }
+
+ public void setDiskType(List diskType) {
+ this.diskType = diskType;
+ }
+
+ public List getComputeType() {
+ return computeType;
+ }
+
+ public void setComputeType(List computeType) {
+ this.computeType = computeType;
+ }
+
+ public MongodbMachineType getDefaultMachineType() {
+ return defaultMachineType;
+ }
+
+ public void setDefaultMachineType(MongodbMachineType defaultMachineType) {
+ this.defaultMachineType = defaultMachineType;
+ }
+ }
+
+ public static class MongodbMachineType extends Response {
+
+ /** 机器类型ID o.mongo2m.medium,o.mongo2m.xlarge */
+ @SerializedName("MachineTypeId")
+ private String machineTypeId;
+
+ /** 配置简称 2C4G */
+ @SerializedName("Description")
+ private String description;
+
+ /** cpu核数 */
+ @SerializedName("Cpu")
+ private Integer cpu;
+
+ /** 内存用量(GB) */
+ @SerializedName("Memory")
+ private Integer memory;
+
+ /** 机器类型,N/O */
+ @SerializedName("UHhostMachineType")
+ private String uHhostMachineType;
+
+ /** 配置分组,2m , 4m */
+ @SerializedName("Group")
+ private String group;
+
+ public String getMachineTypeId() {
+ return machineTypeId;
+ }
+
+ public void setMachineTypeId(String machineTypeId) {
+ this.machineTypeId = machineTypeId;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public Integer getCpu() {
+ return cpu;
+ }
+
+ public void setCpu(Integer cpu) {
+ this.cpu = cpu;
+ }
+
+ public Integer getMemory() {
+ return memory;
+ }
+
+ public void setMemory(Integer memory) {
+ this.memory = memory;
+ }
+
+ public String getUHhostMachineType() {
+ return uHhostMachineType;
+ }
+
+ public void setUHhostMachineType(String uHhostMachineType) {
+ this.uHhostMachineType = uHhostMachineType;
+ }
+
+ public String getGroup() {
+ return group;
+ }
+
+ public void setGroup(String group) {
+ this.group = group;
+ }
+ }
+}
diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml
index 92c34e62..42ffd18e 100644
--- a/ucloud-sdk-java-unet/pom.xml
+++ b/ucloud-sdk-java-unet/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-unet
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-upfs/pom.xml b/ucloud-sdk-java-upfs/pom.xml
index 0550d834..2cc562c0 100644
--- a/ucloud-sdk-java-upfs/pom.xml
+++ b/ucloud-sdk-java-upfs/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-upfs
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml
index f777fc66..aac34446 100644
--- a/ucloud-sdk-java-upgsql/pom.xml
+++ b/ucloud-sdk-java-upgsql/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-upgsql
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml
index f5180818..9f0b74e0 100644
--- a/ucloud-sdk-java-uphone/pom.xml
+++ b/ucloud-sdk-java-uphone/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-uphone
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml
index e0db76ea..b082eaf4 100644
--- a/ucloud-sdk-java-uphost/pom.xml
+++ b/ucloud-sdk-java-uphost/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-uphost
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml
index 34553265..1afe691a 100644
--- a/ucloud-sdk-java-uslk/pom.xml
+++ b/ucloud-sdk-java-uslk/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-uslk
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml
index abcf775f..cbade34c 100644
--- a/ucloud-sdk-java-usms/pom.xml
+++ b/ucloud-sdk-java-usms/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-usms
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml
index 025dda7d..959d7d2c 100644
--- a/ucloud-sdk-java-usnap/pom.xml
+++ b/ucloud-sdk-java-usnap/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-usnap
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml
index d8b50dcc..cf03fd78 100644
--- a/ucloud-sdk-java-uvms/pom.xml
+++ b/ucloud-sdk-java-uvms/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-uvms
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release
diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml
index af3e7e4a..0fa765ba 100644
--- a/ucloud-sdk-java-vpc/pom.xml
+++ b/ucloud-sdk-java-vpc/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.59-release
+ 1.2.60-release
4.0.0
ucloud-sdk-java-vpc
ucloud-sdk-java
- 1.2.59-release
+ 1.2.60-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.59-release
+ 1.2.60-release