diff --git a/VERSION b/VERSION index 19887fbb..c308ea30 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.106-release +1.2.107-release diff --git a/examples/generic/pom.xml b/examples/generic/pom.xml index a591f623..8972d1a1 100644 --- a/examples/generic/pom.xml +++ b/examples/generic/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 @@ -19,7 +19,7 @@ cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/examples/uhost/pom.xml b/examples/uhost/pom.xml index adcf6ce0..610e4927 100644 --- a/examples/uhost/pom.xml +++ b/examples/uhost/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 @@ -19,7 +19,7 @@ cn.ucloud ucloud-sdk-java-uhost - 1.2.106-release + 1.2.107-release diff --git a/pom.xml b/pom.xml index 9289d55f..b8148471 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ cn.ucloud ucloud-sdk-java pom - 1.2.106-release + 1.2.107-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 fc682b2f..0fdf2392 100644 --- a/ucloud-sdk-java-cloudwatch/pom.xml +++ b/ucloud-sdk-java-cloudwatch/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-cloudwatch ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-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 55c665ea..b57f9dfe 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 @@ -25,6 +25,8 @@ import cn.ucloud.cloudwatch.models.EnableAlertStrategyResponse; import cn.ucloud.cloudwatch.models.GetMetricDataAggregationMethodRequest; import cn.ucloud.cloudwatch.models.GetMetricDataAggregationMethodResponse; +import cn.ucloud.cloudwatch.models.GetProductHighPrecisionMetricsRequest; +import cn.ucloud.cloudwatch.models.GetProductHighPrecisionMetricsResponse; import cn.ucloud.cloudwatch.models.GetProductMetricsRequest; import cn.ucloud.cloudwatch.models.GetProductMetricsResponse; import cn.ucloud.cloudwatch.models.ListAlertRecordRequest; @@ -41,6 +43,8 @@ import cn.ucloud.cloudwatch.models.QueryMetricDataSetResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryRequest; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryResponse; +import cn.ucloud.cloudwatch.models.QueryMetricDenseDataRequest; +import cn.ucloud.cloudwatch.models.QueryMetricDenseDataResponse; import cn.ucloud.cloudwatch.models.UnBindAlertStrategyRequest; import cn.ucloud.cloudwatch.models.UnBindAlertStrategyResponse; import cn.ucloud.cloudwatch.models.UpdateAlertStrategyRequest; @@ -135,6 +139,19 @@ public GetMetricDataAggregationMethodResponse getMetricDataAggregationMethod( this.invoke(request, GetMetricDataAggregationMethodResponse.class); } + /** + * GetProductHighPrecisionMetrics - 获取云产品关联的高精度指标列表 + * + * @param request Request object + * @throws UCloudException Exception + */ + public GetProductHighPrecisionMetricsResponse getProductHighPrecisionMetrics( + GetProductHighPrecisionMetricsRequest request) throws UCloudException { + request.setAction("GetProductHighPrecisionMetrics"); + return (GetProductHighPrecisionMetricsResponse) + this.invoke(request, GetProductHighPrecisionMetricsResponse.class); + } + /** * GetProductMetrics - 获取云产品关联的指标列表 * @@ -234,6 +251,19 @@ public QueryMetricDataSummaryResponse queryMetricDataSummary( this.invoke(request, QueryMetricDataSummaryResponse.class); } + /** + * QueryMetricDenseData - 获取高精度指标样本数据 + * + * @param request Request object + * @throws UCloudException Exception + */ + public QueryMetricDenseDataResponse queryMetricDenseData(QueryMetricDenseDataRequest request) + throws UCloudException { + request.setAction("QueryMetricDenseData"); + return (QueryMetricDenseDataResponse) + this.invoke(request, QueryMetricDenseDataResponse.class); + } + /** * UnBindAlertStrategy - 解绑告警策略 * 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 0f9ac2d1..269aefb1 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 @@ -25,6 +25,8 @@ import cn.ucloud.cloudwatch.models.EnableAlertStrategyResponse; import cn.ucloud.cloudwatch.models.GetMetricDataAggregationMethodRequest; import cn.ucloud.cloudwatch.models.GetMetricDataAggregationMethodResponse; +import cn.ucloud.cloudwatch.models.GetProductHighPrecisionMetricsRequest; +import cn.ucloud.cloudwatch.models.GetProductHighPrecisionMetricsResponse; import cn.ucloud.cloudwatch.models.GetProductMetricsRequest; import cn.ucloud.cloudwatch.models.GetProductMetricsResponse; import cn.ucloud.cloudwatch.models.ListAlertRecordRequest; @@ -41,6 +43,8 @@ import cn.ucloud.cloudwatch.models.QueryMetricDataSetResponse; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryRequest; import cn.ucloud.cloudwatch.models.QueryMetricDataSummaryResponse; +import cn.ucloud.cloudwatch.models.QueryMetricDenseDataRequest; +import cn.ucloud.cloudwatch.models.QueryMetricDenseDataResponse; import cn.ucloud.cloudwatch.models.UnBindAlertStrategyRequest; import cn.ucloud.cloudwatch.models.UnBindAlertStrategyResponse; import cn.ucloud.cloudwatch.models.UpdateAlertStrategyRequest; @@ -107,6 +111,15 @@ public EnableAlertStrategyResponse enableAlertStrategy(EnableAlertStrategyReques public GetMetricDataAggregationMethodResponse getMetricDataAggregationMethod( GetMetricDataAggregationMethodRequest request) throws UCloudException; + /** + * GetProductHighPrecisionMetrics - 获取云产品关联的高精度指标列表 + * + * @param request Request object + * @throws UCloudException Exception + */ + public GetProductHighPrecisionMetricsResponse getProductHighPrecisionMetrics( + GetProductHighPrecisionMetricsRequest request) throws UCloudException; + /** * GetProductMetrics - 获取云产品关联的指标列表 * @@ -179,6 +192,15 @@ public QueryMetricDataSetResponse queryMetricDataSet(QueryMetricDataSetRequest r public QueryMetricDataSummaryResponse queryMetricDataSummary( QueryMetricDataSummaryRequest request) throws UCloudException; + /** + * QueryMetricDenseData - 获取高精度指标样本数据 + * + * @param request Request object + * @throws UCloudException Exception + */ + public QueryMetricDenseDataResponse queryMetricDenseData(QueryMetricDenseDataRequest request) + throws UCloudException; + /** * UnBindAlertStrategy - 解绑告警策略 * diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsRequest.java new file mode 100644 index 00000000..979b95b0 --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsRequest.java @@ -0,0 +1,35 @@ +/** + * 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 GetProductHighPrecisionMetricsRequest extends Request { + + /** 产品唯一标识,参见 [产品概览](https://docs.ucloud.cn/cloudwatch/metric/intro) */ + @NotEmpty + @UCloudParam("ProductKey") + private String productKey; + + public String getProductKey() { + return productKey; + } + + public void setProductKey(String productKey) { + this.productKey = productKey; + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsResponse.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsResponse.java new file mode 100644 index 00000000..5f4bfd8e --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/GetProductHighPrecisionMetricsResponse.java @@ -0,0 +1,482 @@ +/** + * 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; + +import java.util.List; + +public class GetProductHighPrecisionMetricsResponse extends Response { + + /** 返回数据 */ + @SerializedName("Data") + private GetProductMetricsRespData data; + + public GetProductMetricsRespData getData() { + return data; + } + + public void setData(GetProductMetricsRespData data) { + this.data = data; + } + + public static class ConversionRule extends Response { + + /** 来源 */ + @SerializedName("From") + private String from; + + /** 目标 */ + @SerializedName("To") + private String to; + + /** 转换因子 */ + @SerializedName("ConversionFactor") + private Integer conversionFactor; + + public String getFrom() { + return from; + } + + public void setFrom(String from) { + this.from = from; + } + + public String getTo() { + return to; + } + + public void setTo(String to) { + this.to = to; + } + + public Integer getConversionFactor() { + return conversionFactor; + } + + public void setConversionFactor(Integer conversionFactor) { + this.conversionFactor = conversionFactor; + } + } + + public static class GetProductMetricsRespData extends Response { + + /** 查询结果总数 */ + @SerializedName("Total") + private Integer total; + + /** 指标列表 */ + @SerializedName("List") + private List list; + + /** 单位转换信息 */ + @SerializedName("UnitConfigs") + private List unitConfigs; + + public Integer getTotal() { + return total; + } + + public void setTotal(Integer total) { + this.total = total; + } + + public List getList() { + return list; + } + + public void setList(List list) { + this.list = list; + } + + public List getUnitConfigs() { + return unitConfigs; + } + + public void setUnitConfigs(List unitConfigs) { + this.unitConfigs = unitConfigs; + } + } + + public static class Metirc extends Response { + + /** 云产品ID */ + @SerializedName("ProductType") + private Integer productType; + + /** 单位ID */ + @SerializedName("UnitID") + private Integer unitID; + + /** 指标ID */ + @SerializedName("MetricID") + private Integer metricID; + + /** 指标唯一标识 (uhost_cpu_usage) */ + @SerializedName("Metric") + private String metric; + + /** 指标英文名称 */ + @SerializedName("MetricEnName") + private String metricEnName; + + /** 指标中文名称 */ + @SerializedName("MetricChName") + private String metricChName; + + /** 指标英文描述 */ + @SerializedName("MetricEnDesc") + private String metricEnDesc; + + /** 指标中文描述 */ + @SerializedName("MetricChDesc") + private String metricChDesc; + + /** 指标分类/指标组 */ + @SerializedName("MetricGroup") + private String metricGroup; + + /** 上报频率毫秒 */ + @SerializedName("FrequencyMs") + private Integer frequencyMs; + + /** 单位 */ + @SerializedName("Unit") + private MetricUnit unit; + + /** 创建者 */ + @SerializedName("CreatedBy") + private String createdBy; + + /** 创建时间 */ + @SerializedName("CreatedAt") + private String createdAt; + + /** 修改者 */ + @SerializedName("UpdatedBy") + private String updatedBy; + + /** 修改时间 */ + @SerializedName("UpdatedAt") + private String updatedAt; + + public Integer getProductType() { + return productType; + } + + public void setProductType(Integer productType) { + this.productType = productType; + } + + public Integer getUnitID() { + return unitID; + } + + public void setUnitID(Integer unitID) { + this.unitID = unitID; + } + + public Integer getMetricID() { + return metricID; + } + + public void setMetricID(Integer metricID) { + this.metricID = metricID; + } + + public String getMetric() { + return metric; + } + + public void setMetric(String metric) { + this.metric = metric; + } + + public String getMetricEnName() { + return metricEnName; + } + + public void setMetricEnName(String metricEnName) { + this.metricEnName = metricEnName; + } + + public String getMetricChName() { + return metricChName; + } + + public void setMetricChName(String metricChName) { + this.metricChName = metricChName; + } + + public String getMetricEnDesc() { + return metricEnDesc; + } + + public void setMetricEnDesc(String metricEnDesc) { + this.metricEnDesc = metricEnDesc; + } + + public String getMetricChDesc() { + return metricChDesc; + } + + public void setMetricChDesc(String metricChDesc) { + this.metricChDesc = metricChDesc; + } + + public String getMetricGroup() { + return metricGroup; + } + + public void setMetricGroup(String metricGroup) { + this.metricGroup = metricGroup; + } + + public Integer getFrequencyMs() { + return frequencyMs; + } + + public void setFrequencyMs(Integer frequencyMs) { + this.frequencyMs = frequencyMs; + } + + public MetricUnit getUnit() { + return unit; + } + + public void setUnit(MetricUnit unit) { + this.unit = unit; + } + + public String getCreatedBy() { + return createdBy; + } + + public void setCreatedBy(String createdBy) { + this.createdBy = createdBy; + } + + public String getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(String createdAt) { + this.createdAt = createdAt; + } + + public String getUpdatedBy() { + return updatedBy; + } + + public void setUpdatedBy(String updatedBy) { + this.updatedBy = updatedBy; + } + + public String getUpdatedAt() { + return updatedAt; + } + + public void setUpdatedAt(String updatedAt) { + this.updatedAt = updatedAt; + } + } + + public static class MetricUnit extends Response { + + /** 单位id */ + @SerializedName("UnitID") + private Integer unitID; + + /** GroupId */ + @SerializedName("GroupId") + private Integer groupId; + + /** 单位英文名称 */ + @SerializedName("UnitEnName") + private String unitEnName; + + /** 单位中文名称 */ + @SerializedName("UnitChName") + private String unitChName; + + /** 单位描述 */ + @SerializedName("UnitDesc") + private String unitDesc; + + /** 转换因子 */ + @SerializedName("ConversionFactor") + private Integer conversionFactor; + + /** 创建人 */ + @SerializedName("CreatedBy") + private String createdBy; + + /** 修改人 */ + @SerializedName("UpdatedBy") + private String updatedBy; + + /** 创建时间 */ + @SerializedName("CreatedAt") + private String createdAt; + + /** 修改时间 */ + @SerializedName("UpdatedAt") + private String updatedAt; + + /** 删除时间 */ + @SerializedName("DeletedAt") + private Integer deletedAt; + + public Integer getUnitID() { + return unitID; + } + + public void setUnitID(Integer unitID) { + this.unitID = unitID; + } + + public Integer getGroupId() { + return groupId; + } + + public void setGroupId(Integer groupId) { + this.groupId = groupId; + } + + public String getUnitEnName() { + return unitEnName; + } + + public void setUnitEnName(String unitEnName) { + this.unitEnName = unitEnName; + } + + public String getUnitChName() { + return unitChName; + } + + public void setUnitChName(String unitChName) { + this.unitChName = unitChName; + } + + public String getUnitDesc() { + return unitDesc; + } + + public void setUnitDesc(String unitDesc) { + this.unitDesc = unitDesc; + } + + public Integer getConversionFactor() { + return conversionFactor; + } + + public void setConversionFactor(Integer conversionFactor) { + this.conversionFactor = conversionFactor; + } + + public String getCreatedBy() { + return createdBy; + } + + public void setCreatedBy(String createdBy) { + this.createdBy = createdBy; + } + + public String getUpdatedBy() { + return updatedBy; + } + + public void setUpdatedBy(String updatedBy) { + this.updatedBy = updatedBy; + } + + public String getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(String createdAt) { + this.createdAt = createdAt; + } + + public String getUpdatedAt() { + return updatedAt; + } + + public void setUpdatedAt(String updatedAt) { + this.updatedAt = updatedAt; + } + + public Integer getDeletedAt() { + return deletedAt; + } + + public void setDeletedAt(Integer deletedAt) { + this.deletedAt = deletedAt; + } + } + + public static class MetricUnitConfig extends Response { + + /** 指标中文名列表 */ + @SerializedName("UnitCnNames") + private List unitCnNames; + + /** 指标英文名列表 */ + @SerializedName("UnitEnNames") + private List unitEnNames; + + /** 转换因子 */ + @SerializedName("ConversionFactor") + private Integer conversionFactor; + + /** 转换规则 */ + @SerializedName("ConversionRules") + private List conversionRules; + + public List getUnitCnNames() { + return unitCnNames; + } + + public void setUnitCnNames(List unitCnNames) { + this.unitCnNames = unitCnNames; + } + + public List getUnitEnNames() { + return unitEnNames; + } + + public void setUnitEnNames(List unitEnNames) { + this.unitEnNames = unitEnNames; + } + + public Integer getConversionFactor() { + return conversionFactor; + } + + public void setConversionFactor(Integer conversionFactor) { + this.conversionFactor = conversionFactor; + } + + public List getConversionRules() { + return conversionRules; + } + + public void setConversionRules(List conversionRules) { + this.conversionRules = conversionRules; + } + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataRequest.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataRequest.java new file mode 100644 index 00000000..8fb61493 --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataRequest.java @@ -0,0 +1,156 @@ +/** + * 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; + +import java.util.List; + +public class QueryMetricDenseDataRequest extends Request { + + /** 地域。 全局产品可不传,其他类型必传。 */ + @UCloudParam("Region") + private String region; + + /** 项目ID */ + @UCloudParam("ProjectId") + private String projectId; + + /** 资源类型 */ + @NotEmpty + @UCloudParam("ProductKey") + private String productKey; + + /** 开始时间戳 */ + @NotEmpty + @UCloudParam("StartTime") + private Integer startTime; + + /** 截止时间戳 */ + @NotEmpty + @UCloudParam("EndTime") + private Integer endTime; + + /** */ + @UCloudParam("MetricInfos") + private List metricInfos; + + 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 getProductKey() { + return productKey; + } + + public void setProductKey(String productKey) { + this.productKey = productKey; + } + + public Integer getStartTime() { + return startTime; + } + + public void setStartTime(Integer startTime) { + this.startTime = startTime; + } + + public Integer getEndTime() { + return endTime; + } + + public void setEndTime(Integer endTime) { + this.endTime = endTime; + } + + public List getMetricInfos() { + return metricInfos; + } + + public void setMetricInfos(List metricInfos) { + this.metricInfos = metricInfos; + } + + public static class MetricInfos extends Request { + + /** 指标名 */ + @UCloudParam("Metric") + private String metric; + + /** 资源id */ + @UCloudParam("ResourceId") + private String resourceId; + + /** */ + @UCloudParam("Tags") + private MetricInfosTags tags; + + public String getMetric() { + return metric; + } + + public void setMetric(String metric) { + this.metric = metric; + } + + public String getResourceId() { + return resourceId; + } + + public void setResourceId(String resourceId) { + this.resourceId = resourceId; + } + + public MetricInfosTags getTags() { + return tags; + } + + public void setTags(MetricInfosTags tags) { + this.tags = tags; + } + } + + public static class MetricInfosTags extends Request { + + /** + * AnyKey:代表任意一个用户自定义的key。 Tags是一个用户自定义对象map,是要查询指标的tag的key和value。 + * 用户自定义的Tags对象里的key和value,它们分别是要查询的tag的key和value。如: "Tags":{ "tag1":"value1", + * "tag2":"value2", "tag3":"value3" } + */ + @UCloudParam("AnyKey") + private String anyKey; + + public String getAnyKey() { + return anyKey; + } + + public void setAnyKey(String anyKey) { + this.anyKey = anyKey; + } + } +} diff --git a/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataResponse.java b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataResponse.java new file mode 100644 index 00000000..36aed5c8 --- /dev/null +++ b/ucloud-sdk-java-cloudwatch/src/main/java/cn/ucloud/cloudwatch/models/QueryMetricDenseDataResponse.java @@ -0,0 +1,257 @@ +/** + * 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; + +import java.util.List; + +public class QueryMetricDenseDataResponse extends Response { + + /** 返回高精度指标监控数据 */ + @SerializedName("Data") + private QueryMetricDataResp data; + + public QueryMetricDataResp getData() { + return data; + } + + public void setData(QueryMetricDataResp data) { + this.data = data; + } + + public static class MetricResult extends Response { + + /** 资源的短id */ + @SerializedName("ResourceId") + private String resourceId; + + /** 资源名称 */ + @SerializedName("ResourceName") + private String resourceName; + + /** 资源标签列表。每项为 TagListItem:Tag(标签名)和 TagValue(标签值)。 */ + @SerializedName("TagList") + private List tagList; + + /** 指标数据点列表,元素为 MetricPoint */ + @SerializedName("Values") + private List values; + + public String getResourceId() { + return resourceId; + } + + public void setResourceId(String resourceId) { + this.resourceId = resourceId; + } + + public String getResourceName() { + return resourceName; + } + + public void setResourceName(String resourceName) { + this.resourceName = resourceName; + } + + public List getTagList() { + return tagList; + } + + public void setTagList(List tagList) { + this.tagList = tagList; + } + + public List getValues() { + return values; + } + + public void setValues(List values) { + this.values = values; + } + } + + public static class MetricSample extends Response { + + /** 时间戳 */ + @SerializedName("Timestamp") + private Integer timestamp; + + /** 样本值 */ + @SerializedName("Value") + private Double value; + + public Integer getTimestamp() { + return timestamp; + } + + public void setTimestamp(Integer timestamp) { + this.timestamp = timestamp; + } + + public Double getValue() { + return value; + } + + public void setValue(Double value) { + this.value = value; + } + } + + public static class QueryMetricDataResp extends Response { + + /** 无效或无权限资源的 ID 列表 */ + @SerializedName("InvalidResourceIds") + private List invalidResourceIds; + + /** 查询的结果集 */ + @SerializedName("List") + private List list; + + public List getInvalidResourceIds() { + return invalidResourceIds; + } + + public void setInvalidResourceIds(List invalidResourceIds) { + this.invalidResourceIds = invalidResourceIds; + } + + public List getList() { + return list; + } + + public void setList(List list) { + this.list = list; + } + } + + public static class QueryMetricDataRespItem extends Response { + + /** 指标名 */ + @SerializedName("Metric") + private String metric; + + /** 该指标查询的处理状态码 */ + @SerializedName("ErrCode") + private Integer errCode; + + /** 该指标查询的状态说明 */ + @SerializedName("ErrMsg") + private String errMsg; + + /** 标签列表。每项为 TagEntry:TagName(标签名)和 KeyList(该标签的全部候选值)。 */ + @SerializedName("TagEntries") + private List tagEntries; + + /** 查询到的时间序列列表 */ + @SerializedName("Results") + private List results; + + public String getMetric() { + return metric; + } + + public void setMetric(String metric) { + this.metric = metric; + } + + public Integer getErrCode() { + return errCode; + } + + public void setErrCode(Integer errCode) { + this.errCode = errCode; + } + + public String getErrMsg() { + return errMsg; + } + + public void setErrMsg(String errMsg) { + this.errMsg = errMsg; + } + + public List getTagEntries() { + return tagEntries; + } + + public void setTagEntries(List tagEntries) { + this.tagEntries = tagEntries; + } + + public List getResults() { + return results; + } + + public void setResults(List results) { + this.results = results; + } + } + + public static class TagEntry extends Response { + + /** 标签名称 */ + @SerializedName("TagName") + private String tagName; + + /** 标签候选值列表 */ + @SerializedName("KeyList") + private List keyList; + + public String getTagName() { + return tagName; + } + + public void setTagName(String tagName) { + this.tagName = tagName; + } + + public List getKeyList() { + return keyList; + } + + public void setKeyList(List keyList) { + this.keyList = keyList; + } + } + + public static class TagListItem extends Response { + + /** 标签名 */ + @SerializedName("Tag") + private String tag; + + /** 标签值 */ + @SerializedName("TagValue") + private String tagValue; + + public String getTag() { + return tag; + } + + public void setTag(String tag) { + this.tag = tag; + } + + public String getTagValue() { + return tagValue; + } + + public void setTagValue(String tagValue) { + this.tagValue = tagValue; + } + } +} diff --git a/ucloud-sdk-java-common/pom.xml b/ucloud-sdk-java-common/pom.xml index 4c6352ab..707756bd 100644 --- a/ucloud-sdk-java-common/pom.xml +++ b/ucloud-sdk-java-common/pom.xml @@ -7,13 +7,13 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-common ucloud-sdk-java - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-cube/pom.xml b/ucloud-sdk-java-cube/pom.xml index 7ed7a42d..a23017d5 100644 --- a/ucloud-sdk-java-cube/pom.xml +++ b/ucloud-sdk-java-cube/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-cube ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ipsecvpn/pom.xml b/ucloud-sdk-java-ipsecvpn/pom.xml index 91b51505..86559952 100644 --- a/ucloud-sdk-java-ipsecvpn/pom.xml +++ b/ucloud-sdk-java-ipsecvpn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ipsecvpn ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-label/pom.xml b/ucloud-sdk-java-label/pom.xml index 7e8e1d00..c6525795 100644 --- a/ucloud-sdk-java-label/pom.xml +++ b/ucloud-sdk-java-label/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-label ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-nlb/pom.xml b/ucloud-sdk-java-nlb/pom.xml index 9a029e57..ed8ebe17 100644 --- a/ucloud-sdk-java-nlb/pom.xml +++ b/ucloud-sdk-java-nlb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-nlb ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-pathx/pom.xml b/ucloud-sdk-java-pathx/pom.xml index 1f01e955..97b4b4bb 100644 --- a/ucloud-sdk-java-pathx/pom.xml +++ b/ucloud-sdk-java-pathx/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-pathx ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-sandbox/pom.xml b/ucloud-sdk-java-sandbox/pom.xml index 0c5a6338..ef24b7a3 100644 --- a/ucloud-sdk-java-sandbox/pom.xml +++ b/ucloud-sdk-java-sandbox/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-sandbox ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ses/pom.xml b/ucloud-sdk-java-ses/pom.xml index e5f8c78a..3ff5f5b9 100644 --- a/ucloud-sdk-java-ses/pom.xml +++ b/ucloud-sdk-java-ses/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ses ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-sts/pom.xml b/ucloud-sdk-java-sts/pom.xml index 868c0256..5864ed21 100644 --- a/ucloud-sdk-java-sts/pom.xml +++ b/ucloud-sdk-java-sts/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-sts ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-tidb/pom.xml b/ucloud-sdk-java-tidb/pom.xml index 039ff92b..72f5de58 100644 --- a/ucloud-sdk-java-tidb/pom.xml +++ b/ucloud-sdk-java-tidb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-tidb ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uaccount/pom.xml b/ucloud-sdk-java-uaccount/pom.xml index d82d363f..0be37f82 100644 --- a/ucloud-sdk-java-uaccount/pom.xml +++ b/ucloud-sdk-java-uaccount/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uaccount ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uai_modelverse/pom.xml b/ucloud-sdk-java-uai_modelverse/pom.xml index 848a9b18..57ed96bb 100644 --- a/ucloud-sdk-java-uai_modelverse/pom.xml +++ b/ucloud-sdk-java-uai_modelverse/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uai_modelverse ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uas/pom.xml b/ucloud-sdk-java-uas/pom.xml index d90724de..b0b56796 100644 --- a/ucloud-sdk-java-uas/pom.xml +++ b/ucloud-sdk-java-uas/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uas ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ubill/pom.xml b/ucloud-sdk-java-ubill/pom.xml index 0f3f403f..90c65d29 100644 --- a/ucloud-sdk-java-ubill/pom.xml +++ b/ucloud-sdk-java-ubill/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ubill ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ucdn/pom.xml b/ucloud-sdk-java-ucdn/pom.xml index 79683b16..c7119eac 100644 --- a/ucloud-sdk-java-ucdn/pom.xml +++ b/ucloud-sdk-java-ucdn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ucdn ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uclickhouse/pom.xml b/ucloud-sdk-java-uclickhouse/pom.xml index be541034..0a43d87e 100644 --- a/ucloud-sdk-java-uclickhouse/pom.xml +++ b/ucloud-sdk-java-uclickhouse/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uclickhouse ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ucompshare/pom.xml b/ucloud-sdk-java-ucompshare/pom.xml index 17d6815d..3b6ff301 100644 --- a/ucloud-sdk-java-ucompshare/pom.xml +++ b/ucloud-sdk-java-ucompshare/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ucompshare ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udb/pom.xml b/ucloud-sdk-java-udb/pom.xml index fa236f40..648bb0a1 100644 --- a/ucloud-sdk-java-udb/pom.xml +++ b/ucloud-sdk-java-udb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udb ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udbproxy/pom.xml b/ucloud-sdk-java-udbproxy/pom.xml index 8332ecf1..bc0b8f28 100644 --- a/ucloud-sdk-java-udbproxy/pom.xml +++ b/ucloud-sdk-java-udbproxy/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udbproxy ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udi/pom.xml b/ucloud-sdk-java-udi/pom.xml index eb3a5eda..f5b126ce 100644 --- a/ucloud-sdk-java-udi/pom.xml +++ b/ucloud-sdk-java-udi/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udi ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udisk/pom.xml b/ucloud-sdk-java-udisk/pom.xml index adae335f..4e409db6 100644 --- a/ucloud-sdk-java-udisk/pom.xml +++ b/ucloud-sdk-java-udisk/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udisk ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udns/pom.xml b/ucloud-sdk-java-udns/pom.xml index c2545ebb..1c0148c6 100644 --- a/ucloud-sdk-java-udns/pom.xml +++ b/ucloud-sdk-java-udns/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udns ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-udpn/pom.xml b/ucloud-sdk-java-udpn/pom.xml index c7537040..8264aef0 100644 --- a/ucloud-sdk-java-udpn/pom.xml +++ b/ucloud-sdk-java-udpn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-udpn ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uec/pom.xml b/ucloud-sdk-java-uec/pom.xml index e0696fee..3f4d9392 100644 --- a/ucloud-sdk-java-uec/pom.xml +++ b/ucloud-sdk-java-uec/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uec ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ues/pom.xml b/ucloud-sdk-java-ues/pom.xml index c656147d..e92f53ee 100644 --- a/ucloud-sdk-java-ues/pom.xml +++ b/ucloud-sdk-java-ues/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ues ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uewaf/pom.xml b/ucloud-sdk-java-uewaf/pom.xml index b972bda1..4f6c2e39 100644 --- a/ucloud-sdk-java-uewaf/pom.xml +++ b/ucloud-sdk-java-uewaf/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uewaf ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ufile/pom.xml b/ucloud-sdk-java-ufile/pom.xml index 160a381f..aa8b4c7a 100644 --- a/ucloud-sdk-java-ufile/pom.xml +++ b/ucloud-sdk-java-ufile/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ufile ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ufs/pom.xml b/ucloud-sdk-java-ufs/pom.xml index cc97a20e..5e7b7d9b 100644 --- a/ucloud-sdk-java-ufs/pom.xml +++ b/ucloud-sdk-java-ufs/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ufs ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uhadoop/pom.xml b/ucloud-sdk-java-uhadoop/pom.xml index d883e618..b334369d 100644 --- a/ucloud-sdk-java-uhadoop/pom.xml +++ b/ucloud-sdk-java-uhadoop/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uhadoop ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uhids/pom.xml b/ucloud-sdk-java-uhids/pom.xml index fa7bd0dd..efcc182d 100644 --- a/ucloud-sdk-java-uhids/pom.xml +++ b/ucloud-sdk-java-uhids/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uhids ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uhost/pom.xml b/ucloud-sdk-java-uhost/pom.xml index cbf677bf..6bdb26a4 100644 --- a/ucloud-sdk-java-uhost/pom.xml +++ b/ucloud-sdk-java-uhost/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uhost ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uk8s/pom.xml b/ucloud-sdk-java-uk8s/pom.xml index d6449fa1..3d38433f 100644 --- a/ucloud-sdk-java-uk8s/pom.xml +++ b/ucloud-sdk-java-uk8s/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uk8s ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ukafka/pom.xml b/ucloud-sdk-java-ukafka/pom.xml index e6aa6f67..71fb266b 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ukafka ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ukms/pom.xml b/ucloud-sdk-java-ukms/pom.xml index 7b0a5dcc..c02827c1 100644 --- a/ucloud-sdk-java-ukms/pom.xml +++ b/ucloud-sdk-java-ukms/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ukms ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ulb/pom.xml b/ucloud-sdk-java-ulb/pom.xml index 810b2895..18f49ad8 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ulb ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ulighthost/pom.xml b/ucloud-sdk-java-ulighthost/pom.xml index e1ba4449..b87cd9e4 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ulighthost ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ulog/pom.xml b/ucloud-sdk-java-ulog/pom.xml index 0fbf71fe..16c08fb8 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ulog ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-ulogservice/pom.xml b/ucloud-sdk-java-ulogservice/pom.xml index 5b99d793..fc596d38 100644 --- a/ucloud-sdk-java-ulogservice/pom.xml +++ b/ucloud-sdk-java-ulogservice/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-ulogservice ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml index 4bee6889..5c21a800 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-umem ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-umon/pom.xml b/ucloud-sdk-java-umon/pom.xml index 1f9bbe1c..1eb54298 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-umon ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-umongodb/pom.xml b/ucloud-sdk-java-umongodb/pom.xml index c7f7d276..1c98ff82 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-umongodb ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml index 97276ed1..a694818b 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-unet ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-upfs/pom.xml b/ucloud-sdk-java-upfs/pom.xml index 95be87e4..42314bc2 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-upfs ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml index b54d4ca1..e6d7c732 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-upgsql ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml index 9418a63f..67de3ee8 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uphone ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml index a2d5ba7b..8c5b6d3e 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uphost ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml index cfa27000..4c4a70d7 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uslk ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml index 778b51ed..e630487e 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-usms ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml index 0891de3a..f18ac5b4 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-usnap ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml index 8ff2e147..b65c8cb5 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uvms ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-uwsc/pom.xml b/ucloud-sdk-java-uwsc/pom.xml index 7484303e..c9471241 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-uwsc ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml index 2aa923a5..a895d60e 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.106-release + 1.2.107-release 4.0.0 ucloud-sdk-java-vpc ucloud-sdk-java - 1.2.106-release + 1.2.107-release cn.ucloud ucloud-sdk-java-common - 1.2.106-release + 1.2.107-release