tencentcloud-sdk-cls 3.0.1030 → 3.0.1032

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7a271a7bf56c1fe249e5fa04dc84256ec9496f3
4
- data.tar.gz: a12a7a8cf86e767448e83d76ccfcd7b4573bec25
3
+ metadata.gz: 4577164156ef46c882157873dc46a51dd359f663
4
+ data.tar.gz: 608b47d4e3601c2e0bd6bb82a091b68597b0f1ba
5
5
  SHA512:
6
- metadata.gz: 61554c17712fb07bf01190c0db244cfdd0831e306f291dbbb52fbece3f46eab9a3c7cb54299efbe19d7c140a53e348fed7f777ad57ddea6d5645d2da062c3b12
7
- data.tar.gz: 03af1c80e4d62728b0de1bc2240c61e7b30acb1e9f73a41edb4daac80cc1a9ba4def52ce75256619d6d537d8865e8f8f828bd20658acaae85b553222bd2951b4
6
+ metadata.gz: c44afc9d0420976a52914807b0c6be4e2b3cc8492de81d0029bd330d4988dcbc9543b6558a8c4f8473adb7f9c1bac104db4406f0b0db044a87ac2aaf9bc93a47
7
+ data.tar.gz: 978615f738c7f78fc52f80a0f07b76b5a8ca558bfdd78f3d08790aac61ebb30e6757c10876cb8753cba4ce3b73ace717dd63ba02597d3dbc93caec6cc8a9eac2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1030
1
+ 3.0.1032
@@ -228,6 +228,30 @@ module TencentCloud
228
228
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
229
229
  end
230
230
 
231
+ # 内部云产品接入使用相关接口
232
+
233
+ # @param request: Request instance for CreateCloudProductLogCollection.
234
+ # @type request: :class:`Tencentcloud::cls::V20201016::CreateCloudProductLogCollectionRequest`
235
+ # @rtype: :class:`Tencentcloud::cls::V20201016::CreateCloudProductLogCollectionResponse`
236
+ def CreateCloudProductLogCollection(request)
237
+ body = send_request('CreateCloudProductLogCollection', request.serialize)
238
+ response = JSON.parse(body)
239
+ if response['Response'].key?('Error') == false
240
+ model = CreateCloudProductLogCollectionResponse.new
241
+ model.deserialize(response['Response'])
242
+ model
243
+ else
244
+ code = response['Response']['Error']['Code']
245
+ message = response['Response']['Error']['Message']
246
+ reqid = response['Response']['RequestId']
247
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
248
+ end
249
+ rescue TencentCloud::Common::TencentCloudSDKException => e
250
+ raise e
251
+ rescue StandardError => e
252
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
253
+ end
254
+
231
255
  # 创建采集规则配置
232
256
 
233
257
  # @param request: Request instance for CreateConfig.
@@ -732,6 +756,30 @@ module TencentCloud
732
756
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
733
757
  end
734
758
 
759
+ # 内部云产品接入使用相关接口
760
+
761
+ # @param request: Request instance for DeleteCloudProductLogCollection.
762
+ # @type request: :class:`Tencentcloud::cls::V20201016::DeleteCloudProductLogCollectionRequest`
763
+ # @rtype: :class:`Tencentcloud::cls::V20201016::DeleteCloudProductLogCollectionResponse`
764
+ def DeleteCloudProductLogCollection(request)
765
+ body = send_request('DeleteCloudProductLogCollection', request.serialize)
766
+ response = JSON.parse(body)
767
+ if response['Response'].key?('Error') == false
768
+ model = DeleteCloudProductLogCollectionResponse.new
769
+ model.deserialize(response['Response'])
770
+ model
771
+ else
772
+ code = response['Response']['Error']['Code']
773
+ message = response['Response']['Error']['Message']
774
+ reqid = response['Response']['RequestId']
775
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
776
+ end
777
+ rescue TencentCloud::Common::TencentCloudSDKException => e
778
+ raise e
779
+ rescue StandardError => e
780
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
781
+ end
782
+
735
783
  # 删除采集规则配置
736
784
 
737
785
  # @param request: Request instance for DeleteConfig.
@@ -1260,6 +1308,30 @@ module TencentCloud
1260
1308
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1261
1309
  end
1262
1310
 
1311
+ # 云产品接入使用相关接口
1312
+
1313
+ # @param request: Request instance for DescribeCloudProductLogTasks.
1314
+ # @type request: :class:`Tencentcloud::cls::V20201016::DescribeCloudProductLogTasksRequest`
1315
+ # @rtype: :class:`Tencentcloud::cls::V20201016::DescribeCloudProductLogTasksResponse`
1316
+ def DescribeCloudProductLogTasks(request)
1317
+ body = send_request('DescribeCloudProductLogTasks', request.serialize)
1318
+ response = JSON.parse(body)
1319
+ if response['Response'].key?('Error') == false
1320
+ model = DescribeCloudProductLogTasksResponse.new
1321
+ model.deserialize(response['Response'])
1322
+ model
1323
+ else
1324
+ code = response['Response']['Error']['Code']
1325
+ message = response['Response']['Error']['Message']
1326
+ reqid = response['Response']['RequestId']
1327
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1328
+ end
1329
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1330
+ raise e
1331
+ rescue StandardError => e
1332
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1333
+ end
1334
+
1263
1335
  # 本接口用于获取特殊采集配置,特殊采集配置应用于自建K8S环境的采集Agent
1264
1336
 
1265
1337
  # @param request: Request instance for DescribeConfigExtras.
@@ -2005,6 +2077,30 @@ module TencentCloud
2005
2077
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2006
2078
  end
2007
2079
 
2080
+ # 内部云产品接入使用相关接口
2081
+
2082
+ # @param request: Request instance for ModifyCloudProductLogCollection.
2083
+ # @type request: :class:`Tencentcloud::cls::V20201016::ModifyCloudProductLogCollectionRequest`
2084
+ # @rtype: :class:`Tencentcloud::cls::V20201016::ModifyCloudProductLogCollectionResponse`
2085
+ def ModifyCloudProductLogCollection(request)
2086
+ body = send_request('ModifyCloudProductLogCollection', request.serialize)
2087
+ response = JSON.parse(body)
2088
+ if response['Response'].key?('Error') == false
2089
+ model = ModifyCloudProductLogCollectionResponse.new
2090
+ model.deserialize(response['Response'])
2091
+ model
2092
+ else
2093
+ code = response['Response']['Error']['Code']
2094
+ message = response['Response']['Error']['Message']
2095
+ reqid = response['Response']['RequestId']
2096
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2097
+ end
2098
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2099
+ raise e
2100
+ rescue StandardError => e
2101
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2102
+ end
2103
+
2008
2104
  # 修改采集规则配置
2009
2105
 
2010
2106
  # @param request: Request instance for ModifyConfig.
@@ -1005,6 +1005,46 @@ module TencentCloud
1005
1005
  end
1006
1006
  end
1007
1007
 
1008
+ # 云产品日志投递任务信息
1009
+ class CloudProductLogTaskInfo < TencentCloud::Common::AbstractModel
1010
+ # @param ClsRegion: 日志服务地域
1011
+ # @type ClsRegion: String
1012
+ # @param InstanceId: 实例ID
1013
+ # @type InstanceId: String
1014
+ # @param LogsetId: 日志集ID
1015
+ # @type LogsetId: String
1016
+ # @param TopicId: 日志主题ID
1017
+ # @type TopicId: String
1018
+ # @param Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
1019
+ # @type Extend: String
1020
+ # @param LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
1021
+ # @type LogType: String
1022
+ # @param Status: 任务状态, 0创建中 1创建完成 2 删除中
1023
+ # @type Status: Integer
1024
+
1025
+ attr_accessor :ClsRegion, :InstanceId, :LogsetId, :TopicId, :Extend, :LogType, :Status
1026
+
1027
+ def initialize(clsregion=nil, instanceid=nil, logsetid=nil, topicid=nil, extend=nil, logtype=nil, status=nil)
1028
+ @ClsRegion = clsregion
1029
+ @InstanceId = instanceid
1030
+ @LogsetId = logsetid
1031
+ @TopicId = topicid
1032
+ @Extend = extend
1033
+ @LogType = logtype
1034
+ @Status = status
1035
+ end
1036
+
1037
+ def deserialize(params)
1038
+ @ClsRegion = params['ClsRegion']
1039
+ @InstanceId = params['InstanceId']
1040
+ @LogsetId = params['LogsetId']
1041
+ @TopicId = params['TopicId']
1042
+ @Extend = params['Extend']
1043
+ @LogType = params['LogType']
1044
+ @Status = params['Status']
1045
+ end
1046
+ end
1047
+
1008
1048
  # 采集配置信息
1009
1049
  class CollectConfig < TencentCloud::Common::AbstractModel
1010
1050
  # @param Name: 指定采集类型的采集配置名称信息。
@@ -2090,6 +2130,106 @@ module TencentCloud
2090
2130
  end
2091
2131
  end
2092
2132
 
2133
+ # CreateCloudProductLogCollection请求参数结构体
2134
+ class CreateCloudProductLogCollectionRequest < TencentCloud::Common::AbstractModel
2135
+ # @param InstanceId: 实例ID
2136
+ # @type InstanceId: String
2137
+ # @param AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
2138
+ # @type AssumerName: String
2139
+ # @param LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
2140
+ # @type LogType: String
2141
+ # @param CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
2142
+ # - CDS所有日志类型:ap-guangzhou
2143
+ # - CDB-AUDIT: gz
2144
+ # - TDSQL-C-AUDIT: gz
2145
+ # - MongoDB-AUDIT: gz
2146
+ # - MongoDB-SlowLog:ap-guangzhou
2147
+ # - MongoDB-ErrorLog:ap-guangzhou
2148
+ # - TDMYSQL-SLOW:gz
2149
+ # - DCDB所有日志类型:gz
2150
+ # - MariaDB所有日志类型:gz
2151
+ # - PostgreSQL所有日志类型:gz
2152
+ # - BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
2153
+ # - APIS所有日志类型:gz
2154
+ # @type CloudProductRegion: String
2155
+ # @param ClsRegion: CLS目标地域
2156
+ # @type ClsRegion: String
2157
+ # @param LogsetName: 日志集名称,未填LogsetId时必填。若日志集不存在, 将自动创建
2158
+ # @type LogsetName: String
2159
+ # @param TopicName: 日志主题名称,在未填TopicId时必填。 若日志主题不存在,将自动创建
2160
+ # @type TopicName: String
2161
+ # @param Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
2162
+ # @type Extend: String
2163
+ # @param LogsetId: 日志集id
2164
+ # @type LogsetId: String
2165
+ # @param TopicId: 日志主题id
2166
+ # @type TopicId: String
2167
+
2168
+ attr_accessor :InstanceId, :AssumerName, :LogType, :CloudProductRegion, :ClsRegion, :LogsetName, :TopicName, :Extend, :LogsetId, :TopicId
2169
+
2170
+ def initialize(instanceid=nil, assumername=nil, logtype=nil, cloudproductregion=nil, clsregion=nil, logsetname=nil, topicname=nil, extend=nil, logsetid=nil, topicid=nil)
2171
+ @InstanceId = instanceid
2172
+ @AssumerName = assumername
2173
+ @LogType = logtype
2174
+ @CloudProductRegion = cloudproductregion
2175
+ @ClsRegion = clsregion
2176
+ @LogsetName = logsetname
2177
+ @TopicName = topicname
2178
+ @Extend = extend
2179
+ @LogsetId = logsetid
2180
+ @TopicId = topicid
2181
+ end
2182
+
2183
+ def deserialize(params)
2184
+ @InstanceId = params['InstanceId']
2185
+ @AssumerName = params['AssumerName']
2186
+ @LogType = params['LogType']
2187
+ @CloudProductRegion = params['CloudProductRegion']
2188
+ @ClsRegion = params['ClsRegion']
2189
+ @LogsetName = params['LogsetName']
2190
+ @TopicName = params['TopicName']
2191
+ @Extend = params['Extend']
2192
+ @LogsetId = params['LogsetId']
2193
+ @TopicId = params['TopicId']
2194
+ end
2195
+ end
2196
+
2197
+ # CreateCloudProductLogCollection返回参数结构体
2198
+ class CreateCloudProductLogCollectionResponse < TencentCloud::Common::AbstractModel
2199
+ # @param TopicId: 日志主题ID
2200
+ # @type TopicId: String
2201
+ # @param TopicName: 日志主题名称
2202
+ # @type TopicName: String
2203
+ # @param LogsetId: 日志集ID
2204
+ # @type LogsetId: String
2205
+ # @param LogsetName: 日志集名称
2206
+ # @type LogsetName: String
2207
+ # @param Status: -1 创建中,1创建完成
2208
+ # @type Status: Integer
2209
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2210
+ # @type RequestId: String
2211
+
2212
+ attr_accessor :TopicId, :TopicName, :LogsetId, :LogsetName, :Status, :RequestId
2213
+
2214
+ def initialize(topicid=nil, topicname=nil, logsetid=nil, logsetname=nil, status=nil, requestid=nil)
2215
+ @TopicId = topicid
2216
+ @TopicName = topicname
2217
+ @LogsetId = logsetid
2218
+ @LogsetName = logsetname
2219
+ @Status = status
2220
+ @RequestId = requestid
2221
+ end
2222
+
2223
+ def deserialize(params)
2224
+ @TopicId = params['TopicId']
2225
+ @TopicName = params['TopicName']
2226
+ @LogsetId = params['LogsetId']
2227
+ @LogsetName = params['LogsetName']
2228
+ @Status = params['Status']
2229
+ @RequestId = params['RequestId']
2230
+ end
2231
+ end
2232
+
2093
2233
  # CreateConfigExtra请求参数结构体
2094
2234
  class CreateConfigExtraRequest < TencentCloud::Common::AbstractModel
2095
2235
  # @param Name: 采集配置规程名称,最长63个字符,只能包含小写字符、数字及分隔符(“-”),且必须以小写字符开头,数字或小写字符结尾
@@ -3892,6 +4032,66 @@ module TencentCloud
3892
4032
  end
3893
4033
  end
3894
4034
 
4035
+ # DeleteCloudProductLogCollection请求参数结构体
4036
+ class DeleteCloudProductLogCollectionRequest < TencentCloud::Common::AbstractModel
4037
+ # @param InstanceId: 实例ID
4038
+ # @type InstanceId: String
4039
+ # @param AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
4040
+ # @type AssumerName: String
4041
+ # @param LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
4042
+ # @type LogType: String
4043
+ # @param CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
4044
+ # - CDS所有日志类型:ap-guangzhou
4045
+ # - CDB-AUDIT: gz
4046
+ # - TDSQL-C-AUDIT: gz
4047
+ # - MongoDB-AUDIT: gz
4048
+ # - MongoDB-SlowLog:ap-guangzhou
4049
+ # - MongoDB-ErrorLog:ap-guangzhou
4050
+ # - TDMYSQL-SLOW:gz
4051
+ # - DCDB所有日志类型:gz
4052
+ # - MariaDB所有日志类型:gz
4053
+ # - PostgreSQL所有日志类型:gz
4054
+ # - BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
4055
+ # - APIS所有日志类型:gz
4056
+ # @type CloudProductRegion: String
4057
+
4058
+ attr_accessor :InstanceId, :AssumerName, :LogType, :CloudProductRegion
4059
+
4060
+ def initialize(instanceid=nil, assumername=nil, logtype=nil, cloudproductregion=nil)
4061
+ @InstanceId = instanceid
4062
+ @AssumerName = assumername
4063
+ @LogType = logtype
4064
+ @CloudProductRegion = cloudproductregion
4065
+ end
4066
+
4067
+ def deserialize(params)
4068
+ @InstanceId = params['InstanceId']
4069
+ @AssumerName = params['AssumerName']
4070
+ @LogType = params['LogType']
4071
+ @CloudProductRegion = params['CloudProductRegion']
4072
+ end
4073
+ end
4074
+
4075
+ # DeleteCloudProductLogCollection返回参数结构体
4076
+ class DeleteCloudProductLogCollectionResponse < TencentCloud::Common::AbstractModel
4077
+ # @param Status: 枚举值,0创建中 1创建完成 2删除中 3删除完成
4078
+ # @type Status: Integer
4079
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4080
+ # @type RequestId: String
4081
+
4082
+ attr_accessor :Status, :RequestId
4083
+
4084
+ def initialize(status=nil, requestid=nil)
4085
+ @Status = status
4086
+ @RequestId = requestid
4087
+ end
4088
+
4089
+ def deserialize(params)
4090
+ @Status = params['Status']
4091
+ @RequestId = params['RequestId']
4092
+ end
4093
+ end
4094
+
3895
4095
  # DeleteConfigExtra请求参数结构体
3896
4096
  class DeleteConfigExtraRequest < TencentCloud::Common::AbstractModel
3897
4097
  # @param ConfigExtraId: 特殊采集规则扩展配置ID
@@ -4835,6 +5035,81 @@ module TencentCloud
4835
5035
  end
4836
5036
  end
4837
5037
 
5038
+ # DescribeCloudProductLogTasks请求参数结构体
5039
+ class DescribeCloudProductLogTasksRequest < TencentCloud::Common::AbstractModel
5040
+ # @param Offset: 分页的偏移量,默认值为0。
5041
+ # @type Offset: Integer
5042
+ # @param Limit: 分页单页限制数目,默认值为100,最大值100。
5043
+ # @type Limit: Integer
5044
+ # @param Filters: - assumerName
5045
+ # - 按照【云产品标识】进行过滤。
5046
+ # - 类型:String
5047
+ # - 必选:否
5048
+ # - 枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
5049
+ # - logType
5050
+ # - 按照【日志类型】进行过滤。
5051
+ # - 类型:String
5052
+ # - 必选:否
5053
+ # - 枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
5054
+ # - instanceId
5055
+ # - 按照【实例ID】进行过滤。
5056
+ # - 类型:String
5057
+ # - 必选:否
5058
+ # @type Filters: Array
5059
+
5060
+ attr_accessor :Offset, :Limit, :Filters
5061
+
5062
+ def initialize(offset=nil, limit=nil, filters=nil)
5063
+ @Offset = offset
5064
+ @Limit = limit
5065
+ @Filters = filters
5066
+ end
5067
+
5068
+ def deserialize(params)
5069
+ @Offset = params['Offset']
5070
+ @Limit = params['Limit']
5071
+ unless params['Filters'].nil?
5072
+ @Filters = []
5073
+ params['Filters'].each do |i|
5074
+ filter_tmp = Filter.new
5075
+ filter_tmp.deserialize(i)
5076
+ @Filters << filter_tmp
5077
+ end
5078
+ end
5079
+ end
5080
+ end
5081
+
5082
+ # DescribeCloudProductLogTasks返回参数结构体
5083
+ class DescribeCloudProductLogTasksResponse < TencentCloud::Common::AbstractModel
5084
+ # @param Tasks: 日志配置详情列表
5085
+ # @type Tasks: Array
5086
+ # @param TotalCount: 日志配置总数
5087
+ # @type TotalCount: Integer
5088
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5089
+ # @type RequestId: String
5090
+
5091
+ attr_accessor :Tasks, :TotalCount, :RequestId
5092
+
5093
+ def initialize(tasks=nil, totalcount=nil, requestid=nil)
5094
+ @Tasks = tasks
5095
+ @TotalCount = totalcount
5096
+ @RequestId = requestid
5097
+ end
5098
+
5099
+ def deserialize(params)
5100
+ unless params['Tasks'].nil?
5101
+ @Tasks = []
5102
+ params['Tasks'].each do |i|
5103
+ cloudproductlogtaskinfo_tmp = CloudProductLogTaskInfo.new
5104
+ cloudproductlogtaskinfo_tmp.deserialize(i)
5105
+ @Tasks << cloudproductlogtaskinfo_tmp
5106
+ end
5107
+ end
5108
+ @TotalCount = params['TotalCount']
5109
+ @RequestId = params['RequestId']
5110
+ end
5111
+ end
5112
+
4838
5113
  # DescribeConfigExtras请求参数结构体
4839
5114
  class DescribeConfigExtrasRequest < TencentCloud::Common::AbstractModel
4840
5115
  # @param Filters: 过滤器,支持如下选项:
@@ -8366,6 +8641,66 @@ module TencentCloud
8366
8641
  end
8367
8642
  end
8368
8643
 
8644
+ # ModifyCloudProductLogCollection请求参数结构体
8645
+ class ModifyCloudProductLogCollectionRequest < TencentCloud::Common::AbstractModel
8646
+ # @param InstanceId: 实例ID
8647
+ # @type InstanceId: String
8648
+ # @param AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
8649
+ # @type AssumerName: String
8650
+ # @param LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
8651
+ # @type LogType: String
8652
+ # @param CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
8653
+ # - CDS所有日志类型:ap-guangzhou
8654
+ # - CDB-AUDIT: gz
8655
+ # - TDSQL-C-AUDIT: gz
8656
+ # - MongoDB-AUDIT: gz
8657
+ # - MongoDB-SlowLog:ap-guangzhou
8658
+ # - MongoDB-ErrorLog:ap-guangzhou
8659
+ # - TDMYSQL-SLOW:gz
8660
+ # - DCDB所有日志类型:gz
8661
+ # - MariaDB所有日志类型:gz
8662
+ # - PostgreSQL所有日志类型:gz
8663
+ # - BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
8664
+ # - APIS所有日志类型:gz
8665
+ # @type CloudProductRegion: String
8666
+ # @param Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
8667
+ # @type Extend: String
8668
+
8669
+ attr_accessor :InstanceId, :AssumerName, :LogType, :CloudProductRegion, :Extend
8670
+
8671
+ def initialize(instanceid=nil, assumername=nil, logtype=nil, cloudproductregion=nil, extend=nil)
8672
+ @InstanceId = instanceid
8673
+ @AssumerName = assumername
8674
+ @LogType = logtype
8675
+ @CloudProductRegion = cloudproductregion
8676
+ @Extend = extend
8677
+ end
8678
+
8679
+ def deserialize(params)
8680
+ @InstanceId = params['InstanceId']
8681
+ @AssumerName = params['AssumerName']
8682
+ @LogType = params['LogType']
8683
+ @CloudProductRegion = params['CloudProductRegion']
8684
+ @Extend = params['Extend']
8685
+ end
8686
+ end
8687
+
8688
+ # ModifyCloudProductLogCollection返回参数结构体
8689
+ class ModifyCloudProductLogCollectionResponse < TencentCloud::Common::AbstractModel
8690
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8691
+ # @type RequestId: String
8692
+
8693
+ attr_accessor :RequestId
8694
+
8695
+ def initialize(requestid=nil)
8696
+ @RequestId = requestid
8697
+ end
8698
+
8699
+ def deserialize(params)
8700
+ @RequestId = params['RequestId']
8701
+ end
8702
+ end
8703
+
8369
8704
  # ModifyConfigExtra请求参数结构体
8370
8705
  class ModifyConfigExtraRequest < TencentCloud::Common::AbstractModel
8371
8706
  # @param ConfigExtraId: 采集配置扩展信息id
@@ -10172,8 +10507,8 @@ module TencentCloud
10172
10507
 
10173
10508
  attr_accessor :LogContent, :LineNum, :DstTopicId, :FailReason, :Time, :DstTopicName
10174
10509
  extend Gem::Deprecate
10175
- deprecate :DstTopicName, :none, 2025, 3
10176
- deprecate :DstTopicName=, :none, 2025, 3
10510
+ deprecate :DstTopicName, :none, 2025, 4
10511
+ deprecate :DstTopicName=, :none, 2025, 4
10177
10512
 
10178
10513
  def initialize(logcontent=nil, linenum=nil, dsttopicid=nil, failreason=nil, time=nil, dsttopicname=nil)
10179
10514
  @LogContent = logcontent
@@ -10752,20 +11087,21 @@ module TencentCloud
10752
11087
 
10753
11088
  # SearchLog请求参数结构体
10754
11089
  class SearchLogRequest < TencentCloud::Common::AbstractModel
10755
- # @param From: 要检索分析的日志的起始时间,Unix时间戳(毫秒)
11090
+ # @param From: 要检索分析的日志的起始时间,**Unix时间戳(毫秒)**
10756
11091
  # @type From: Integer
10757
- # @param To: 要检索分析的日志的结束时间,Unix时间戳(毫秒)
11092
+ # @param To: 要检索分析的日志的结束时间,**Unix时间戳(毫秒)**
10758
11093
  # @type To: Integer
10759
11094
  # @param Query: 检索分析语句,最大长度为12KB
10760
11095
  # 语句由 <a href="https://cloud.tencent.com/document/product/614/47044" target="_blank">[检索条件]</a> | <a href="https://cloud.tencent.com/document/product/614/44061" target="_blank">[SQL语句]</a>构成,无需对日志进行统计分析时,可省略其中的管道符<code> | </code>及SQL语句
10761
11096
  # 使用*或空字符串可查询所有日志
10762
11097
  # @type Query: String
10763
11098
  # @param SyntaxRule: 检索语法规则,默认值为0,推荐使用1 。
10764
-
10765
11099
  # - 0:Lucene语法
10766
- # - 1:CQL语法(日志服务专用检索语法,控制台默认也使用该语法规则)。
11100
+ # - 1:CQL语法(CLS Query Language,日志服务专用检索语法)
10767
11101
 
10768
- # 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
11102
+ # ⚠️⚠️ **注意**
11103
+ # **该参数值建议设置为 1,使用 CQL 语法规则,控制台日志检索及仪表盘默认均使用该语法规则。**
11104
+ # 该参数值未指定或者为 0 时,将使用 Lucene 语法,语法容易报错且查询结果与控制台默认语法规则不一致。详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>。
10769
11105
  # @type SyntaxRule: Integer
10770
11106
  # @param TopicId: - 要检索分析的日志主题ID,仅能指定一个日志主题。
10771
11107
  # - 如需同时检索多个日志主题,请使用Topics参数。
@@ -11404,8 +11740,8 @@ module TencentCloud
11404
11740
 
11405
11741
  attr_accessor :TopicId, :HashKey, :CompressType
11406
11742
  extend Gem::Deprecate
11407
- deprecate :HashKey, :none, 2025, 3
11408
- deprecate :HashKey=, :none, 2025, 3
11743
+ deprecate :HashKey, :none, 2025, 4
11744
+ deprecate :HashKey=, :none, 2025, 4
11409
11745
 
11410
11746
  def initialize(topicid=nil, hashkey=nil, compresstype=nil)
11411
11747
  @TopicId = topicid
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.1030
4
+ version: 3.0.1032
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-03-30 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-cls.rb
37
- - lib/v20201016/models.rb
38
36
  - lib/v20201016/client.rb
37
+ - lib/v20201016/models.rb
38
+ - lib/tencentcloud-sdk-cls.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: