diff --git a/VERSION b/VERSION index 62f9b18a..493ce1a4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.45-release +1.2.46-release diff --git a/examples/generic/pom.xml b/examples/generic/pom.xml index 968bacf4..ee6ba71a 100644 --- a/examples/generic/pom.xml +++ b/examples/generic/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 @@ -18,7 +18,7 @@ cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/examples/uhost/pom.xml b/examples/uhost/pom.xml index b55de676..acd9ea33 100644 --- a/examples/uhost/pom.xml +++ b/examples/uhost/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 @@ -18,7 +18,7 @@ cn.ucloud ucloud-sdk-java-uhost - 1.2.45-release + 1.2.46-release diff --git a/pom.xml b/pom.xml index e2d4b98f..767719db 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ cn.ucloud ucloud-sdk-java pom - 1.2.45-release + 1.2.46-release ucloud-sdk-java-common ucloud-sdk-java-cloudwatch diff --git a/ucloud-sdk-java-cloudwatch/pom.xml b/ucloud-sdk-java-cloudwatch/pom.xml index 8261adee..a7a8172f 100644 --- a/ucloud-sdk-java-cloudwatch/pom.xml +++ b/ucloud-sdk-java-cloudwatch/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-cloudwatch - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClient.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClient.java index 41a9051d..130dab35 100644 --- a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClient.java +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClient.java @@ -21,6 +21,8 @@ import cn.ucloud.cloudwatch.models.CreateAlertStrategyTemplateResponse; import cn.ucloud.cloudwatch.models.DeleteAlertStrategyTemplateRequest; import cn.ucloud.cloudwatch.models.DeleteAlertStrategyTemplateResponse; +import cn.ucloud.cloudwatch.models.EnableAlertStrategyRequest; +import cn.ucloud.cloudwatch.models.EnableAlertStrategyResponse; import cn.ucloud.cloudwatch.models.GetProductMetricsRequest; import cn.ucloud.cloudwatch.models.GetProductMetricsResponse; import cn.ucloud.cloudwatch.models.ListAlertRecordRequest; @@ -31,6 +33,8 @@ import cn.ucloud.cloudwatch.models.ListAlertStrategyTemplateResponse; import cn.ucloud.cloudwatch.models.ListMonitorProductRequest; import cn.ucloud.cloudwatch.models.ListMonitorProductResponse; +import cn.ucloud.cloudwatch.models.ModifyAlertStrategyRemarkRequest; +import cn.ucloud.cloudwatch.models.ModifyAlertStrategyRemarkResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSetRequest; import cn.ucloud.cloudwatch.models.QueryMetricDataSetResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryRequest; @@ -91,7 +95,7 @@ public CreateAlertStrategyTemplateResponse createAlertStrategyTemplate( } /** - * DeleteAlertStrategyTemplate - 删除告警策略模板 + * DeleteAlertStrategyTemplate - 删除告警条件模板 * * @param request Request object * @throws UCloudException Exception @@ -103,6 +107,19 @@ public DeleteAlertStrategyTemplateResponse deleteAlertStrategyTemplate( this.invoke(request, DeleteAlertStrategyTemplateResponse.class); } + /** + * EnableAlertStrategy - 是否启用告警策略 + * + * @param request Request object + * @throws UCloudException Exception + */ + public EnableAlertStrategyResponse enableAlertStrategy(EnableAlertStrategyRequest request) + throws UCloudException { + request.setAction("EnableAlertStrategy"); + return (EnableAlertStrategyResponse) + this.invoke(request, EnableAlertStrategyResponse.class); + } + /** * GetProductMetrics - 获取云产品关联的指标列表 * @@ -164,6 +181,19 @@ public ListMonitorProductResponse listMonitorProduct(ListMonitorProductRequest r return (ListMonitorProductResponse) this.invoke(request, ListMonitorProductResponse.class); } + /** + * ModifyAlertStrategyRemark - 修改告警策略备注 + * + * @param request Request object + * @throws UCloudException Exception + */ + public ModifyAlertStrategyRemarkResponse modifyAlertStrategyRemark( + ModifyAlertStrategyRemarkRequest request) throws UCloudException { + request.setAction("ModifyAlertStrategyRemark"); + return (ModifyAlertStrategyRemarkResponse) + this.invoke(request, ModifyAlertStrategyRemarkResponse.class); + } + /** * QueryMetricDataSet - 查询监控指标数据集 * diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClientInterface.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClientInterface.java index c794c450..6fdfdab5 100644 --- a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClientInterface.java +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/client/CloudWatchClientInterface.java @@ -21,6 +21,8 @@ import cn.ucloud.cloudwatch.models.CreateAlertStrategyTemplateResponse; import cn.ucloud.cloudwatch.models.DeleteAlertStrategyTemplateRequest; import cn.ucloud.cloudwatch.models.DeleteAlertStrategyTemplateResponse; +import cn.ucloud.cloudwatch.models.EnableAlertStrategyRequest; +import cn.ucloud.cloudwatch.models.EnableAlertStrategyResponse; import cn.ucloud.cloudwatch.models.GetProductMetricsRequest; import cn.ucloud.cloudwatch.models.GetProductMetricsResponse; import cn.ucloud.cloudwatch.models.ListAlertRecordRequest; @@ -31,6 +33,8 @@ import cn.ucloud.cloudwatch.models.ListAlertStrategyTemplateResponse; import cn.ucloud.cloudwatch.models.ListMonitorProductRequest; import cn.ucloud.cloudwatch.models.ListMonitorProductResponse; +import cn.ucloud.cloudwatch.models.ModifyAlertStrategyRemarkRequest; +import cn.ucloud.cloudwatch.models.ModifyAlertStrategyRemarkResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSetRequest; import cn.ucloud.cloudwatch.models.QueryMetricDataSetResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryRequest; @@ -75,7 +79,7 @@ public CreateAlertStrategyTemplateResponse createAlertStrategyTemplate( CreateAlertStrategyTemplateRequest request) throws UCloudException; /** - * DeleteAlertStrategyTemplate - 删除告警策略模板 + * DeleteAlertStrategyTemplate - 删除告警条件模板 * * @param request Request object * @throws UCloudException Exception @@ -83,6 +87,15 @@ public CreateAlertStrategyTemplateResponse createAlertStrategyTemplate( public DeleteAlertStrategyTemplateResponse deleteAlertStrategyTemplate( DeleteAlertStrategyTemplateRequest request) throws UCloudException; + /** + * EnableAlertStrategy - 是否启用告警策略 + * + * @param request Request object + * @throws UCloudException Exception + */ + public EnableAlertStrategyResponse enableAlertStrategy(EnableAlertStrategyRequest request) + throws UCloudException; + /** * GetProductMetrics - 获取云产品关联的指标列表 * @@ -128,6 +141,15 @@ public ListAlertStrategyTemplateResponse listAlertStrategyTemplate( public ListMonitorProductResponse listMonitorProduct(ListMonitorProductRequest request) throws UCloudException; + /** + * ModifyAlertStrategyRemark - 修改告警策略备注 + * + * @param request Request object + * @throws UCloudException Exception + */ + public ModifyAlertStrategyRemarkResponse modifyAlertStrategyRemark( + ModifyAlertStrategyRemarkRequest request) throws UCloudException; + /** * QueryMetricDataSet - 查询监控指标数据集 * diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/CreateAlertStrategyRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/CreateAlertStrategyRequest.java index 854749e4..7d36af4e 100644 --- a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/CreateAlertStrategyRequest.java +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/CreateAlertStrategyRequest.java @@ -57,10 +57,6 @@ public class CreateAlertStrategyRequest extends Request { @UCloudParam("ResourceGroupIDs") private List resourceGroupIDs; - /** */ - @UCloudParam("Tags") - private List tags; - /** 模板id.对应TemplateId=2 */ @UCloudParam("TemplateId") private Integer templateId; @@ -149,14 +145,6 @@ public void setResourceGroupIDs(List resourceGroupIDs) { this.resourceGroupIDs = resourceGroupIDs; } - public List getTags() { - return tags; - } - - public void setTags(List tags) { - this.tags = tags; - } - public Integer getTemplateId() { return templateId; } @@ -319,43 +307,4 @@ public void setSendInterval(Integer sendInterval) { this.sendInterval = sendInterval; } } - - public static class Tags extends Request { - - /** 数据点tag key */ - @UCloudParam("Key") - private String key; - - /** 数据点tag operator 包含= 不包含!= */ - @UCloudParam("Operator") - private String operator; - - /** 数据点tag value */ - @UCloudParam("Values") - private List values; - - public String getKey() { - return key; - } - - public void setKey(String key) { - this.key = key; - } - - public String getOperator() { - return operator; - } - - public void setOperator(String operator) { - this.operator = operator; - } - - public List getValues() { - return values; - } - - public void setValues(List values) { - this.values = values; - } - } } diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyRequest.java new file mode 100644 index 00000000..9e29760a --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyRequest.java @@ -0,0 +1,64 @@ +/** + * 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.cloudwatch.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class EnableAlertStrategyRequest extends Request { + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @NotEmpty + @UCloudParam("ProjectId") + private String projectId; + + /** 告警策略id */ + @NotEmpty + @UCloudParam("AlertStrategyID") + private Integer alertStrategyID; + + /** 启用状态0 停用 1 启用 */ + @NotEmpty + @UCloudParam("Status") + private Integer status; + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public Integer getAlertStrategyID() { + return alertStrategyID; + } + + public void setAlertStrategyID(Integer alertStrategyID) { + this.alertStrategyID = alertStrategyID; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyResponse.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyResponse.java new file mode 100644 index 00000000..528ac1d1 --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/EnableAlertStrategyResponse.java @@ -0,0 +1,49 @@ +/** + * 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.cloudwatch.models; + + +import cn.ucloud.common.response.Response; + +import com.google.gson.annotations.SerializedName; + +public class EnableAlertStrategyResponse extends Response { + + /** 返回数据 */ + @SerializedName("Data") + private AlertStrategyId data; + + public AlertStrategyId getData() { + return data; + } + + public void setData(AlertStrategyId data) { + this.data = data; + } + + public static class AlertStrategyId extends Response { + + /** 告警策略id */ + @SerializedName("AlertStrategyID") + private Integer alertStrategyID; + + public Integer getAlertStrategyID() { + return alertStrategyID; + } + + public void setAlertStrategyID(Integer alertStrategyID) { + this.alertStrategyID = alertStrategyID; + } + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkRequest.java new file mode 100644 index 00000000..e13b444e --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkRequest.java @@ -0,0 +1,76 @@ +/** + * 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.cloudwatch.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class ModifyAlertStrategyRemarkRequest extends Request { + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @NotEmpty + @UCloudParam("ProjectId") + private String projectId; + + /** 策略id */ + @NotEmpty + @UCloudParam("AlertStrategyID") + private Integer alertStrategyID; + + /** 策略名称 */ + @NotEmpty + @UCloudParam("Name") + private String name; + + /** 策略备注 */ + @UCloudParam("Remark") + private String remark; + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public Integer getAlertStrategyID() { + return alertStrategyID; + } + + public void setAlertStrategyID(Integer alertStrategyID) { + this.alertStrategyID = alertStrategyID; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkResponse.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkResponse.java new file mode 100644 index 00000000..38a96f7a --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/ModifyAlertStrategyRemarkResponse.java @@ -0,0 +1,49 @@ +/** + * 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.cloudwatch.models; + + +import cn.ucloud.common.response.Response; + +import com.google.gson.annotations.SerializedName; + +public class ModifyAlertStrategyRemarkResponse extends Response { + + /** 返回数据 */ + @SerializedName("Data") + private AlertStrategyId data; + + public AlertStrategyId getData() { + return data; + } + + public void setData(AlertStrategyId data) { + this.data = data; + } + + public static class AlertStrategyId extends Response { + + /** 告警策略id */ + @SerializedName("AlertStrategyID") + private Integer alertStrategyID; + + public Integer getAlertStrategyID() { + return alertStrategyID; + } + + public void setAlertStrategyID(Integer alertStrategyID) { + this.alertStrategyID = alertStrategyID; + } + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/UpdateAlertStrategyRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/UpdateAlertStrategyRequest.java index 7d9aae1c..7d154848 100644 --- a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/UpdateAlertStrategyRequest.java +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/UpdateAlertStrategyRequest.java @@ -62,10 +62,6 @@ public class UpdateAlertStrategyRequest extends Request { @UCloudParam("ResourceGroupIDs") private List resourceGroupIDs; - /** */ - @UCloudParam("Tags") - private List tags; - /** 模板id.对应ConfigMode=2 */ @UCloudParam("TemplateId") private Integer templateId; @@ -162,14 +158,6 @@ public void setResourceGroupIDs(List resourceGroupIDs) { this.resourceGroupIDs = resourceGroupIDs; } - public List getTags() { - return tags; - } - - public void setTags(List tags) { - this.tags = tags; - } - public Integer getTemplateId() { return templateId; } @@ -332,43 +320,4 @@ public void setSendInterval(Integer sendInterval) { this.sendInterval = sendInterval; } } - - public static class Tags extends Request { - - /** 数据点tag key */ - @UCloudParam("Key") - private String key; - - /** 数据点tag operator 包含= 不包含!= */ - @UCloudParam("Operator") - private String operator; - - /** 数据点tag value */ - @UCloudParam("Values") - private List values; - - public String getKey() { - return key; - } - - public void setKey(String key) { - this.key = key; - } - - public String getOperator() { - return operator; - } - - public void setOperator(String operator) { - this.operator = operator; - } - - public List getValues() { - return values; - } - - public void setValues(List values) { - this.values = values; - } - } } diff --git a/ucloud-sdk-java-common/pom.xml b/ucloud-sdk-java-common/pom.xml index 3ca79679..f6717bd2 100644 --- a/ucloud-sdk-java-common/pom.xml +++ b/ucloud-sdk-java-common/pom.xml @@ -7,12 +7,12 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-cube/pom.xml b/ucloud-sdk-java-cube/pom.xml index c7c4ebf4..7420fd2d 100644 --- a/ucloud-sdk-java-cube/pom.xml +++ b/ucloud-sdk-java-cube/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-cube - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ipsecvpn/pom.xml b/ucloud-sdk-java-ipsecvpn/pom.xml index 65f1bfcf..7d2e024b 100644 --- a/ucloud-sdk-java-ipsecvpn/pom.xml +++ b/ucloud-sdk-java-ipsecvpn/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ipsecvpn - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-label/pom.xml b/ucloud-sdk-java-label/pom.xml index 9cb59414..157197aa 100644 --- a/ucloud-sdk-java-label/pom.xml +++ b/ucloud-sdk-java-label/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-label - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-nlb/pom.xml b/ucloud-sdk-java-nlb/pom.xml index 3e25dccd..0d707b12 100644 --- a/ucloud-sdk-java-nlb/pom.xml +++ b/ucloud-sdk-java-nlb/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-nlb - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-pathx/pom.xml b/ucloud-sdk-java-pathx/pom.xml index 7f2945f4..1e50d5e5 100644 --- a/ucloud-sdk-java-pathx/pom.xml +++ b/ucloud-sdk-java-pathx/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-pathx - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-sts/pom.xml b/ucloud-sdk-java-sts/pom.xml index 03606fd7..54cc840f 100644 --- a/ucloud-sdk-java-sts/pom.xml +++ b/ucloud-sdk-java-sts/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-sts - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uaccount/pom.xml b/ucloud-sdk-java-uaccount/pom.xml index 8ce2c34e..d7983223 100644 --- a/ucloud-sdk-java-uaccount/pom.xml +++ b/ucloud-sdk-java-uaccount/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uaccount - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uai_modelverse/pom.xml b/ucloud-sdk-java-uai_modelverse/pom.xml index 5618c9fe..7b202cd6 100644 --- a/ucloud-sdk-java-uai_modelverse/pom.xml +++ b/ucloud-sdk-java-uai_modelverse/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uai_modelverse - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ubill/pom.xml b/ucloud-sdk-java-ubill/pom.xml index d5f069f2..55c00c39 100644 --- a/ucloud-sdk-java-ubill/pom.xml +++ b/ucloud-sdk-java-ubill/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ubill - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ucdn/pom.xml b/ucloud-sdk-java-ucdn/pom.xml index 131c1893..06d0406e 100644 --- a/ucloud-sdk-java-ucdn/pom.xml +++ b/ucloud-sdk-java-ucdn/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ucdn - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ucompshare/pom.xml b/ucloud-sdk-java-ucompshare/pom.xml index 9dc6075f..af18faa3 100644 --- a/ucloud-sdk-java-ucompshare/pom.xml +++ b/ucloud-sdk-java-ucompshare/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ucompshare - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udb/pom.xml b/ucloud-sdk-java-udb/pom.xml index b388fdcf..98aed692 100644 --- a/ucloud-sdk-java-udb/pom.xml +++ b/ucloud-sdk-java-udb/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udb - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udbproxy/pom.xml b/ucloud-sdk-java-udbproxy/pom.xml index b85e994a..3014a0e5 100644 --- a/ucloud-sdk-java-udbproxy/pom.xml +++ b/ucloud-sdk-java-udbproxy/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udbproxy - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udi/pom.xml b/ucloud-sdk-java-udi/pom.xml index 443633fa..9cf7123b 100644 --- a/ucloud-sdk-java-udi/pom.xml +++ b/ucloud-sdk-java-udi/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udi - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udisk/pom.xml b/ucloud-sdk-java-udisk/pom.xml index e6ccfcf5..05ed4b45 100644 --- a/ucloud-sdk-java-udisk/pom.xml +++ b/ucloud-sdk-java-udisk/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udisk - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udns/pom.xml b/ucloud-sdk-java-udns/pom.xml index e1a6e9c9..362e820e 100644 --- a/ucloud-sdk-java-udns/pom.xml +++ b/ucloud-sdk-java-udns/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udns - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-udpn/pom.xml b/ucloud-sdk-java-udpn/pom.xml index e37c82f9..5abc6abc 100644 --- a/ucloud-sdk-java-udpn/pom.xml +++ b/ucloud-sdk-java-udpn/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-udpn - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uec/pom.xml b/ucloud-sdk-java-uec/pom.xml index e7bb3f38..e9b35b51 100644 --- a/ucloud-sdk-java-uec/pom.xml +++ b/ucloud-sdk-java-uec/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uec - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uewaf/pom.xml b/ucloud-sdk-java-uewaf/pom.xml index 6c99dd0c..ee802b53 100644 --- a/ucloud-sdk-java-uewaf/pom.xml +++ b/ucloud-sdk-java-uewaf/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uewaf - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ufile/pom.xml b/ucloud-sdk-java-ufile/pom.xml index 2f65aec6..3d24976d 100644 --- a/ucloud-sdk-java-ufile/pom.xml +++ b/ucloud-sdk-java-ufile/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ufile - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ufs/pom.xml b/ucloud-sdk-java-ufs/pom.xml index d67f70ad..9065dcaa 100644 --- a/ucloud-sdk-java-ufs/pom.xml +++ b/ucloud-sdk-java-ufs/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ufs - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uhost/pom.xml b/ucloud-sdk-java-uhost/pom.xml index 413c5da4..39468a6d 100644 --- a/ucloud-sdk-java-uhost/pom.xml +++ b/ucloud-sdk-java-uhost/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uhost - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uk8s/pom.xml b/ucloud-sdk-java-uk8s/pom.xml index c0bdf40c..f8ca9301 100644 --- a/ucloud-sdk-java-uk8s/pom.xml +++ b/ucloud-sdk-java-uk8s/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uk8s - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ulb/pom.xml b/ucloud-sdk-java-ulb/pom.xml index 712a7966..26679b35 100644 --- a/ucloud-sdk-java-ulb/pom.xml +++ b/ucloud-sdk-java-ulb/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ulb - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-ulog/pom.xml b/ucloud-sdk-java-ulog/pom.xml index 1b27af45..ab9c2d40 100644 --- a/ucloud-sdk-java-ulog/pom.xml +++ b/ucloud-sdk-java-ulog/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-ulog - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml index c144d49b..8dd97257 100644 --- a/ucloud-sdk-java-umem/pom.xml +++ b/ucloud-sdk-java-umem/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-umem - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-umon/pom.xml b/ucloud-sdk-java-umon/pom.xml index 92b2ee29..c36c7db3 100644 --- a/ucloud-sdk-java-umon/pom.xml +++ b/ucloud-sdk-java-umon/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-umon - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-umongodb/pom.xml b/ucloud-sdk-java-umongodb/pom.xml index c4657e15..edbc393d 100644 --- a/ucloud-sdk-java-umongodb/pom.xml +++ b/ucloud-sdk-java-umongodb/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-umongodb - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml index 454c7c54..cc5164f1 100644 --- a/ucloud-sdk-java-unet/pom.xml +++ b/ucloud-sdk-java-unet/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-unet - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml index 5dc063d1..9acfdbdb 100644 --- a/ucloud-sdk-java-upgsql/pom.xml +++ b/ucloud-sdk-java-upgsql/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-upgsql - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml index 1560b2b3..ce7b804c 100644 --- a/ucloud-sdk-java-uphone/pom.xml +++ b/ucloud-sdk-java-uphone/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uphone - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml index 9557812f..a42cf1ac 100644 --- a/ucloud-sdk-java-uphost/pom.xml +++ b/ucloud-sdk-java-uphost/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uphost - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml index f4a77e2b..85ce291a 100644 --- a/ucloud-sdk-java-uslk/pom.xml +++ b/ucloud-sdk-java-uslk/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uslk - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml index b23e59fa..cbd4af72 100644 --- a/ucloud-sdk-java-usms/pom.xml +++ b/ucloud-sdk-java-usms/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-usms - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml index 2e116e63..8506b555 100644 --- a/ucloud-sdk-java-usnap/pom.xml +++ b/ucloud-sdk-java-usnap/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-usnap - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml index 02965648..84cc0380 100644 --- a/ucloud-sdk-java-uvms/pom.xml +++ b/ucloud-sdk-java-uvms/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-uvms - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml index 2046f029..246b31e9 100644 --- a/ucloud-sdk-java-vpc/pom.xml +++ b/ucloud-sdk-java-vpc/pom.xml @@ -5,18 +5,18 @@ ucloud-sdk-java cn.ucloud - 1.2.45-release + 1.2.46-release 4.0.0 ucloud-sdk-java-vpc - 1.2.45-release + 1.2.46-release cn.ucloud ucloud-sdk-java-common - 1.2.45-release + 1.2.46-release