supportedGPUTypes) {
+ this.supportedGPUTypes = supportedGPUTypes;
+ }
}
}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigRequest.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigRequest.java
new file mode 100644
index 000000000..f480f47dd
--- /dev/null
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigRequest.java
@@ -0,0 +1,60 @@
+/**
+ * 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.uk8s.models;
+
+
+import cn.ucloud.common.annotation.NotEmpty;
+import cn.ucloud.common.annotation.UCloudParam;
+import cn.ucloud.common.request.Request;
+
+public class GetClusterConfigRequest extends Request {
+
+ /** 所在项目 */
+ @UCloudParam("ProjectId")
+ private String projectId;
+
+ /** 所在区域 */
+ @NotEmpty
+ @UCloudParam("Region")
+ private String region;
+
+ /** 集群ID */
+ @NotEmpty
+ @UCloudParam("ClusterId")
+ private String clusterId;
+
+ public String getProjectId() {
+ return projectId;
+ }
+
+ public void setProjectId(String projectId) {
+ this.projectId = projectId;
+ }
+
+ public String getRegion() {
+ return region;
+ }
+
+ public void setRegion(String region) {
+ this.region = region;
+ }
+
+ public String getClusterId() {
+ return clusterId;
+ }
+
+ public void setClusterId(String clusterId) {
+ this.clusterId = clusterId;
+ }
+}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigResponse.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigResponse.java
new file mode 100644
index 000000000..5f3890236
--- /dev/null
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetClusterConfigResponse.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.uk8s.models;
+
+
+import cn.ucloud.common.response.Response;
+
+import com.google.gson.annotations.SerializedName;
+
+public class GetClusterConfigResponse extends Response {
+
+ /** 配置信息 */
+ @SerializedName("KubeConfig")
+ private String kubeConfig;
+
+ /** 开启公网apiserver的情况下,有数据返回。 */
+ @SerializedName("ExternalKubeConfig")
+ private String externalKubeConfig;
+
+ /** 用于标示 kubeconfig 是否可以进行替换更新 */
+ @SerializedName("Updatable")
+ private Boolean updatable;
+
+ public String getKubeConfig() {
+ return kubeConfig;
+ }
+
+ public void setKubeConfig(String kubeConfig) {
+ this.kubeConfig = kubeConfig;
+ }
+
+ public String getExternalKubeConfig() {
+ return externalKubeConfig;
+ }
+
+ public void setExternalKubeConfig(String externalKubeConfig) {
+ this.externalKubeConfig = externalKubeConfig;
+ }
+
+ public Boolean getUpdatable() {
+ return updatable;
+ }
+
+ public void setUpdatable(Boolean updatable) {
+ this.updatable = updatable;
+ }
+}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsRequest.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsRequest.java
new file mode 100644
index 000000000..8fc621aa2
--- /dev/null
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsRequest.java
@@ -0,0 +1,61 @@
+/**
+ * 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.uk8s.models;
+
+
+import cn.ucloud.common.annotation.NotEmpty;
+import cn.ucloud.common.annotation.UCloudParam;
+import cn.ucloud.common.request.Request;
+
+public class GetUK8SVersionsRequest extends Request {
+
+ /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @NotEmpty
+ @UCloudParam("Region")
+ private String region;
+
+ /** 项目ID。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) */
+ @NotEmpty
+ @UCloudParam("ProjectId")
+ private String projectId;
+
+ /** 集群类型,可选值为[Dedicated] */
+ @NotEmpty
+ @UCloudParam("Kind")
+ private String kind;
+
+ public String getRegion() {
+ return region;
+ }
+
+ public void setRegion(String region) {
+ this.region = region;
+ }
+
+ public String getProjectId() {
+ return projectId;
+ }
+
+ public void setProjectId(String projectId) {
+ this.projectId = projectId;
+ }
+
+ public String getKind() {
+ return kind;
+ }
+
+ public void setKind(String kind) {
+ this.kind = kind;
+ }
+}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsResponse.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsResponse.java
new file mode 100644
index 000000000..b693b625c
--- /dev/null
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/GetUK8SVersionsResponse.java
@@ -0,0 +1,62 @@
+/**
+ * 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.uk8s.models;
+
+import cn.ucloud.common.response.Response;
+
+import com.google.gson.annotations.SerializedName;
+
+import java.util.List;
+
+public class GetUK8SVersionsResponse extends Response {
+
+ /** UK8S 版本信息列表。 */
+ @SerializedName("Data")
+ private List data;
+
+ public List getData() {
+ return data;
+ }
+
+ public void setData(List data) {
+ this.data = data;
+ }
+
+ public static class UK8SVersionData extends Response {
+
+ /** K8S 版本 */
+ @SerializedName("K8sVersion")
+ private String k8sVersion;
+
+ /** Containerd 版本 */
+ @SerializedName("ContainerdVersion")
+ private String containerdVersion;
+
+ public String getK8sVersion() {
+ return k8sVersion;
+ }
+
+ public void setK8sVersion(String k8sVersion) {
+ this.k8sVersion = k8sVersion;
+ }
+
+ public String getContainerdVersion() {
+ return containerdVersion;
+ }
+
+ public void setContainerdVersion(String containerdVersion) {
+ this.containerdVersion = containerdVersion;
+ }
+ }
+}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Request.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Request.java
index 6eb1a77be..646fc9f5b 100644
--- a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Request.java
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Request.java
@@ -37,6 +37,10 @@ public class ListUK8SClusterNodeV2Request extends Request {
@UCloudParam("ClusterId")
private String clusterId;
+ /** 可传一个或多个节点id 不传或为空则返回所有节点 */
+ @UCloudParam("NodeIds")
+ private String nodeIds;
+
public String getRegion() {
return region;
}
@@ -60,4 +64,12 @@ public String getClusterId() {
public void setClusterId(String clusterId) {
this.clusterId = clusterId;
}
+
+ public String getNodeIds() {
+ return nodeIds;
+ }
+
+ public void setNodeIds(String nodeIds) {
+ this.nodeIds = nodeIds;
+ }
}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
index 798e0de50..ed68b0ae8 100644
--- a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterNodeV2Response.java
@@ -97,6 +97,14 @@ public static class NodeInfoV2 extends Response {
@SerializedName("MachineType")
private String machineType;
+ /** CPU平台 */
+ @SerializedName("CPUPlatform")
+ private String cpuPlatform;
+
+ /** 主机规格族 */
+ @SerializedName("UHostFamily")
+ private String uHostFamily;
+
/** Node节点的操作系统类别,如Linux或Windows。 */
@SerializedName("OsType")
private String osType;
@@ -105,7 +113,7 @@ public static class NodeInfoV2 extends Response {
@SerializedName("OsName")
private String osName;
- /** Node节点CPU核数,单位: 个。 */
+ /** Node节点CPU核数,单位: 核。 */
@SerializedName("CPU")
private Integer cpu;
@@ -141,10 +149,102 @@ public static class NodeInfoV2 extends Response {
@SerializedName("NodeLogInfo")
private String nodeLogInfo;
+ /** 节点标签 */
+ @SerializedName("Labels")
+ private List labels;
+
+ /** Kubelet版本 */
+ @SerializedName("KubeletVersion")
+ private String kubeletVersion;
+
+ /** pod最大可用 */
+ @SerializedName("MaxPod")
+ private Integer maxPod;
+
+ /** 内存最大可用 */
+ @SerializedName("MaxMemory")
+ private Integer maxMemory;
+
+ /** CPU最大可用 */
+ @SerializedName("MaxCPU")
+ private Integer maxCPU;
+
+ /** 已申请的pod */
+ @SerializedName("RequestPod")
+ private Integer requestPod;
+
+ /** 已申请的Memory */
+ @SerializedName("RequestMemory")
+ private Integer requestMemory;
+
+ /** 已申请的CPU */
+ @SerializedName("RequestCPU")
+ private Integer requestCPU;
+
+ /** Runtime 版本 */
+ @SerializedName("RuntimeVersion")
+ private String runtimeVersion;
+
+ /** Runtime 名字 */
+ @SerializedName("RuntimeName")
+ private String runtimeName;
+
+ /** 已使用的CPU */
+ @SerializedName("UsedCPU")
+ private Integer usedCPU;
+
+ /** 已使用的Memory */
+ @SerializedName("UsedMemory")
+ private Integer usedMemory;
+
+ /** 系统盘大小 */
+ @SerializedName("BootDiskSize")
+ private Integer bootDiskSize;
+
+ /** 数据盘大小,如果有多块数据盘会汇总展示,不包括PVC */
+ @SerializedName("DataDiskSize")
+ private Integer dataDiskSize;
+
/** 节点的GPU颗数。 */
@SerializedName("GPU")
private Integer gpu;
+ /** 节点池id */
+ @SerializedName("NodeGroupId")
+ private String nodeGroupId;
+
+ /** 边缘机房id */
+ @SerializedName("IDCId")
+ private String idcId;
+
+ /** 边缘机房 */
+ @SerializedName("IDCName")
+ private String idcName;
+
+ /** 节点主机备注信息 */
+ @SerializedName("Remark")
+ private String remark;
+
+ /** 节点GPU型号(如果为GPU机型) */
+ @SerializedName("GPUType")
+ private String gpuType;
+
+ /** 是否启用了容器镜像加速 */
+ @SerializedName("ImageAccelable")
+ private Boolean imageAccelable;
+
+ /** 节点所属业务组 */
+ @SerializedName("Tag")
+ private String tag;
+
+ /** Pod CIDR */
+ @SerializedName("PodCIDR")
+ private String podCIDR;
+
+ /** 节点所属节点池名称 */
+ @SerializedName("NodeGroupName")
+ private String nodeGroupName;
+
public String getZone() {
return zone;
}
@@ -209,6 +309,22 @@ public void setMachineType(String machineType) {
this.machineType = machineType;
}
+ public String getCPUPlatform() {
+ return cpuPlatform;
+ }
+
+ public void setCPUPlatform(String cpuPlatform) {
+ this.cpuPlatform = cpuPlatform;
+ }
+
+ public String getUHostFamily() {
+ return uHostFamily;
+ }
+
+ public void setUHostFamily(String uHostFamily) {
+ this.uHostFamily = uHostFamily;
+ }
+
public String getOsType() {
return osType;
}
@@ -297,6 +413,118 @@ public void setNodeLogInfo(String nodeLogInfo) {
this.nodeLogInfo = nodeLogInfo;
}
+ public List getLabels() {
+ return labels;
+ }
+
+ public void setLabels(List labels) {
+ this.labels = labels;
+ }
+
+ public String getKubeletVersion() {
+ return kubeletVersion;
+ }
+
+ public void setKubeletVersion(String kubeletVersion) {
+ this.kubeletVersion = kubeletVersion;
+ }
+
+ public Integer getMaxPod() {
+ return maxPod;
+ }
+
+ public void setMaxPod(Integer maxPod) {
+ this.maxPod = maxPod;
+ }
+
+ public Integer getMaxMemory() {
+ return maxMemory;
+ }
+
+ public void setMaxMemory(Integer maxMemory) {
+ this.maxMemory = maxMemory;
+ }
+
+ public Integer getMaxCPU() {
+ return maxCPU;
+ }
+
+ public void setMaxCPU(Integer maxCPU) {
+ this.maxCPU = maxCPU;
+ }
+
+ public Integer getRequestPod() {
+ return requestPod;
+ }
+
+ public void setRequestPod(Integer requestPod) {
+ this.requestPod = requestPod;
+ }
+
+ public Integer getRequestMemory() {
+ return requestMemory;
+ }
+
+ public void setRequestMemory(Integer requestMemory) {
+ this.requestMemory = requestMemory;
+ }
+
+ public Integer getRequestCPU() {
+ return requestCPU;
+ }
+
+ public void setRequestCPU(Integer requestCPU) {
+ this.requestCPU = requestCPU;
+ }
+
+ public String getRuntimeVersion() {
+ return runtimeVersion;
+ }
+
+ public void setRuntimeVersion(String runtimeVersion) {
+ this.runtimeVersion = runtimeVersion;
+ }
+
+ public String getRuntimeName() {
+ return runtimeName;
+ }
+
+ public void setRuntimeName(String runtimeName) {
+ this.runtimeName = runtimeName;
+ }
+
+ public Integer getUsedCPU() {
+ return usedCPU;
+ }
+
+ public void setUsedCPU(Integer usedCPU) {
+ this.usedCPU = usedCPU;
+ }
+
+ public Integer getUsedMemory() {
+ return usedMemory;
+ }
+
+ public void setUsedMemory(Integer usedMemory) {
+ this.usedMemory = usedMemory;
+ }
+
+ public Integer getBootDiskSize() {
+ return bootDiskSize;
+ }
+
+ public void setBootDiskSize(Integer bootDiskSize) {
+ this.bootDiskSize = bootDiskSize;
+ }
+
+ public Integer getDataDiskSize() {
+ return dataDiskSize;
+ }
+
+ public void setDataDiskSize(Integer dataDiskSize) {
+ this.dataDiskSize = dataDiskSize;
+ }
+
public Integer getGPU() {
return gpu;
}
@@ -304,6 +532,78 @@ public Integer getGPU() {
public void setGPU(Integer gpu) {
this.gpu = gpu;
}
+
+ public String getNodeGroupId() {
+ return nodeGroupId;
+ }
+
+ public void setNodeGroupId(String nodeGroupId) {
+ this.nodeGroupId = nodeGroupId;
+ }
+
+ public String getIDCId() {
+ return idcId;
+ }
+
+ public void setIDCId(String idcId) {
+ this.idcId = idcId;
+ }
+
+ public String getIDCName() {
+ return idcName;
+ }
+
+ public void setIDCName(String idcName) {
+ this.idcName = idcName;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark;
+ }
+
+ public String getGPUType() {
+ return gpuType;
+ }
+
+ public void setGPUType(String gpuType) {
+ this.gpuType = gpuType;
+ }
+
+ public Boolean getImageAccelable() {
+ return imageAccelable;
+ }
+
+ public void setImageAccelable(Boolean imageAccelable) {
+ this.imageAccelable = imageAccelable;
+ }
+
+ public String getTag() {
+ return tag;
+ }
+
+ public void setTag(String tag) {
+ this.tag = tag;
+ }
+
+ public String getPodCIDR() {
+ return podCIDR;
+ }
+
+ public void setPodCIDR(String podCIDR) {
+ this.podCIDR = podCIDR;
+ }
+
+ public String getNodeGroupName() {
+ return nodeGroupName;
+ }
+
+ public void setNodeGroupName(String nodeGroupName) {
+ this.nodeGroupName = nodeGroupName;
+ }
}
public static class UHostIPSet extends Response {
@@ -336,6 +636,14 @@ public static class UHostIPSet extends Response {
@SerializedName("Mac")
private String mac;
+ /** IP 协议类型 */
+ @SerializedName("IPMode")
+ private String ipMode;
+
+ /** 网络接口资源 ID */
+ @SerializedName("NetworkInterfaceId")
+ private String networkInterfaceId;
+
public String getType() {
return type;
}
@@ -391,5 +699,21 @@ public String getMac() {
public void setMac(String mac) {
this.mac = mac;
}
+
+ public String getIPMode() {
+ return ipMode;
+ }
+
+ public void setIPMode(String ipMode) {
+ this.ipMode = ipMode;
+ }
+
+ public String getNetworkInterfaceId() {
+ return networkInterfaceId;
+ }
+
+ public void setNetworkInterfaceId(String networkInterfaceId) {
+ this.networkInterfaceId = networkInterfaceId;
+ }
}
}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterV2Response.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterV2Response.java
index e27723086..206017846 100644
--- a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterV2Response.java
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SClusterV2Response.java
@@ -29,6 +29,10 @@ public class ListUK8SClusterV2Response extends Response {
@SerializedName("ClusterSet")
private List clusterSet;
+ /** 总数 */
+ @SerializedName("TotalCount")
+ private Integer totalCount;
+
public Integer getClusterCount() {
return clusterCount;
}
@@ -45,6 +49,14 @@ public void setClusterSet(List clusterSet) {
this.clusterSet = clusterSet;
}
+ public Integer getTotalCount() {
+ return totalCount;
+ }
+
+ public void setTotalCount(Integer totalCount) {
+ this.totalCount = totalCount;
+ }
+
public static class ClusterSet extends Response {
/** 资源名字 */
@@ -71,6 +83,10 @@ public static class ClusterSet extends Response {
@SerializedName("ServiceCIDR")
private String serviceCIDR;
+ /** CNI网络模式 */
+ @SerializedName("CNIMode")
+ private String cniMode;
+
/** Master 节点数量 */
@SerializedName("MasterCount")
private Integer masterCount;
@@ -83,6 +99,26 @@ public static class ClusterSet extends Response {
@SerializedName("K8sVersion")
private String k8sVersion;
+ /** 删除保护开关。0表示不开启,1表示开启。默认不开启 */
+ @SerializedName("DeleteProtection")
+ private Integer deleteProtection;
+
+ /** 容器运行时名称 */
+ @SerializedName("RuntimeName")
+ private String runtimeName;
+
+ /** 容器运行时版本号,docker 或 containerd 版本 */
+ @SerializedName("RuntimeVersion")
+ private String runtimeVersion;
+
+ /** 计费/管理形态,区分"专有版"和"托管版"两种售卖形态 */
+ @SerializedName("ClusterType")
+ private String clusterType;
+
+ /** API Server 内部回环客户端证书 */
+ @SerializedName("LoopbackClientCert")
+ private LoopbackClientCert loopbackClientCert;
+
/** 创建集群时判断如果为NORESOURCE则为没资源,否则为空 */
@SerializedName("ClusterLogInfo")
private String clusterLogInfo;
@@ -153,6 +189,14 @@ public void setServiceCIDR(String serviceCIDR) {
this.serviceCIDR = serviceCIDR;
}
+ public String getCNIMode() {
+ return cniMode;
+ }
+
+ public void setCNIMode(String cniMode) {
+ this.cniMode = cniMode;
+ }
+
public Integer getMasterCount() {
return masterCount;
}
@@ -177,6 +221,46 @@ public void setK8sVersion(String k8sVersion) {
this.k8sVersion = k8sVersion;
}
+ public Integer getDeleteProtection() {
+ return deleteProtection;
+ }
+
+ public void setDeleteProtection(Integer deleteProtection) {
+ this.deleteProtection = deleteProtection;
+ }
+
+ public String getRuntimeName() {
+ return runtimeName;
+ }
+
+ public void setRuntimeName(String runtimeName) {
+ this.runtimeName = runtimeName;
+ }
+
+ public String getRuntimeVersion() {
+ return runtimeVersion;
+ }
+
+ public void setRuntimeVersion(String runtimeVersion) {
+ this.runtimeVersion = runtimeVersion;
+ }
+
+ public String getClusterType() {
+ return clusterType;
+ }
+
+ public void setClusterType(String clusterType) {
+ this.clusterType = clusterType;
+ }
+
+ public LoopbackClientCert getLoopbackClientCert() {
+ return loopbackClientCert;
+ }
+
+ public void setLoopbackClientCert(LoopbackClientCert loopbackClientCert) {
+ this.loopbackClientCert = loopbackClientCert;
+ }
+
public String getClusterLogInfo() {
return clusterLogInfo;
}
@@ -217,4 +301,31 @@ public void setStatus(String status) {
this.status = status;
}
}
+
+ public static class LoopbackClientCert extends Response {
+
+ /** 证书到期时间 */
+ @SerializedName("ExpireTime")
+ private Integer expireTime;
+
+ /** 证书是否进入过期告警状态 */
+ @SerializedName("Warn")
+ private Boolean warn;
+
+ public Integer getExpireTime() {
+ return expireTime;
+ }
+
+ public void setExpireTime(Integer expireTime) {
+ this.expireTime = expireTime;
+ }
+
+ public Boolean getWarn() {
+ return warn;
+ }
+
+ public void setWarn(Boolean warn) {
+ this.warn = warn;
+ }
+ }
}
diff --git a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SNodeGroupResponse.java b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SNodeGroupResponse.java
index 84173ddcf..1c08dab1a 100644
--- a/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SNodeGroupResponse.java
+++ b/ucloud-sdk-java-uk8s/src/main/java/cn/ucloud/uk8s/models/ListUK8SNodeGroupResponse.java
@@ -33,8 +33,398 @@ public void setNodeGroupList(List nodeGroupList) {
this.nodeGroupList = nodeGroupList;
}
+ public static class DiskSet extends Response {
+
+ /** 磁盘类型。系统盘: Boot,数据盘: Data,网络盘:Udisk */
+ @SerializedName("Type")
+ private String type;
+
+ /** 磁盘长ID */
+ @SerializedName("DiskId")
+ private String diskId;
+
+ /** UDisk名字(仅当磁盘是UDisk时返回) */
+ @SerializedName("Name")
+ private String name;
+
+ /** 磁盘盘符 */
+ @SerializedName("Drive")
+ private String drive;
+
+ /** 磁盘大小,单位: GB */
+ @SerializedName("Size")
+ private Integer size;
+
+ /** 备份方案,枚举类型:BASIC_SNAPSHOT,普通快照;DATAARK,方舟。无快照则不返回该字段。 */
+ @SerializedName("BackupType")
+ private String backupType;
+
+ /** 当前主机的IOPS值 */
+ @SerializedName("IOPS")
+ private Integer iops;
+
+ /** Yes: 加密 No: 非加密 */
+ @SerializedName("Encrypted")
+ private String encrypted;
+
+ /** LOCAL_NOMAL| CLOUD_NORMAL| LOCAL_SSD| CLOUD_SSD|EXCLUSIVE_LOCAL_DISK */
+ @SerializedName("DiskType")
+ private String diskType;
+
+ /** True| False */
+ @SerializedName("IsBoot")
+ private String isBoot;
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public String getDiskId() {
+ return diskId;
+ }
+
+ public void setDiskId(String diskId) {
+ this.diskId = diskId;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getDrive() {
+ return drive;
+ }
+
+ public void setDrive(String drive) {
+ this.drive = drive;
+ }
+
+ public Integer getSize() {
+ return size;
+ }
+
+ public void setSize(Integer size) {
+ this.size = size;
+ }
+
+ public String getBackupType() {
+ return backupType;
+ }
+
+ public void setBackupType(String backupType) {
+ this.backupType = backupType;
+ }
+
+ public Integer getIOPS() {
+ return iops;
+ }
+
+ public void setIOPS(Integer iops) {
+ this.iops = iops;
+ }
+
+ public String getEncrypted() {
+ return encrypted;
+ }
+
+ public void setEncrypted(String encrypted) {
+ this.encrypted = encrypted;
+ }
+
+ public String getDiskType() {
+ return diskType;
+ }
+
+ public void setDiskType(String diskType) {
+ this.diskType = diskType;
+ }
+
+ public String getIsBoot() {
+ return isBoot;
+ }
+
+ public void setIsBoot(String isBoot) {
+ this.isBoot = isBoot;
+ }
+ }
+
+ public static class EIP extends Response {
+
+ /**
+ * 【若绑定EIP,此参数必填】弹性IP的外网带宽, 单位为Mbps. 共享带宽模式下非必传, 非共享带宽模式必须指定非0Mbps带宽. 各地域非共享带宽的带宽范围如下:
+ * 流量计费[1-300],带宽计费[1-800]
+ */
+ @SerializedName("Bandwidth")
+ private Integer bandwidth;
+
+ /**
+ * 弹性IP的计费模式. 枚举值: "Traffic", 流量计费; "Bandwidth", 带宽计费; "ShareBandwidth",共享带宽模式.
+ * "Free":免费带宽模式,默认为 "Bandwidth"
+ */
+ @SerializedName("PayMode")
+ private String payMode;
+
+ /** 绑定的共享带宽Id,仅当PayMode为ShareBandwidth时有效 */
+ @SerializedName("ShareBandwidthId")
+ private String shareBandwidthId;
+
+ /**
+ * 【若绑定EIP,此参数必填】弹性IP的线路。枚举值: 国际: International,BGP: Bgp。 各地域允许的线路参数如下: cn-sh1: Bgp cn-sh2:
+ * Bgp cn-gd: Bgp cn-bj1: Bgp cn-bj2: Bgp hk: International us-ca: International th-bkk:
+ * International kr-seoul:International us-ws:International ge-fra:International
+ * sg:International tw-kh:International.其他海外线路均为 International
+ */
+ @SerializedName("OperatorName")
+ private String operatorName;
+
+ /** 当前EIP代金券id。请通过DescribeCoupon接口查询,或登录用户中心查看。 */
+ @SerializedName("CouponId")
+ private String couponId;
+
+ public Integer getBandwidth() {
+ return bandwidth;
+ }
+
+ public void setBandwidth(Integer bandwidth) {
+ this.bandwidth = bandwidth;
+ }
+
+ public String getPayMode() {
+ return payMode;
+ }
+
+ public void setPayMode(String payMode) {
+ this.payMode = payMode;
+ }
+
+ public String getShareBandwidthId() {
+ return shareBandwidthId;
+ }
+
+ public void setShareBandwidthId(String shareBandwidthId) {
+ this.shareBandwidthId = shareBandwidthId;
+ }
+
+ public String getOperatorName() {
+ return operatorName;
+ }
+
+ public void setOperatorName(String operatorName) {
+ this.operatorName = operatorName;
+ }
+
+ public String getCouponId() {
+ return couponId;
+ }
+
+ public void setCouponId(String couponId) {
+ this.couponId = couponId;
+ }
+ }
+
+ public static class EvictionCondition extends Response {
+
+ /** 内存相关驱逐条件或宽限时间。 */
+ @SerializedName("MemoryAvailable")
+ private String memoryAvailable;
+
+ /** 镜像文件系统存储相关驱逐条件或宽限时间。 */
+ @SerializedName("ImagefsAvailable")
+ private String imagefsAvailable;
+
+ /** 节点存储余量相关驱逐条件或宽限时间。 */
+ @SerializedName("NodefsAvailable")
+ private String nodefsAvailable;
+
+ /** 节点剩余inodes驱逐条件或宽限时间。 */
+ @SerializedName("NodefsInodesFree")
+ private String nodefsInodesFree;
+
+ public String getMemoryAvailable() {
+ return memoryAvailable;
+ }
+
+ public void setMemoryAvailable(String memoryAvailable) {
+ this.memoryAvailable = memoryAvailable;
+ }
+
+ public String getImagefsAvailable() {
+ return imagefsAvailable;
+ }
+
+ public void setImagefsAvailable(String imagefsAvailable) {
+ this.imagefsAvailable = imagefsAvailable;
+ }
+
+ public String getNodefsAvailable() {
+ return nodefsAvailable;
+ }
+
+ public void setNodefsAvailable(String nodefsAvailable) {
+ this.nodefsAvailable = nodefsAvailable;
+ }
+
+ public String getNodefsInodesFree() {
+ return nodefsInodesFree;
+ }
+
+ public void setNodefsInodesFree(String nodefsInodesFree) {
+ this.nodefsInodesFree = nodefsInodesFree;
+ }
+ }
+
+ public static class KubeletConfiguration extends Response {
+
+ /** 最大日志文件数量 */
+ @SerializedName("ContainerLogMaxFiles")
+ private Integer containerLogMaxFiles;
+
+ /** 最大日志文件大小 */
+ @SerializedName("ContainerLogMaxSize")
+ private String containerLogMaxSize;
+
+ /** 硬性驱逐条件,EvictionCondition类型 */
+ @SerializedName("EvictionHard")
+ private EvictionCondition evictionHard;
+
+ /** 软性驱逐条件,EvictionCondition类型 */
+ @SerializedName("EvictionSoft")
+ private EvictionCondition evictionSoft;
+
+ /** 软性驱逐宽限时间,EvictionCondition类型 */
+ @SerializedName("EvictionSoftGracePeriod")
+ private EvictionCondition evictionSoftGracePeriod;
+
+ /** 镜像垃圾收集阈值 */
+ @SerializedName("ImageGCHighThresholdPercent")
+ private Integer imageGCHighThresholdPercent;
+
+ /** 停止镜像垃圾收集阈值 */
+ @SerializedName("ImageGCLowThresholdPercent")
+ private Integer imageGCLowThresholdPercent;
+
+ /** kubelet预留资源,ReservedResource类型 */
+ @SerializedName("KubeReserved")
+ private ReservedResource kubeReserved;
+
+ /** 系统预留资源,ReservedResource类型 */
+ @SerializedName("SystemReserved")
+ private ReservedResource systemReserved;
+
+ /** 最大Pod数量 */
+ @SerializedName("MaxPods")
+ private Integer maxPods;
+
+ public Integer getContainerLogMaxFiles() {
+ return containerLogMaxFiles;
+ }
+
+ public void setContainerLogMaxFiles(Integer containerLogMaxFiles) {
+ this.containerLogMaxFiles = containerLogMaxFiles;
+ }
+
+ public String getContainerLogMaxSize() {
+ return containerLogMaxSize;
+ }
+
+ public void setContainerLogMaxSize(String containerLogMaxSize) {
+ this.containerLogMaxSize = containerLogMaxSize;
+ }
+
+ public EvictionCondition getEvictionHard() {
+ return evictionHard;
+ }
+
+ public void setEvictionHard(EvictionCondition evictionHard) {
+ this.evictionHard = evictionHard;
+ }
+
+ public EvictionCondition getEvictionSoft() {
+ return evictionSoft;
+ }
+
+ public void setEvictionSoft(EvictionCondition evictionSoft) {
+ this.evictionSoft = evictionSoft;
+ }
+
+ public EvictionCondition getEvictionSoftGracePeriod() {
+ return evictionSoftGracePeriod;
+ }
+
+ public void setEvictionSoftGracePeriod(EvictionCondition evictionSoftGracePeriod) {
+ this.evictionSoftGracePeriod = evictionSoftGracePeriod;
+ }
+
+ public Integer getImageGCHighThresholdPercent() {
+ return imageGCHighThresholdPercent;
+ }
+
+ public void setImageGCHighThresholdPercent(Integer imageGCHighThresholdPercent) {
+ this.imageGCHighThresholdPercent = imageGCHighThresholdPercent;
+ }
+
+ public Integer getImageGCLowThresholdPercent() {
+ return imageGCLowThresholdPercent;
+ }
+
+ public void setImageGCLowThresholdPercent(Integer imageGCLowThresholdPercent) {
+ this.imageGCLowThresholdPercent = imageGCLowThresholdPercent;
+ }
+
+ public ReservedResource getKubeReserved() {
+ return kubeReserved;
+ }
+
+ public void setKubeReserved(ReservedResource kubeReserved) {
+ this.kubeReserved = kubeReserved;
+ }
+
+ public ReservedResource getSystemReserved() {
+ return systemReserved;
+ }
+
+ public void setSystemReserved(ReservedResource systemReserved) {
+ this.systemReserved = systemReserved;
+ }
+
+ public Integer getMaxPods() {
+ return maxPods;
+ }
+
+ public void setMaxPods(Integer maxPods) {
+ this.maxPods = maxPods;
+ }
+ }
+
+ public static class NetworkInterface extends Response {
+
+ /** EIP */
+ @SerializedName("EIP")
+ private EIP eip;
+
+ public EIP getEIP() {
+ return eip;
+ }
+
+ public void setEIP(EIP eip) {
+ this.eip = eip;
+ }
+ }
+
public static class NodeGroupSet extends Response {
+ /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
+ @SerializedName("Zone")
+ private String zone;
+
/** 节点池ID */
@SerializedName("NodeGroupId")
private String nodeGroupId;
@@ -43,6 +433,10 @@ public static class NodeGroupSet extends Response {
@SerializedName("NodeGroupName")
private String nodeGroupName;
+ /** 自定义Uhost主机名前缀。完整的自定义Uhost主机名为{NodeNamePrefix}-{NodeIP}。 */
+ @SerializedName("NodeNamePrefix")
+ private String nodeNamePrefix;
+
/** 镜像ID */
@SerializedName("ImageId")
private String imageId;
@@ -55,6 +449,10 @@ public static class NodeGroupSet extends Response {
@SerializedName("MinimalCpuPlatform")
private String minimalCpuPlatform;
+ /** 主机规格族 */
+ @SerializedName("UHostFamily")
+ private String uHostFamily;
+
/** 虚拟CPU核数 */
@SerializedName("CPU")
private Integer cpu;
@@ -99,6 +497,105 @@ public static class NodeGroupSet extends Response {
@SerializedName("NodeList")
private List nodeList;
+ /** 子网 ID。默认为集群创建时填写的子网ID,也可以填写集群同VPC内的子网ID。 */
+ @SerializedName("SubnetId")
+ private String subnetId;
+
+ /** 硬件隔离组id。可通过DescribeIsolationGroup获取。 */
+ @SerializedName("IsolationGroupId")
+ private String isolationGroupId;
+
+ /** int 默认110,生产环境建议小于等于110。 */
+ @SerializedName("MaxPods")
+ private Integer maxPods;
+
+ /** 用户自定义数据。当镜像支持Cloud-init Feature时可填写此字段。注意:1、总数据量大小不超过 16K;2、使用base64编码。 */
+ @SerializedName("UserData")
+ private String userData;
+
+ /** 用户自定义Shell脚本。与UserData的区别在于InitScript在节点初始化完毕后才执行,UserData则是云主机初始化时执行。 */
+ @SerializedName("InitScript")
+ private String initScript;
+
+ /** Node节点污点,形式为key=value:effect,多组taints用”,“隔开,最多支持五组。 */
+ @SerializedName("Taints")
+ private String taints;
+
+ /** Node节点标签。key=value形式,多组用”,“隔开,最多5组。 如env=pro,type=game */
+ @SerializedName("Labels")
+ private String labels;
+
+ /** Node所属的安全组id(最多5个) */
+ @SerializedName("SecGroupId")
+ private List secGroupId;
+
+ /** 主机安全模式。Firewall:防火墙;SecGroup:安全组;默认值:Firewall。 */
+ @SerializedName("SecurityMode")
+ private String securityMode;
+
+ /**
+ * 防火墙ID,默认:Web推荐防火墙。如何查询SecurityGroupId请参见
+ * [DescribeFirewall](api/unet-api/describe_firewall.html)。
+ */
+ @SerializedName("SecurityGroupId")
+ private String securityGroupId;
+
+ /** Node节点网卡配置 */
+ @SerializedName("NetworkInterface")
+ private List networkInterface;
+
+ /** KubeletConfiguration */
+ @SerializedName("KubeletConfiguration")
+ private KubeletConfiguration kubeletConfiguration;
+
+ /** 镜像名称 */
+ @SerializedName("ImageName")
+ private String imageName;
+
+ /** 镜像类型 */
+ @SerializedName("ImageType")
+ private String imageType;
+
+ /** 操作系统类型 */
+ @SerializedName("OsType")
+ private String osType;
+
+ /** 操作系统名称 */
+ @SerializedName("OsName")
+ private String osName;
+
+ /** 网络配置 */
+ @SerializedName("NetCapability")
+ private String netCapability;
+
+ /** 是否启用 UNI 网络特性 */
+ @SerializedName("UNIFeature")
+ private Boolean uniFeature;
+
+ /** 磁盘列表 */
+ @SerializedName("Disks")
+ private List disks;
+
+ /** 节点池关联的弹性伸缩组ID */
+ @SerializedName("RelatedAsg")
+ private List relatedAsg;
+
+ /** 节点池创建时间 */
+ @SerializedName("CreateTime")
+ private Integer createTime;
+
+ /** 节点池更新时间 */
+ @SerializedName("UpdateTime")
+ private Integer updateTime;
+
+ public String getZone() {
+ return zone;
+ }
+
+ public void setZone(String zone) {
+ this.zone = zone;
+ }
+
public String getNodeGroupId() {
return nodeGroupId;
}
@@ -115,6 +612,14 @@ public void setNodeGroupName(String nodeGroupName) {
this.nodeGroupName = nodeGroupName;
}
+ public String getNodeNamePrefix() {
+ return nodeNamePrefix;
+ }
+
+ public void setNodeNamePrefix(String nodeNamePrefix) {
+ this.nodeNamePrefix = nodeNamePrefix;
+ }
+
public String getImageId() {
return imageId;
}
@@ -139,6 +644,14 @@ public void setMinimalCpuPlatform(String minimalCpuPlatform) {
this.minimalCpuPlatform = minimalCpuPlatform;
}
+ public String getUHostFamily() {
+ return uHostFamily;
+ }
+
+ public void setUHostFamily(String uHostFamily) {
+ this.uHostFamily = uHostFamily;
+ }
+
public Integer getCPU() {
return cpu;
}
@@ -226,5 +739,271 @@ public List getNodeList() {
public void setNodeList(List nodeList) {
this.nodeList = nodeList;
}
+
+ public String getSubnetId() {
+ return subnetId;
+ }
+
+ public void setSubnetId(String subnetId) {
+ this.subnetId = subnetId;
+ }
+
+ public String getIsolationGroupId() {
+ return isolationGroupId;
+ }
+
+ public void setIsolationGroupId(String isolationGroupId) {
+ this.isolationGroupId = isolationGroupId;
+ }
+
+ public Integer getMaxPods() {
+ return maxPods;
+ }
+
+ public void setMaxPods(Integer maxPods) {
+ this.maxPods = maxPods;
+ }
+
+ public String getUserData() {
+ return userData;
+ }
+
+ public void setUserData(String userData) {
+ this.userData = userData;
+ }
+
+ public String getInitScript() {
+ return initScript;
+ }
+
+ public void setInitScript(String initScript) {
+ this.initScript = initScript;
+ }
+
+ public String getTaints() {
+ return taints;
+ }
+
+ public void setTaints(String taints) {
+ this.taints = taints;
+ }
+
+ public String getLabels() {
+ return labels;
+ }
+
+ public void setLabels(String labels) {
+ this.labels = labels;
+ }
+
+ public List getSecGroupId() {
+ return secGroupId;
+ }
+
+ public void setSecGroupId(List secGroupId) {
+ this.secGroupId = secGroupId;
+ }
+
+ public String getSecurityMode() {
+ return securityMode;
+ }
+
+ public void setSecurityMode(String securityMode) {
+ this.securityMode = securityMode;
+ }
+
+ public String getSecurityGroupId() {
+ return securityGroupId;
+ }
+
+ public void setSecurityGroupId(String securityGroupId) {
+ this.securityGroupId = securityGroupId;
+ }
+
+ public List getNetworkInterface() {
+ return networkInterface;
+ }
+
+ public void setNetworkInterface(List networkInterface) {
+ this.networkInterface = networkInterface;
+ }
+
+ public KubeletConfiguration getKubeletConfiguration() {
+ return kubeletConfiguration;
+ }
+
+ public void setKubeletConfiguration(KubeletConfiguration kubeletConfiguration) {
+ this.kubeletConfiguration = kubeletConfiguration;
+ }
+
+ public String getImageName() {
+ return imageName;
+ }
+
+ public void setImageName(String imageName) {
+ this.imageName = imageName;
+ }
+
+ public String getImageType() {
+ return imageType;
+ }
+
+ public void setImageType(String imageType) {
+ this.imageType = imageType;
+ }
+
+ public String getOsType() {
+ return osType;
+ }
+
+ public void setOsType(String osType) {
+ this.osType = osType;
+ }
+
+ public String getOsName() {
+ return osName;
+ }
+
+ public void setOsName(String osName) {
+ this.osName = osName;
+ }
+
+ public String getNetCapability() {
+ return netCapability;
+ }
+
+ public void setNetCapability(String netCapability) {
+ this.netCapability = netCapability;
+ }
+
+ public Boolean getUNIFeature() {
+ return uniFeature;
+ }
+
+ public void setUNIFeature(Boolean uniFeature) {
+ this.uniFeature = uniFeature;
+ }
+
+ public List getDisks() {
+ return disks;
+ }
+
+ public void setDisks(List disks) {
+ this.disks = disks;
+ }
+
+ public List getRelatedAsg() {
+ return relatedAsg;
+ }
+
+ public void setRelatedAsg(List relatedAsg) {
+ this.relatedAsg = relatedAsg;
+ }
+
+ public Integer getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Integer createTime) {
+ this.createTime = createTime;
+ }
+
+ public Integer getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(Integer updateTime) {
+ this.updateTime = updateTime;
+ }
+ }
+
+ public static class ReservedResource extends Response {
+
+ /** CPU */
+ @SerializedName("CPU")
+ private String cpu;
+
+ /** 内存 */
+ @SerializedName("Memory")
+ private String memory;
+
+ /** 存储 */
+ @SerializedName("EphemeralStorage")
+ private String ephemeralStorage;
+
+ /** Pid */
+ @SerializedName("Pid")
+ private String pid;
+
+ public String getCPU() {
+ return cpu;
+ }
+
+ public void setCPU(String cpu) {
+ this.cpu = cpu;
+ }
+
+ public String getMemory() {
+ return memory;
+ }
+
+ public void setMemory(String memory) {
+ this.memory = memory;
+ }
+
+ public String getEphemeralStorage() {
+ return ephemeralStorage;
+ }
+
+ public void setEphemeralStorage(String ephemeralStorage) {
+ this.ephemeralStorage = ephemeralStorage;
+ }
+
+ public String getPid() {
+ return pid;
+ }
+
+ public void setPid(String pid) {
+ this.pid = pid;
+ }
+ }
+
+ public static class SecGroupId extends Response {
+
+ /** 安全组名称 */
+ @SerializedName("Id")
+ private String id;
+
+ /** 安全组id */
+ @SerializedName("Name")
+ private String name;
+
+ /** 安全组优先级 */
+ @SerializedName("Priority")
+ private String priority;
+
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getPriority() {
+ return priority;
+ }
+
+ public void setPriority(String priority) {
+ this.priority = priority;
+ }
}
}
diff --git a/ucloud-sdk-java-ukafka/pom.xml b/ucloud-sdk-java-ukafka/pom.xml
index 58fce0718..74269af7e 100644
--- a/ucloud-sdk-java-ukafka/pom.xml
+++ b/ucloud-sdk-java-ukafka/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-ukafka
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-ulb/pom.xml b/ucloud-sdk-java-ulb/pom.xml
index 47518c8f0..5c4d4fb46 100644
--- a/ucloud-sdk-java-ulb/pom.xml
+++ b/ucloud-sdk-java-ulb/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-ulb
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-ulighthost/pom.xml b/ucloud-sdk-java-ulighthost/pom.xml
index d0023a5b0..7f32ba71e 100644
--- a/ucloud-sdk-java-ulighthost/pom.xml
+++ b/ucloud-sdk-java-ulighthost/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-ulighthost
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-ulog/pom.xml b/ucloud-sdk-java-ulog/pom.xml
index 5b5f27ce7..7dc0d1cb5 100644
--- a/ucloud-sdk-java-ulog/pom.xml
+++ b/ucloud-sdk-java-ulog/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-ulog
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml
index a4fe69f1a..4a78cfd08 100644
--- a/ucloud-sdk-java-umem/pom.xml
+++ b/ucloud-sdk-java-umem/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-umem
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-umon/pom.xml b/ucloud-sdk-java-umon/pom.xml
index 92f208f30..a72c5020e 100644
--- a/ucloud-sdk-java-umon/pom.xml
+++ b/ucloud-sdk-java-umon/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-umon
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-umongodb/pom.xml b/ucloud-sdk-java-umongodb/pom.xml
index 0beae1735..1b934fe41 100644
--- a/ucloud-sdk-java-umongodb/pom.xml
+++ b/ucloud-sdk-java-umongodb/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-umongodb
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml
index b2df58c6b..8358b7fe0 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-unet
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-upfs/pom.xml b/ucloud-sdk-java-upfs/pom.xml
index 2be43e6e5..04de832b6 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-upfs
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml
index ac40bc234..28a3f6f14 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-upgsql
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml
index 5b35af08d..2821d2646 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-uphone
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml
index 02dbe7de2..c55d39c7d 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-uphost
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml
index 6d1f7ea60..1971919f6 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-uslk
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml
index 10997a529..0596f65ce 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-usms
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml
index a7e7f52ea..36228ef21 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-usnap
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml
index 67717b5ce..6d2803aec 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-uvms
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-uwsc/pom.xml b/ucloud-sdk-java-uwsc/pom.xml
index 25a2e0e61..10e65dfe4 100644
--- a/ucloud-sdk-java-uwsc/pom.xml
+++ b/ucloud-sdk-java-uwsc/pom.xml
@@ -5,19 +5,19 @@
ucloud-sdk-java
cn.ucloud
- 1.2.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-uwsc
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release
diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml
index 841855135..f8d7ebbca 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.72-release
+ 1.2.73-release
4.0.0
ucloud-sdk-java-vpc
ucloud-sdk-java
- 1.2.72-release
+ 1.2.73-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.72-release
+ 1.2.73-release