Skip to content

Commit

Permalink
release 3.1.1213
Browse files Browse the repository at this point in the history
  • Loading branch information
tencentcloudapi committed Mar 7, 2025
1 parent 0c92688 commit 0dd038f
Show file tree
Hide file tree
Showing 249 changed files with 5,418 additions and 6,054 deletions.
487 changes: 487 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

968 changes: 887 additions & 81 deletions SERVICE_CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.tencentcloudapi</groupId>
<artifactId>tencentcloud-sdk-java</artifactId>
<version>3.1.1212</version>
<version>3.1.1213</version>
<packaging>jar</packaging>
<name>tencentcloud-sdk-java</name>
<url>https://cloud.tencent.com/</url>
Expand Down
72 changes: 36 additions & 36 deletions products.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public class ReplaceBackgroundRequest extends AbstractModel {

/**
* 商品图中的商品主体名称。
最多支持50个 utf-8 字符,支持中、英文。
建议说明商品主体,否则影响生成效果。
*/
@SerializedName("Product")
Expand Down Expand Up @@ -176,8 +177,10 @@ public void setNegativePrompt(String NegativePrompt) {

/**
* Get 商品图中的商品主体名称。
最多支持50个 utf-8 字符,支持中、英文。
建议说明商品主体,否则影响生成效果。
* @return Product 商品图中的商品主体名称。
最多支持50个 utf-8 字符,支持中、英文。
建议说明商品主体,否则影响生成效果。
*/
public String getProduct() {
Expand All @@ -186,8 +189,10 @@ public String getProduct() {

/**
* Set 商品图中的商品主体名称。
最多支持50个 utf-8 字符,支持中、英文。
建议说明商品主体,否则影响生成效果。
* @param Product 商品图中的商品主体名称。
最多支持50个 utf-8 字符,支持中、英文。
建议说明商品主体,否则影响生成效果。
*/
public void setProduct(String Product) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class CCPrecisionPlyRecord extends AbstractModel {
private String Value;

/**
* 配置项值比对方式,可取值equal ,not_equal, include
* 配置项值比对方式,可取值equal:相等,not_equal:不相等, include:包含
*/
@SerializedName("ValueOperator")
@Expose
Expand Down Expand Up @@ -100,16 +100,16 @@ public void setValue(String Value) {
}

/**
* Get 配置项值比对方式,可取值equal ,not_equal, include
* @return ValueOperator 配置项值比对方式,可取值equal ,not_equal, include
* Get 配置项值比对方式,可取值equal:相等,not_equal:不相等, include:包含
* @return ValueOperator 配置项值比对方式,可取值equal:相等,not_equal:不相等, include:包含
*/
public String getValueOperator() {
return this.ValueOperator;
}

/**
* Set 配置项值比对方式,可取值equal ,not_equal, include
* @param ValueOperator 配置项值比对方式,可取值equal ,not_equal, include
* Set 配置项值比对方式,可取值equal:相等,not_equal:不相等, include:包含
* @param ValueOperator 配置项值比对方式,可取值equal:相等,not_equal:不相等, include:包含
*/
public void setValueOperator(String ValueOperator) {
this.ValueOperator = ValueOperator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ public class DescribeGeneralOTSpanListResponse extends AbstractModel {
private Long TotalCount;

/**
* 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
* Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
*/
@SerializedName("Spans")
@Expose
Expand Down Expand Up @@ -61,16 +65,32 @@ public void setTotalCount(Long TotalCount) {
}

/**
* Get 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
* @return Spans 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
* Get Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
* @return Spans Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
*/
public String getSpans() {
return this.Spans;
}

/**
* Set 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
* @param Spans 装有查询结果 Spans 的 Trace 结构体。OpenTelemetry 标准 Trace 结构体哈希后的字符串,先将 Trace 利用 ptrace.JSONMarshaler 转换成 Json 字符串,再用 gzip 压缩,最后转换成 base64 标准的字符串。
* Set Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
* @param Spans Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
*/
public void setSpans(String Spans) {
this.Spans = Spans;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@

public class DescribeServiceOverviewRequest extends AbstractModel {

/**
* 指标列表
*/
@SerializedName("Metrics")
@Expose
private QueryMetricItem [] Metrics;

/**
* 业务系统 ID
*/
Expand All @@ -38,11 +31,11 @@ public class DescribeServiceOverviewRequest extends AbstractModel {
private String InstanceId;

/**
* 过滤条件
* 指标列表
*/
@SerializedName("Filters")
@SerializedName("Metrics")
@Expose
private Filter [] Filters;
private QueryMetricItem [] Metrics;

/**
* 聚合维度
Expand All @@ -51,6 +44,13 @@ public class DescribeServiceOverviewRequest extends AbstractModel {
@Expose
private String [] GroupBy;

/**
* 过滤条件
*/
@SerializedName("Filters")
@Expose
private Filter [] Filters;

/**
* 开始时间(单位:秒)
*/
Expand Down Expand Up @@ -89,22 +89,6 @@ public class DescribeServiceOverviewRequest extends AbstractModel {
@Expose
private Long Offset;

/**
* Get 指标列表
* @return Metrics 指标列表
*/
public QueryMetricItem [] getMetrics() {
return this.Metrics;
}

/**
* Set 指标列表
* @param Metrics 指标列表
*/
public void setMetrics(QueryMetricItem [] Metrics) {
this.Metrics = Metrics;
}

/**
* Get 业务系统 ID
* @return InstanceId 业务系统 ID
Expand All @@ -122,19 +106,19 @@ public void setInstanceId(String InstanceId) {
}

/**
* Get 过滤条件
* @return Filters 过滤条件
* Get 指标列表
* @return Metrics 指标列表
*/
public Filter [] getFilters() {
return this.Filters;
public QueryMetricItem [] getMetrics() {
return this.Metrics;
}

/**
* Set 过滤条件
* @param Filters 过滤条件
* Set 指标列表
* @param Metrics 指标列表
*/
public void setFilters(Filter [] Filters) {
this.Filters = Filters;
public void setMetrics(QueryMetricItem [] Metrics) {
this.Metrics = Metrics;
}

/**
Expand All @@ -153,6 +137,22 @@ public void setGroupBy(String [] GroupBy) {
this.GroupBy = GroupBy;
}

/**
* Get 过滤条件
* @return Filters 过滤条件
*/
public Filter [] getFilters() {
return this.Filters;
}

/**
* Set 过滤条件
* @param Filters 过滤条件
*/
public void setFilters(Filter [] Filters) {
this.Filters = Filters;
}

/**
* Get 开始时间(单位:秒)
* @return StartTime 开始时间(单位:秒)
Expand Down Expand Up @@ -253,27 +253,27 @@ public DescribeServiceOverviewRequest() {
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeServiceOverviewRequest(DescribeServiceOverviewRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.Metrics != null) {
this.Metrics = new QueryMetricItem[source.Metrics.length];
for (int i = 0; i < source.Metrics.length; i++) {
this.Metrics[i] = new QueryMetricItem(source.Metrics[i]);
}
}
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
if (source.GroupBy != null) {
this.GroupBy = new String[source.GroupBy.length];
for (int i = 0; i < source.GroupBy.length; i++) {
this.GroupBy[i] = new String(source.GroupBy[i]);
}
}
if (source.Filters != null) {
this.Filters = new Filter[source.Filters.length];
for (int i = 0; i < source.Filters.length; i++) {
this.Filters[i] = new Filter(source.Filters[i]);
}
}
if (source.GroupBy != null) {
this.GroupBy = new String[source.GroupBy.length];
for (int i = 0; i < source.GroupBy.length; i++) {
this.GroupBy[i] = new String(source.GroupBy[i]);
}
}
if (source.StartTime != null) {
this.StartTime = new Long(source.StartTime);
}
Expand All @@ -296,10 +296,10 @@ public DescribeServiceOverviewRequest(DescribeServiceOverviewRequest source) {
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap<String, String> map, String prefix) {
this.setParamArrayObj(map, prefix + "Metrics.", this.Metrics);
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamArrayObj(map, prefix + "Filters.", this.Filters);
this.setParamArrayObj(map, prefix + "Metrics.", this.Metrics);
this.setParamArraySimple(map, prefix + "GroupBy.", this.GroupBy);
this.setParamArrayObj(map, prefix + "Filters.", this.Filters);
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamObj(map, prefix + "OrderBy.", this.OrderBy);
Expand Down
Loading

0 comments on commit 0dd038f

Please sign in to comment.