tencentcloud-sdk-cls 3.0.1124 → 3.0.1127

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +48 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e591e3b1cd32e3b1a258e6dd898778ae1f7c2e2
4
- data.tar.gz: 112fdb301aedb9846f76830ca130e9356dd83294
3
+ metadata.gz: 1e58dd8cf77ee4b120249d778f8a6ce2d56f804a
4
+ data.tar.gz: 1e8282eb4cc484b743f2a3d78c364f616a9da858
5
5
  SHA512:
6
- metadata.gz: 4da47a2ee888ca8db096166f60c691e7dacf210e99149d24b22335cdd3252ddfed2eee88f64cd17d7a12383309459f8aa40993b323d6176a9ad2ee72a805d759
7
- data.tar.gz: 74788e297ff4d9834a9c5dad736fbb88e0917eae87163a63f6919c238f1e4d08af15da9606292f7674d56e424ed02a5cbc11ce3e247f5339344cc17bf63defd4
6
+ metadata.gz: bc36c08497387c253932a49249f60b764bca68810efe03d8110e295b4c537ec03fa272abaa28327c6775e298ad9de8764c4ca720e7f92cbc768c57deafd45dd4
7
+ data.tar.gz: a1f61096be9db00017d7ce2223268b9d39d055e72075b35b4f3fa0dc92a1b9bf8054d8cfcae59faa5d608c89b7d827ec9ace01144704bb8f32ffc7faa01ab9e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1124
1
+ 3.0.1127
@@ -2868,9 +2868,14 @@ module TencentCloud
2868
2868
  class CreateDataTransformRequest < TencentCloud::Common::AbstractModel
2869
2869
  # @param FuncType: 任务类型. 1: 指定主题;2:动态创建。详情请参考[创建加工任务文档](https://cloud.tencent.com/document/product/614/63940)。
2870
2870
  # @type FuncType: Integer
2871
- # @param SrcTopicId: 源日志主题
2871
+ # @param SrcTopicId: 日志主题ID
2872
+ # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
2872
2873
  # @type SrcTopicId: String
2873
2874
  # @param Name: 加工任务名称
2875
+ # 名称限制
2876
+ # - 不能为空字符串
2877
+ # - 不能包含字符'|'
2878
+ # - 最长 255 个字符
2874
2879
  # @type Name: String
2875
2880
  # @param EtlContent: 加工语句。 当FuncType为2时,EtlContent必须使用[log_auto_output](https://cloud.tencent.com/document/product/614/70733#b3c58797-4825-4807-bef4-68106e25024f)
2876
2881
 
@@ -2882,11 +2887,14 @@ module TencentCloud
2882
2887
  # @param TaskType: 加工类型。
2883
2888
  # 1:使用源日志主题中的随机数据,进行加工预览;2:使用用户自定义测试数据,进行加工预览;3:创建真实加工任务。
2884
2889
  # @type TaskType: Integer
2885
- # @param DstResources: 加工任务目的topic_id以及别名,当FuncType=1时,该参数必填,当FuncType=2时,无需填写。
2890
+ # @param DstResources: 加工任务目标topic_id以及别名,当FuncType=1时,该参数必填,当FuncType=2时,无需填写。
2891
+ # 目标topic_id,通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
2892
+ # 别名限制 1.不能为空字符串,2. 不能包含字符'|'。
2886
2893
  # @type DstResources: Array
2887
2894
  # @param EnableFlag: 任务启动状态. 默认为1:开启, 2:关闭
2888
2895
  # @type EnableFlag: Integer
2889
2896
  # @param PreviewLogStatistics: 用于预览加工结果的测试数据
2897
+ # 目标日志主题ID通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
2890
2898
  # @type PreviewLogStatistics: Array
2891
2899
  # @param DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
2892
2900
  # @type DataTransformType: Integer
@@ -4151,7 +4159,7 @@ module TencentCloud
4151
4159
  # @type TaskId: String
4152
4160
  # @param EnableFlag: 任务启用状态,默认为1,正常开启, 2关闭
4153
4161
  # @type EnableFlag: Integer
4154
- # @param Type: 加工任务类型,1: DSL, 2:SQL
4162
+ # @param Type: 加工任务类型,1: DSL(使用自定义加工语言的加工任务), 2:SQL(使用sql的加工任务)
4155
4163
  # @type Type: Integer
4156
4164
  # @param SrcTopicId: 源日志主题
4157
4165
  # @type SrcTopicId: String
@@ -4160,8 +4168,10 @@ module TencentCloud
4160
4168
  # @param CreateTime: 加工任务创建时间
4161
4169
  # @type CreateTime: String
4162
4170
  # @param UpdateTime: 最近修改时间
4171
+ # 示例值:2025-06-18 16:55:54
4163
4172
  # @type UpdateTime: String
4164
4173
  # @param LastEnableTime: 最后启用时间,如果需要重建集群,修改该时间
4174
+ # 示例值:2025-06-18 19:55:54
4165
4175
  # @type LastEnableTime: String
4166
4176
  # @param SrcTopicName: 日志主题名称
4167
4177
  # @type SrcTopicName: String
@@ -6038,28 +6048,40 @@ module TencentCloud
6038
6048
  # 按照【加工任务名称】进行过滤。
6039
6049
  # 类型:String
6040
6050
  # 必选:否
6051
+ # 示例:test-task
6041
6052
 
6042
6053
  # - taskId
6043
6054
  # 按照【加工任务id】进行过滤。
6044
6055
  # 类型:String
6045
6056
  # 必选:否
6057
+ # 示例:a3622556-6402-4942-b4ff-5ae32ec29810
6058
+ # 数据加工任务ID- 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
6046
6059
 
6047
6060
  # - topicId
6048
6061
  # 按照【源topicId】进行过滤。
6049
6062
  # 类型:String
6050
6063
  # 必选:否
6064
+ # 示例:756cec3e-a0a5-44c3-85a8-090870582000
6065
+ # 日志主题ID
6066
+ # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
6067
+
6051
6068
  # - status
6052
6069
  # 按照【 任务运行状态】进行过滤。 1:准备中,2:运行中,3:停止中,4:已停止
6053
6070
  # 类型:String
6054
6071
  # 必选:否
6072
+ # 示例:1
6073
+
6055
6074
  # - hasServiceLog
6056
6075
  # 按照【是否开启服务日志】进行过滤。 1:未开启,2:已开启
6057
6076
  # 类型:String
6058
6077
  # 必选:否
6078
+ # 示例:1
6079
+
6059
6080
  # - dstTopicType
6060
6081
  # 按照【目标topic类型】进行过滤。 1:固定,2:动态
6061
6082
  # 类型:String
6062
6083
  # 必选:否
6084
+ # 示例:1
6063
6085
 
6064
6086
  # 每次请求的Filters的上限为10,Filter.Values的上限为100。
6065
6087
  # @type Filters: Array
@@ -6070,6 +6092,7 @@ module TencentCloud
6070
6092
  # @param Type: 默认值为2. 1: 获取单个任务的详细信息 2:获取任务列表
6071
6093
  # @type Type: Integer
6072
6094
  # @param TaskId: Type为1, 此参数必填
6095
+ # 数据加工任务ID- 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
6073
6096
  # @type TaskId: String
6074
6097
 
6075
6098
  attr_accessor :Filters, :Offset, :Limit, :Type, :TaskId
@@ -6365,13 +6388,15 @@ module TencentCloud
6365
6388
 
6366
6389
  # DescribeLogContext请求参数结构体
6367
6390
  class DescribeLogContextRequest < TencentCloud::Common::AbstractModel
6368
- # @param TopicId: 要查询的日志主题ID
6391
+ # @param TopicId: 要查询的日志主题Id。
6392
+ # - 通过 [获取日志主题列表](https://cloud.tencent.com/document/product/614/56454) 获取日志主题Id。
6393
+ # - 通过 [创建日志主题](https://cloud.tencent.com/document/product/614/56456) 获取日志主题Id。
6369
6394
  # @type TopicId: String
6370
- # @param BTime: 日志时间, 即SearchLog接口返回信息中Results结构体中的Time,需按照 UTC+8 时区将该毫秒级Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
6395
+ # @param BTime: 日志时间, 即 [检索分析日志](https://cloud.tencent.com/document/product/614/56447) 接口返回信息中Results结构体中的Time,需按照 UTC+8 时区将该毫秒级Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
6371
6396
  # @type BTime: String
6372
- # @param PkgId: 日志包序号,即SearchLog接口返回信息中Results结构体中的PkgId。
6397
+ # @param PkgId: 日志包序号,即 [检索分析日志](https://cloud.tencent.com/document/product/614/56447) 接口返回信息中Results结构体中的PkgId。
6373
6398
  # @type PkgId: String
6374
- # @param PkgLogId: 日志包内一条日志的序号,即SearchLog接口返回信息中Results结构中的PkgLogId。
6399
+ # @param PkgLogId: 日志包内一条日志的序号,即 [检索分析日志](https://cloud.tencent.com/document/product/614/56447) 接口返回信息中Results结构中的PkgLogId。
6375
6400
  # @type PkgLogId: Integer
6376
6401
  # @param PrevLogs: 前${PrevLogs}条日志,默认值10。
6377
6402
  # @type PrevLogs: Integer
@@ -9788,9 +9813,16 @@ module TencentCloud
9788
9813
 
9789
9814
  # ModifyDataTransform请求参数结构体
9790
9815
  class ModifyDataTransformRequest < TencentCloud::Common::AbstractModel
9791
- # @param TaskId: 加工任务id
9816
+ # @param TaskId: 数据加工任务ID
9817
+ # - 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
9792
9818
  # @type TaskId: String
9793
9819
  # @param Name: 加工任务名称
9820
+ # - 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务名称。
9821
+
9822
+ # 名称限制
9823
+ # - 不能为空字符串
9824
+ # - 不能包含字符'|'
9825
+ # - 最长 255 个字符
9794
9826
  # @type Name: String
9795
9827
  # @param EtlContent: 加工语句。 当FuncType为2时,EtlContent必须使用[log_auto_output](https://cloud.tencent.com/document/product/614/70733#b3c58797-4825-4807-bef4-68106e25024f)
9796
9828
 
@@ -9852,9 +9884,11 @@ module TencentCloud
9852
9884
 
9853
9885
  # ModifyIndex请求参数结构体
9854
9886
  class ModifyIndexRequest < TencentCloud::Common::AbstractModel
9855
- # @param TopicId: 日志主题ID
9887
+ # @param TopicId: 日志主题Id。
9888
+ # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
9856
9889
  # @type TopicId: String
9857
- # @param Status: 默认不生效
9890
+ # @param Status: 索引状态。false:关闭索引, true:开启索引
9891
+ # 开启后可对日志进行检索分析,将产生索引流量、索引存储及相应费用。[费用详情](https://cloud.tencent.com/document/product/614/45802#.E8.AE.A1.E8.B4.B9.E9.A1.B9)
9858
9892
  # @type Status: Boolean
9859
9893
  # @param Rule: 索引规则
9860
9894
  # @type Rule: :class:`Tencentcloud::Cls.v20201016.models.RuleInfo`
@@ -12203,9 +12237,11 @@ module TencentCloud
12203
12237
 
12204
12238
  # SplitPartition请求参数结构体
12205
12239
  class SplitPartitionRequest < TencentCloud::Common::AbstractModel
12206
- # @param TopicId: 日志主题ID
12240
+ # @param TopicId: 日志主题Id
12241
+ # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
12207
12242
  # @type TopicId: String
12208
- # @param PartitionId: 待分裂分区ID
12243
+ # @param PartitionId: 待分裂分区Id
12244
+ # - 通过[获取分区列表](https://cloud.tencent.com/document/product/614/56470)获取待分裂分区Id。
12209
12245
  # @type PartitionId: Integer
12210
12246
  # @param SplitKey: 分区切分的哈希key的位置,只在Number=2时有意义
12211
12247
  # @type SplitKey: String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1124
4
+ version: 3.0.1127
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-17 00:00:00.000000000 Z
11
+ date: 2025-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common