tencentcloud-sdk-waf 3.0.1130 → 3.0.1131

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: 79b50333f69b408457bbe63bdff677b883a1a86b
4
- data.tar.gz: c29ce9bac900fc2311a957404a6140fa794887fc
3
+ metadata.gz: e4df52d3bf225fd0da5943f159dfc80f54c23db1
4
+ data.tar.gz: 2873bbb04f842a4f2f78b5134cc7af1ce7ec3f5f
5
5
  SHA512:
6
- metadata.gz: f1dd3f35850eea19071767c9a3bca9a631eb9ecbc66750261346687958fe5a8c02b3a8bf4937028a71d3927f985b0114cdb17a5bc15e536f3fcee4bc72ff6f77
7
- data.tar.gz: 1d08b1787c20203acaf2fed7e8cc3fe55351949329c92980bc0969c1a8b8d3b74909a183180980ce14cd7e4b8695ee23a5c5ea68433dcd2a7b79f537e7cbc51f
6
+ metadata.gz: 3de869df2397fa55f5ae98db1d683d52356ebd020c057a52cf797e4edaa2c790a8f5da6a41bcefdaadf2ecafca771545e2b4bb246c52c9015729c4f964c53216
7
+ data.tar.gz: 2977f01489afe605f96c7586d1fc11c2bb38fa8e7adc4beefc18e78292cd79ad2d3655258369e842db12c84cee22b72183f91903aa6b775235e3dc70dc007e3f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1130
1
+ 3.0.1131
@@ -317,6 +317,30 @@ module TencentCloud
317
317
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
318
318
  end
319
319
 
320
+ # 本接口仅创建下载任务,任务返回的下载地址,请用户调用DescribeExports查看任务列表。其中有下载地址CosPath参数。参考文档https://cloud.tencent.com/document/product/614/56449
321
+
322
+ # @param request: Request instance for CreateExport.
323
+ # @type request: :class:`Tencentcloud::waf::V20180125::CreateExportRequest`
324
+ # @rtype: :class:`Tencentcloud::waf::V20180125::CreateExportResponse`
325
+ def CreateExport(request)
326
+ body = send_request('CreateExport', request.serialize)
327
+ response = JSON.parse(body)
328
+ if response['Response'].key?('Error') == false
329
+ model = CreateExportResponse.new
330
+ model.deserialize(response['Response'])
331
+ model
332
+ else
333
+ code = response['Response']['Error']['Code']
334
+ message = response['Response']['Error']['Message']
335
+ reqid = response['Response']['RequestId']
336
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
337
+ end
338
+ rescue TencentCloud::Common::TencentCloudSDKException => e
339
+ raise e
340
+ rescue StandardError => e
341
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
+ end
343
+
320
344
  # clb-waf中添加防护域名
321
345
 
322
346
  # @param request: Request instance for CreateHost.
@@ -677,6 +701,30 @@ module TencentCloud
677
701
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
678
702
  end
679
703
 
704
+ # 本接口用于删除日志下载任务
705
+
706
+ # @param request: Request instance for DeleteExport.
707
+ # @type request: :class:`Tencentcloud::waf::V20180125::DeleteExportRequest`
708
+ # @rtype: :class:`Tencentcloud::waf::V20180125::DeleteExportResponse`
709
+ def DeleteExport(request)
710
+ body = send_request('DeleteExport', request.serialize)
711
+ response = JSON.parse(body)
712
+ if response['Response'].key?('Error') == false
713
+ model = DeleteExportResponse.new
714
+ model.deserialize(response['Response'])
715
+ model
716
+ else
717
+ code = response['Response']['Error']['Code']
718
+ message = response['Response']['Error']['Message']
719
+ reqid = response['Response']['RequestId']
720
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
721
+ end
722
+ rescue TencentCloud::Common::TencentCloudSDKException => e
723
+ raise e
724
+ rescue StandardError => e
725
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
726
+ end
727
+
680
728
  # 删除负载均衡型域名,支持批量操作。
681
729
 
682
730
  # @param request: Request instance for DeleteHost.
@@ -1637,6 +1685,30 @@ module TencentCloud
1637
1685
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1638
1686
  end
1639
1687
 
1688
+ # 本接口用于获取日志下载任务列表
1689
+
1690
+ # @param request: Request instance for DescribeExports.
1691
+ # @type request: :class:`Tencentcloud::waf::V20180125::DescribeExportsRequest`
1692
+ # @rtype: :class:`Tencentcloud::waf::V20180125::DescribeExportsResponse`
1693
+ def DescribeExports(request)
1694
+ body = send_request('DescribeExports', request.serialize)
1695
+ response = JSON.parse(body)
1696
+ if response['Response'].key?('Error') == false
1697
+ model = DescribeExportsResponse.new
1698
+ model.deserialize(response['Response'])
1699
+ model
1700
+ else
1701
+ code = response['Response']['Error']['Code']
1702
+ message = response['Response']['Error']['Message']
1703
+ reqid = response['Response']['RequestId']
1704
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1705
+ end
1706
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1707
+ raise e
1708
+ rescue StandardError => e
1709
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1710
+ end
1711
+
1640
1712
  # 获取发现域名列表接口
1641
1713
 
1642
1714
  # @param request: Request instance for DescribeFindDomainList.
@@ -1853,6 +1925,30 @@ module TencentCloud
1853
1925
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1854
1926
  end
1855
1927
 
1928
+ # 本接口用于构建日志数量直方图
1929
+
1930
+ # @param request: Request instance for DescribeLogHistogram.
1931
+ # @type request: :class:`Tencentcloud::waf::V20180125::DescribeLogHistogramRequest`
1932
+ # @rtype: :class:`Tencentcloud::waf::V20180125::DescribeLogHistogramResponse`
1933
+ def DescribeLogHistogram(request)
1934
+ body = send_request('DescribeLogHistogram', request.serialize)
1935
+ response = JSON.parse(body)
1936
+ if response['Response'].key?('Error') == false
1937
+ model = DescribeLogHistogramResponse.new
1938
+ model.deserialize(response['Response'])
1939
+ model
1940
+ else
1941
+ code = response['Response']['Error']['Code']
1942
+ message = response['Response']['Error']['Message']
1943
+ reqid = response['Response']['RequestId']
1944
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1945
+ end
1946
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1947
+ raise e
1948
+ rescue StandardError => e
1949
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1950
+ end
1951
+
1856
1952
  # 查询各个waf基础安全模块的开关状态,看每个模块是否开启
1857
1953
 
1858
1954
  # @param request: Request instance for DescribeModuleStatus.
@@ -2285,6 +2381,30 @@ module TencentCloud
2285
2381
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2286
2382
  end
2287
2383
 
2384
+ # 本接口用于获取日志主题列表,支持分页
2385
+
2386
+ # @param request: Request instance for DescribeTopics.
2387
+ # @type request: :class:`Tencentcloud::waf::V20180125::DescribeTopicsRequest`
2388
+ # @rtype: :class:`Tencentcloud::waf::V20180125::DescribeTopicsResponse`
2389
+ def DescribeTopics(request)
2390
+ body = send_request('DescribeTopics', request.serialize)
2391
+ response = JSON.parse(body)
2392
+ if response['Response'].key?('Error') == false
2393
+ model = DescribeTopicsResponse.new
2394
+ model.deserialize(response['Response'])
2395
+ model
2396
+ else
2397
+ code = response['Response']['Error']['Code']
2398
+ message = response['Response']['Error']['Message']
2399
+ reqid = response['Response']['RequestId']
2400
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2401
+ end
2402
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2403
+ raise e
2404
+ rescue StandardError => e
2405
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2406
+ end
2407
+
2288
2408
  # 在CDC场景下,负载均衡型WAF的添加、编辑域名配置的时候,需要展示CDC负载均衡型WAF(cdc-clb-waf)支持的地域列表,通过DescribeUserCdcClbWafRegions既可以获得当前对客户已经开放的地域列表
2289
2409
 
2290
2410
  # @param request: Request instance for DescribeUserCdcClbWafRegions.
@@ -4088,6 +4208,33 @@ module TencentCloud
4088
4208
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4089
4209
  end
4090
4210
 
4211
+ # 本接口用于检索分析日志,使用该接口时请注意如下事项:
4212
+ # 1. 该接口除受默认接口请求频率限制外,针对单个日志主题,查询并发数不能超过15。
4213
+ # 2. 检索语法建议使用CQL语法规则,请使用SyntaxRule参数,将值设置为1。
4214
+ # 3. API返回数据包最大49MB,建议启用 gzip 压缩(HTTP Request Header Accept-Encoding:gzip)。
4215
+
4216
+ # @param request: Request instance for SearchLog.
4217
+ # @type request: :class:`Tencentcloud::waf::V20180125::SearchLogRequest`
4218
+ # @rtype: :class:`Tencentcloud::waf::V20180125::SearchLogResponse`
4219
+ def SearchLog(request)
4220
+ body = send_request('SearchLog', request.serialize)
4221
+ response = JSON.parse(body)
4222
+ if response['Response'].key?('Error') == false
4223
+ model = SearchLogResponse.new
4224
+ model.deserialize(response['Response'])
4225
+ model
4226
+ else
4227
+ code = response['Response']['Error']['Code']
4228
+ message = response['Response']['Error']['Message']
4229
+ reqid = response['Response']['RequestId']
4230
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4231
+ end
4232
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4233
+ raise e
4234
+ rescue StandardError => e
4235
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4236
+ end
4237
+
4091
4238
  # 切换域名的规则开关
4092
4239
 
4093
4240
  # @param request: Request instance for SwitchDomainRules.
@@ -1098,6 +1098,33 @@ module TencentCloud
1098
1098
  end
1099
1099
  end
1100
1100
 
1101
+ # 免鉴权信息
1102
+ class AnonymousInfo < TencentCloud::Common::AbstractModel
1103
+ # @param Operations: 操作列表,支持trackLog(JS/HTTP上传日志 )和realtimeProducer(kafka协议上传日志)
1104
+ # @type Operations: Array
1105
+ # @param Conditions: 条件列表
1106
+ # @type Conditions: Array
1107
+
1108
+ attr_accessor :Operations, :Conditions
1109
+
1110
+ def initialize(operations=nil, conditions=nil)
1111
+ @Operations = operations
1112
+ @Conditions = conditions
1113
+ end
1114
+
1115
+ def deserialize(params)
1116
+ @Operations = params['Operations']
1117
+ unless params['Conditions'].nil?
1118
+ @Conditions = []
1119
+ params['Conditions'].each do |i|
1120
+ conditioninfo_tmp = ConditionInfo.new
1121
+ conditioninfo_tmp.deserialize(i)
1122
+ @Conditions << conditioninfo_tmp
1123
+ end
1124
+ end
1125
+ end
1126
+ end
1127
+
1101
1128
  # api列表
1102
1129
  class ApiAsset < TencentCloud::Common::AbstractModel
1103
1130
  # @param Domain: 域名
@@ -2700,6 +2727,26 @@ module TencentCloud
2700
2727
  end
2701
2728
  end
2702
2729
 
2730
+ # 日志分析的列属性
2731
+ class Column < TencentCloud::Common::AbstractModel
2732
+ # @param Name: 列的名字
2733
+ # @type Name: String
2734
+ # @param Type: 列的属性
2735
+ # @type Type: String
2736
+
2737
+ attr_accessor :Name, :Type
2738
+
2739
+ def initialize(name=nil, type=nil)
2740
+ @Name = name
2741
+ @Type = type
2742
+ end
2743
+
2744
+ def deserialize(params)
2745
+ @Name = params['Name']
2746
+ @Type = params['Type']
2747
+ end
2748
+ end
2749
+
2703
2750
  # 通用返回
2704
2751
  class CommonRspData < TencentCloud::Common::AbstractModel
2705
2752
  # @param Code: 操作结果
@@ -2720,6 +2767,30 @@ module TencentCloud
2720
2767
  end
2721
2768
  end
2722
2769
 
2770
+ # 免鉴权条件信息
2771
+ class ConditionInfo < TencentCloud::Common::AbstractModel
2772
+ # @param Attributes: 条件属性,目前只支持VpcID
2773
+ # @type Attributes: String
2774
+ # @param Rule: 条件规则,1:等于,2:不等于
2775
+ # @type Rule: Integer
2776
+ # @param ConditionValue: 对应条件属性的值
2777
+ # @type ConditionValue: String
2778
+
2779
+ attr_accessor :Attributes, :Rule, :ConditionValue
2780
+
2781
+ def initialize(attributes=nil, rule=nil, conditionvalue=nil)
2782
+ @Attributes = attributes
2783
+ @Rule = rule
2784
+ @ConditionValue = conditionvalue
2785
+ end
2786
+
2787
+ def deserialize(params)
2788
+ @Attributes = params['Attributes']
2789
+ @Rule = params['Rule']
2790
+ @ConditionValue = params['ConditionValue']
2791
+ end
2792
+ end
2793
+
2723
2794
  # CreateAccessExport请求参数结构体
2724
2795
  class CreateAccessExportRequest < TencentCloud::Common::AbstractModel
2725
2796
  # @param TopicId: 客户要查询的日志主题ID,每个客户都有对应的一个主题
@@ -3035,6 +3106,75 @@ module TencentCloud
3035
3106
  end
3036
3107
  end
3037
3108
 
3109
+ # CreateExport请求参数结构体
3110
+ class CreateExportRequest < TencentCloud::Common::AbstractModel
3111
+ # @param TopicId: 日志主题ID,可以通过DescribeTopics接口获取,访问日志主题ID和攻击日志主题ID方式不同,注意DescribeTopics接口使用方法
3112
+ # @type TopicId: String
3113
+ # @param Count: 日志导出数量, 最大值5000万
3114
+ # @type Count: Integer
3115
+ # @param Query: 日志导出检索语句,不支持<a href="https://cloud.tencent.com/document/product/614/44061" target="_blank">[SQL语句]</a>
3116
+ # @type Query: String
3117
+ # @param From: 日志导出起始时间,毫秒时间戳
3118
+ # @type From: Integer
3119
+ # @param To: 日志导出结束时间,毫秒时间戳
3120
+ # @type To: Integer
3121
+ # @param Order: 日志导出时间排序。desc,asc,默认为desc
3122
+ # @type Order: String
3123
+ # @param Format: 日志导出数据格式。json,csv,默认为json
3124
+ # @type Format: String
3125
+ # @param SyntaxRule: 语法规则, 默认值为0。
3126
+ # 0:Lucene语法,1:CQL语法。
3127
+ # @type SyntaxRule: Integer
3128
+ # @param DerivedFields: 导出字段
3129
+ # @type DerivedFields: Array
3130
+
3131
+ attr_accessor :TopicId, :Count, :Query, :From, :To, :Order, :Format, :SyntaxRule, :DerivedFields
3132
+
3133
+ def initialize(topicid=nil, count=nil, query=nil, from=nil, to=nil, order=nil, format=nil, syntaxrule=nil, derivedfields=nil)
3134
+ @TopicId = topicid
3135
+ @Count = count
3136
+ @Query = query
3137
+ @From = from
3138
+ @To = to
3139
+ @Order = order
3140
+ @Format = format
3141
+ @SyntaxRule = syntaxrule
3142
+ @DerivedFields = derivedfields
3143
+ end
3144
+
3145
+ def deserialize(params)
3146
+ @TopicId = params['TopicId']
3147
+ @Count = params['Count']
3148
+ @Query = params['Query']
3149
+ @From = params['From']
3150
+ @To = params['To']
3151
+ @Order = params['Order']
3152
+ @Format = params['Format']
3153
+ @SyntaxRule = params['SyntaxRule']
3154
+ @DerivedFields = params['DerivedFields']
3155
+ end
3156
+ end
3157
+
3158
+ # CreateExport返回参数结构体
3159
+ class CreateExportResponse < TencentCloud::Common::AbstractModel
3160
+ # @param ExportId: 日志导出ID。
3161
+ # @type ExportId: String
3162
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3163
+ # @type RequestId: String
3164
+
3165
+ attr_accessor :ExportId, :RequestId
3166
+
3167
+ def initialize(exportid=nil, requestid=nil)
3168
+ @ExportId = exportid
3169
+ @RequestId = requestid
3170
+ end
3171
+
3172
+ def deserialize(params)
3173
+ @ExportId = params['ExportId']
3174
+ @RequestId = params['RequestId']
3175
+ end
3176
+ end
3177
+
3038
3178
  # CreateHost请求参数结构体
3039
3179
  class CreateHostRequest < TencentCloud::Common::AbstractModel
3040
3180
  # @param Host: 防护域名配置信息。内网负载均衡器必须携带对应的NumericalVpcId。
@@ -3823,6 +3963,38 @@ module TencentCloud
3823
3963
  end
3824
3964
  end
3825
3965
 
3966
+ # DeleteExport请求参数结构体
3967
+ class DeleteExportRequest < TencentCloud::Common::AbstractModel
3968
+ # @param ExportId: 日志导出ID
3969
+ # @type ExportId: String
3970
+
3971
+ attr_accessor :ExportId
3972
+
3973
+ def initialize(exportid=nil)
3974
+ @ExportId = exportid
3975
+ end
3976
+
3977
+ def deserialize(params)
3978
+ @ExportId = params['ExportId']
3979
+ end
3980
+ end
3981
+
3982
+ # DeleteExport返回参数结构体
3983
+ class DeleteExportResponse < TencentCloud::Common::AbstractModel
3984
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3985
+ # @type RequestId: String
3986
+
3987
+ attr_accessor :RequestId
3988
+
3989
+ def initialize(requestid=nil)
3990
+ @RequestId = requestid
3991
+ end
3992
+
3993
+ def deserialize(params)
3994
+ @RequestId = params['RequestId']
3995
+ end
3996
+ end
3997
+
3826
3998
  # DeleteHost请求参数结构体
3827
3999
  class DeleteHostRequest < TencentCloud::Common::AbstractModel
3828
4000
  # @param HostsDel: 删除的域名列表
@@ -6462,6 +6634,61 @@ module TencentCloud
6462
6634
  end
6463
6635
  end
6464
6636
 
6637
+ # DescribeExports请求参数结构体
6638
+ class DescribeExportsRequest < TencentCloud::Common::AbstractModel
6639
+ # @param TopicId: 日志主题ID,可以通过DescribeTopics接口获取,访问日志主题ID和攻击日志主题ID方式不同,注意DescribeTopics接口使用方法
6640
+ # @type TopicId: String
6641
+ # @param Offset: 分页的偏移量,默认值为0
6642
+ # @type Offset: Integer
6643
+ # @param Limit: 分页单页限制数目,默认值为20,最大值100
6644
+ # @type Limit: Integer
6645
+
6646
+ attr_accessor :TopicId, :Offset, :Limit
6647
+
6648
+ def initialize(topicid=nil, offset=nil, limit=nil)
6649
+ @TopicId = topicid
6650
+ @Offset = offset
6651
+ @Limit = limit
6652
+ end
6653
+
6654
+ def deserialize(params)
6655
+ @TopicId = params['TopicId']
6656
+ @Offset = params['Offset']
6657
+ @Limit = params['Limit']
6658
+ end
6659
+ end
6660
+
6661
+ # DescribeExports返回参数结构体
6662
+ class DescribeExportsResponse < TencentCloud::Common::AbstractModel
6663
+ # @param Exports: 日志导出列表
6664
+ # @type Exports: Array
6665
+ # @param TotalCount: 总数目
6666
+ # @type TotalCount: Integer
6667
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6668
+ # @type RequestId: String
6669
+
6670
+ attr_accessor :Exports, :TotalCount, :RequestId
6671
+
6672
+ def initialize(exports=nil, totalcount=nil, requestid=nil)
6673
+ @Exports = exports
6674
+ @TotalCount = totalcount
6675
+ @RequestId = requestid
6676
+ end
6677
+
6678
+ def deserialize(params)
6679
+ unless params['Exports'].nil?
6680
+ @Exports = []
6681
+ params['Exports'].each do |i|
6682
+ exportinfo_tmp = ExportInfo.new
6683
+ exportinfo_tmp.deserialize(i)
6684
+ @Exports << exportinfo_tmp
6685
+ end
6686
+ end
6687
+ @TotalCount = params['TotalCount']
6688
+ @RequestId = params['RequestId']
6689
+ end
6690
+ end
6691
+
6465
6692
  # DescribeFindDomainList请求参数结构体
6466
6693
  class DescribeFindDomainListRequest < TencentCloud::Common::AbstractModel
6467
6694
  # @param Offset: 分页
@@ -7078,6 +7305,79 @@ module TencentCloud
7078
7305
  end
7079
7306
  end
7080
7307
 
7308
+ # DescribeLogHistogram请求参数结构体
7309
+ class DescribeLogHistogramRequest < TencentCloud::Common::AbstractModel
7310
+ # @param From: 要查询的日志的起始时间,Unix时间戳,单位ms
7311
+ # @type From: Integer
7312
+ # @param To: 要查询的日志的结束时间,Unix时间戳,单位ms
7313
+ # @type To: Integer
7314
+ # @param Query: 查询语句
7315
+ # @type Query: String
7316
+ # @param TopicId: 日志主题ID,可以通过DescribeTopics接口获取,访问日志主题ID和攻击日志主题ID方式不同,注意DescribeTopics接口使用方法
7317
+ # @type TopicId: String
7318
+ # @param Interval: 时间间隔: 单位ms 限制性条件:(To-From) / interval <= 200
7319
+ # @type Interval: Integer
7320
+ # @param SyntaxRule: 检索语法规则,默认值为0。
7321
+ # 0:Lucene语法,1:CQL语法。
7322
+ # 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
7323
+ # @type SyntaxRule: Integer
7324
+
7325
+ attr_accessor :From, :To, :Query, :TopicId, :Interval, :SyntaxRule
7326
+
7327
+ def initialize(from=nil, to=nil, query=nil, topicid=nil, interval=nil, syntaxrule=nil)
7328
+ @From = from
7329
+ @To = to
7330
+ @Query = query
7331
+ @TopicId = topicid
7332
+ @Interval = interval
7333
+ @SyntaxRule = syntaxrule
7334
+ end
7335
+
7336
+ def deserialize(params)
7337
+ @From = params['From']
7338
+ @To = params['To']
7339
+ @Query = params['Query']
7340
+ @TopicId = params['TopicId']
7341
+ @Interval = params['Interval']
7342
+ @SyntaxRule = params['SyntaxRule']
7343
+ end
7344
+ end
7345
+
7346
+ # DescribeLogHistogram返回参数结构体
7347
+ class DescribeLogHistogramResponse < TencentCloud::Common::AbstractModel
7348
+ # @param Interval: 统计周期: 单位ms
7349
+ # @type Interval: Integer
7350
+ # @param TotalCount: 命中关键字的日志总条数
7351
+ # @type TotalCount: Integer
7352
+ # @param HistogramInfos: 周期内统计结果详情
7353
+ # @type HistogramInfos: Array
7354
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7355
+ # @type RequestId: String
7356
+
7357
+ attr_accessor :Interval, :TotalCount, :HistogramInfos, :RequestId
7358
+
7359
+ def initialize(interval=nil, totalcount=nil, histograminfos=nil, requestid=nil)
7360
+ @Interval = interval
7361
+ @TotalCount = totalcount
7362
+ @HistogramInfos = histograminfos
7363
+ @RequestId = requestid
7364
+ end
7365
+
7366
+ def deserialize(params)
7367
+ @Interval = params['Interval']
7368
+ @TotalCount = params['TotalCount']
7369
+ unless params['HistogramInfos'].nil?
7370
+ @HistogramInfos = []
7371
+ params['HistogramInfos'].each do |i|
7372
+ histograminfo_tmp = HistogramInfo.new
7373
+ histograminfo_tmp.deserialize(i)
7374
+ @HistogramInfos << histograminfo_tmp
7375
+ end
7376
+ end
7377
+ @RequestId = params['RequestId']
7378
+ end
7379
+ end
7380
+
7081
7381
  # DescribeModuleStatus请求参数结构体
7082
7382
  class DescribeModuleStatusRequest < TencentCloud::Common::AbstractModel
7083
7383
  # @param Domain: 要查询状态的域名
@@ -8211,6 +8511,82 @@ module TencentCloud
8211
8511
  end
8212
8512
  end
8213
8513
 
8514
+ # DescribeTopics请求参数结构体
8515
+ class DescribeTopicsRequest < TencentCloud::Common::AbstractModel
8516
+ # @param Filters: <ul><li>topicName 按照【日志主题名称】进行过滤,默认为模糊匹配,Filter.Values 当要查询访问日志时为access,查询攻击日志时为attack</li></ul>注意:每次请求的 Filters 的上限为10,Filter.Values 的上限为100。
8517
+ # @type Filters: Array
8518
+ # @param Offset: 分页的偏移量,默认值为0。
8519
+ # @type Offset: Integer
8520
+ # @param Limit: 分页单页限制数目,默认值为20,最大值100。
8521
+ # @type Limit: Integer
8522
+ # @param PreciseSearch: 控制Filters相关字段是否为精确匹配。
8523
+ # <ul><li>0: 默认值,topicName 和 logsetName 模糊匹配</li>
8524
+ # <li>1: topicName 精确匹配</li>
8525
+ # <li>2: logsetName精确匹配</li>
8526
+ # <li>3: topicName 和logsetName 都精确匹配</li></ul>
8527
+ # @type PreciseSearch: Integer
8528
+ # @param BizType: 主题类型
8529
+ # <ul><li>0:日志主题,默认值</li>
8530
+ # <li>1:指标主题</li></ul>
8531
+ # @type BizType: Integer
8532
+
8533
+ attr_accessor :Filters, :Offset, :Limit, :PreciseSearch, :BizType
8534
+
8535
+ def initialize(filters=nil, offset=nil, limit=nil, precisesearch=nil, biztype=nil)
8536
+ @Filters = filters
8537
+ @Offset = offset
8538
+ @Limit = limit
8539
+ @PreciseSearch = precisesearch
8540
+ @BizType = biztype
8541
+ end
8542
+
8543
+ def deserialize(params)
8544
+ unless params['Filters'].nil?
8545
+ @Filters = []
8546
+ params['Filters'].each do |i|
8547
+ filtercls_tmp = FilterCls.new
8548
+ filtercls_tmp.deserialize(i)
8549
+ @Filters << filtercls_tmp
8550
+ end
8551
+ end
8552
+ @Offset = params['Offset']
8553
+ @Limit = params['Limit']
8554
+ @PreciseSearch = params['PreciseSearch']
8555
+ @BizType = params['BizType']
8556
+ end
8557
+ end
8558
+
8559
+ # DescribeTopics返回参数结构体
8560
+ class DescribeTopicsResponse < TencentCloud::Common::AbstractModel
8561
+ # @param Topics: 日志主题列表
8562
+ # @type Topics: Array
8563
+ # @param TotalCount: 总数目
8564
+ # @type TotalCount: Integer
8565
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8566
+ # @type RequestId: String
8567
+
8568
+ attr_accessor :Topics, :TotalCount, :RequestId
8569
+
8570
+ def initialize(topics=nil, totalcount=nil, requestid=nil)
8571
+ @Topics = topics
8572
+ @TotalCount = totalcount
8573
+ @RequestId = requestid
8574
+ end
8575
+
8576
+ def deserialize(params)
8577
+ unless params['Topics'].nil?
8578
+ @Topics = []
8579
+ params['Topics'].each do |i|
8580
+ topicinfo_tmp = TopicInfo.new
8581
+ topicinfo_tmp.deserialize(i)
8582
+ @Topics << topicinfo_tmp
8583
+ end
8584
+ end
8585
+ @TotalCount = params['TotalCount']
8586
+ @RequestId = params['RequestId']
8587
+ end
8588
+ end
8589
+
8214
8590
  # DescribeUserCdcClbWafRegions请求参数结构体
8215
8591
  class DescribeUserCdcClbWafRegionsRequest < TencentCloud::Common::AbstractModel
8216
8592
 
@@ -9579,20 +9955,94 @@ module TencentCloud
9579
9955
  end
9580
9956
  end
9581
9957
 
9582
- # 设置哪些字段是否存储或转发
9583
- class FieldWriteConfig < TencentCloud::Common::AbstractModel
9584
- # @param EnableHeaders: 1:开启 0:不开启
9585
- # @type EnableHeaders: Integer
9586
- # @param EnableBody: 1:开启 0:不开启
9587
- # @type EnableBody: Integer
9588
- # @param EnableBot: 1:开启 0:不开启
9589
- # @type EnableBot: Integer
9590
-
9591
- attr_accessor :EnableHeaders, :EnableBody, :EnableBot
9592
-
9593
- def initialize(enableheaders=nil, enablebody=nil, enablebot=nil)
9594
- @EnableHeaders = enableheaders
9595
- @EnableBody = enablebody
9958
+ # 日志导出信息
9959
+ class ExportInfo < TencentCloud::Common::AbstractModel
9960
+ # @param TopicId: 日志主题ID
9961
+ # @type TopicId: String
9962
+ # @param ExportId: 日志导出任务ID
9963
+ # @type ExportId: String
9964
+ # @param Query: 日志导出查询语句
9965
+ # @type Query: String
9966
+ # @param FileName: 日志导出文件名
9967
+ # @type FileName: String
9968
+ # @param FileSize: 日志文件大小
9969
+ # @type FileSize: Integer
9970
+ # @param Order: 日志导出时间排序
9971
+ # @type Order: String
9972
+ # @param Format: 日志导出格式
9973
+ # @type Format: String
9974
+ # @param Count: 日志导出数量
9975
+ # @type Count: Integer
9976
+ # @param Status: 日志下载状态。Processing:导出正在进行中,Completed:导出完成,Failed:导出失败,Expired:日志导出已过期(三天有效期), Queuing 排队中
9977
+ # @type Status: String
9978
+ # @param From: 日志导出起始时间
9979
+ # @type From: Integer
9980
+ # @param To: 日志导出结束时间
9981
+ # @type To: Integer
9982
+ # @param CosPath: 日志导出路径,有效期一个小时,请尽快使用该路径下载。
9983
+ # @type CosPath: String
9984
+ # @param CreateTime: 日志导出创建时间
9985
+ # @type CreateTime: String
9986
+ # @param SyntaxRule: 语法规则。 默认值为0。
9987
+ # 0:Lucene语法,1:CQL语法。
9988
+ # @type SyntaxRule: Integer
9989
+ # @param DerivedFields: 导出字段
9990
+ # 注意:此字段可能返回 null,表示取不到有效值。
9991
+ # @type DerivedFields: Array
9992
+
9993
+ attr_accessor :TopicId, :ExportId, :Query, :FileName, :FileSize, :Order, :Format, :Count, :Status, :From, :To, :CosPath, :CreateTime, :SyntaxRule, :DerivedFields
9994
+
9995
+ def initialize(topicid=nil, exportid=nil, query=nil, filename=nil, filesize=nil, order=nil, format=nil, count=nil, status=nil, from=nil, to=nil, cospath=nil, createtime=nil, syntaxrule=nil, derivedfields=nil)
9996
+ @TopicId = topicid
9997
+ @ExportId = exportid
9998
+ @Query = query
9999
+ @FileName = filename
10000
+ @FileSize = filesize
10001
+ @Order = order
10002
+ @Format = format
10003
+ @Count = count
10004
+ @Status = status
10005
+ @From = from
10006
+ @To = to
10007
+ @CosPath = cospath
10008
+ @CreateTime = createtime
10009
+ @SyntaxRule = syntaxrule
10010
+ @DerivedFields = derivedfields
10011
+ end
10012
+
10013
+ def deserialize(params)
10014
+ @TopicId = params['TopicId']
10015
+ @ExportId = params['ExportId']
10016
+ @Query = params['Query']
10017
+ @FileName = params['FileName']
10018
+ @FileSize = params['FileSize']
10019
+ @Order = params['Order']
10020
+ @Format = params['Format']
10021
+ @Count = params['Count']
10022
+ @Status = params['Status']
10023
+ @From = params['From']
10024
+ @To = params['To']
10025
+ @CosPath = params['CosPath']
10026
+ @CreateTime = params['CreateTime']
10027
+ @SyntaxRule = params['SyntaxRule']
10028
+ @DerivedFields = params['DerivedFields']
10029
+ end
10030
+ end
10031
+
10032
+ # 设置哪些字段是否存储或转发
10033
+ class FieldWriteConfig < TencentCloud::Common::AbstractModel
10034
+ # @param EnableHeaders: 1:开启 0:不开启
10035
+ # @type EnableHeaders: Integer
10036
+ # @param EnableBody: 1:开启 0:不开启
10037
+ # @type EnableBody: Integer
10038
+ # @param EnableBot: 1:开启 0:不开启
10039
+ # @type EnableBot: Integer
10040
+
10041
+ attr_accessor :EnableHeaders, :EnableBody, :EnableBot
10042
+
10043
+ def initialize(enableheaders=nil, enablebody=nil, enablebot=nil)
10044
+ @EnableHeaders = enableheaders
10045
+ @EnableBody = enablebody
9596
10046
  @EnableBot = enablebot
9597
10047
  end
9598
10048
 
@@ -9603,6 +10053,26 @@ module TencentCloud
9603
10053
  end
9604
10054
  end
9605
10055
 
10056
+ # 过滤器
10057
+ class FilterCls < TencentCloud::Common::AbstractModel
10058
+ # @param Key: 需要过滤的字段。
10059
+ # @type Key: String
10060
+ # @param Values: 需要过滤的值。
10061
+ # @type Values: Array
10062
+
10063
+ attr_accessor :Key, :Values
10064
+
10065
+ def initialize(key=nil, values=nil)
10066
+ @Key = key
10067
+ @Values = values
10068
+ end
10069
+
10070
+ def deserialize(params)
10071
+ @Key = params['Key']
10072
+ @Values = params['Values']
10073
+ end
10074
+ end
10075
+
9606
10076
  # 过滤数组
9607
10077
  class FiltersItemNew < TencentCloud::Common::AbstractModel
9608
10078
  # @param Name: 字段名; 过滤
@@ -10307,6 +10777,26 @@ module TencentCloud
10307
10777
  end
10308
10778
  end
10309
10779
 
10780
+ # 直方图详细信息
10781
+ class HistogramInfo < TencentCloud::Common::AbstractModel
10782
+ # @param Count: 统计周期内的日志条数
10783
+ # @type Count: Integer
10784
+ # @param BTime: 按 period 取整后的 unix timestamp: 单位毫秒
10785
+ # @type BTime: Integer
10786
+
10787
+ attr_accessor :Count, :BTime
10788
+
10789
+ def initialize(count=nil, btime=nil)
10790
+ @Count = count
10791
+ @BTime = btime
10792
+ end
10793
+
10794
+ def deserialize(params)
10795
+ @Count = params['Count']
10796
+ @BTime = params['BTime']
10797
+ end
10798
+ end
10799
+
10310
10800
  # CLB-WAF删除域名参数
10311
10801
  class HostDel < TencentCloud::Common::AbstractModel
10312
10802
  # @param Domain: 域名
@@ -11435,6 +11925,109 @@ module TencentCloud
11435
11925
  end
11436
11926
  end
11437
11927
 
11928
+ # 日志结果信息
11929
+ class LogInfo < TencentCloud::Common::AbstractModel
11930
+ # @param Time: 日志时间,单位ms
11931
+ # @type Time: Integer
11932
+ # @param TopicId: 日志主题ID
11933
+ # @type TopicId: String
11934
+ # @param TopicName: 日志主题名称
11935
+ # @type TopicName: String
11936
+ # @param Source: 日志来源IP
11937
+ # @type Source: String
11938
+ # @param FileName: 日志文件名称
11939
+ # @type FileName: String
11940
+ # @param PkgId: 日志上报请求包的ID
11941
+ # @type PkgId: String
11942
+ # @param PkgLogId: 请求包内日志的ID
11943
+ # @type PkgLogId: String
11944
+ # @param LogJson: 日志内容的Json序列化字符串
11945
+ # 注意:此字段可能返回 null,表示取不到有效值。
11946
+ # @type LogJson: String
11947
+ # @param HostName: 日志来源主机名称
11948
+ # 注意:此字段可能返回 null,表示取不到有效值。
11949
+ # @type HostName: String
11950
+ # @param RawLog: 原始日志(仅在日志创建索引异常时有值)
11951
+ # 注意:此字段可能返回 null,表示取不到有效值。
11952
+ # @type RawLog: String
11953
+ # @param IndexStatus: 日志创建索引异常原因(仅在日志创建索引异常时有值)
11954
+ # 注意:此字段可能返回 null,表示取不到有效值。
11955
+ # @type IndexStatus: String
11956
+
11957
+ attr_accessor :Time, :TopicId, :TopicName, :Source, :FileName, :PkgId, :PkgLogId, :LogJson, :HostName, :RawLog, :IndexStatus
11958
+
11959
+ def initialize(time=nil, topicid=nil, topicname=nil, source=nil, filename=nil, pkgid=nil, pkglogid=nil, logjson=nil, hostname=nil, rawlog=nil, indexstatus=nil)
11960
+ @Time = time
11961
+ @TopicId = topicid
11962
+ @TopicName = topicname
11963
+ @Source = source
11964
+ @FileName = filename
11965
+ @PkgId = pkgid
11966
+ @PkgLogId = pkglogid
11967
+ @LogJson = logjson
11968
+ @HostName = hostname
11969
+ @RawLog = rawlog
11970
+ @IndexStatus = indexstatus
11971
+ end
11972
+
11973
+ def deserialize(params)
11974
+ @Time = params['Time']
11975
+ @TopicId = params['TopicId']
11976
+ @TopicName = params['TopicName']
11977
+ @Source = params['Source']
11978
+ @FileName = params['FileName']
11979
+ @PkgId = params['PkgId']
11980
+ @PkgLogId = params['PkgLogId']
11981
+ @LogJson = params['LogJson']
11982
+ @HostName = params['HostName']
11983
+ @RawLog = params['RawLog']
11984
+ @IndexStatus = params['IndexStatus']
11985
+ end
11986
+ end
11987
+
11988
+ # 日志中的KV对
11989
+ class LogItem < TencentCloud::Common::AbstractModel
11990
+ # @param Key: 日志Key
11991
+ # @type Key: String
11992
+ # @param Value: 日志Value
11993
+ # @type Value: String
11994
+
11995
+ attr_accessor :Key, :Value
11996
+
11997
+ def initialize(key=nil, value=nil)
11998
+ @Key = key
11999
+ @Value = value
12000
+ end
12001
+
12002
+ def deserialize(params)
12003
+ @Key = params['Key']
12004
+ @Value = params['Value']
12005
+ end
12006
+ end
12007
+
12008
+ # LogItem的数组
12009
+ class LogItems < TencentCloud::Common::AbstractModel
12010
+ # @param Data: 分析结果返回的KV数据对
12011
+ # @type Data: Array
12012
+
12013
+ attr_accessor :Data
12014
+
12015
+ def initialize(data=nil)
12016
+ @Data = data
12017
+ end
12018
+
12019
+ def deserialize(params)
12020
+ unless params['Data'].nil?
12021
+ @Data = []
12022
+ params['Data'].each do |i|
12023
+ logitem_tmp = LogItem.new
12024
+ logitem_tmp.deserialize(i)
12025
+ @Data << logitem_tmp
12026
+ end
12027
+ end
12028
+ end
12029
+ end
12030
+
11438
12031
  # 重保防护资源信息
11439
12032
  class MajorEventsPkg < TencentCloud::Common::AbstractModel
11440
12033
  # @param ResourceIds: 资源id
@@ -15527,6 +16120,176 @@ module TencentCloud
15527
16120
  end
15528
16121
  end
15529
16122
 
16123
+ # SearchLog请求参数结构体
16124
+ class SearchLogRequest < TencentCloud::Common::AbstractModel
16125
+ # @param From: 要检索分析的日志的起始时间,Unix时间戳(毫秒)
16126
+ # @type From: Integer
16127
+ # @param To: 要检索分析的日志的结束时间,Unix时间戳(毫秒)
16128
+ # @type To: Integer
16129
+ # @param Query: 检索分析语句,最大长度为12KB
16130
+ # 语句由 <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语句
16131
+ # 使用*或空字符串可查询所有日志
16132
+ # @type Query: String
16133
+ # @param SyntaxRule: 检索语法规则,默认值为0,推荐使用1 (CQL语法)。
16134
+ # 0:Lucene语法,1:CQL语法。
16135
+ # 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
16136
+ # @type SyntaxRule: Integer
16137
+ # @param TopicId: 日志主题ID,可以通过DescribeTopics接口获取,访问日志主题ID和攻击日志主题ID方式不同,注意DescribeTopics接口使用方法
16138
+ # @type TopicId: String
16139
+ # @param Sort: 原始日志是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
16140
+ # 注意:
16141
+ # * 仅当检索分析语句(Query)不包含SQL时有效
16142
+ # * SQL结果排序方式参考<a href="https://cloud.tencent.com/document/product/614/58978" target="_blank">SQL ORDER BY语法</a>
16143
+ # @type Sort: String
16144
+ # @param Limit: 表示单次查询返回的原始日志条数,默认为100,最大值为1000。
16145
+ # 注意:
16146
+ # * 仅当检索分析语句(Query)不包含SQL时有效
16147
+ # * SQL结果条数指定方式参考<a href="https://cloud.tencent.com/document/product/614/58977" target="_blank">SQL LIMIT语法</a>
16148
+
16149
+ # 可通过两种方式获取后续更多日志:
16150
+ # * Context:透传上次接口返回的Context值,获取后续更多日志,总计最多可获取1万条原始日志
16151
+ # * Offset:偏移量,表示从第几行开始返回原始日志,无日志条数限制
16152
+ # @type Limit: Integer
16153
+ # @param Offset: 查询原始日志的偏移量,表示从第几行开始返回原始日志,默认为0。
16154
+ # 注意:
16155
+ # * 仅当检索分析语句(Query)不包含SQL时有效
16156
+ # * 不能与Context参数同时使用
16157
+ # * 仅适用于单日志主题检索
16158
+ # @type Offset: Integer
16159
+ # @param Context: 透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
16160
+ # 注意:
16161
+ # * 透传该参数时,请勿修改除该参数外的其它参数
16162
+ # * 仅适用于单日志主题检索,检索多个日志主题时,请使用Topics中的Context
16163
+ # * 仅当检索分析语句(Query)不包含SQL时有效,SQL获取后续结果参考<a href="https://cloud.tencent.com/document/product/614/58977" target="_blank">SQL LIMIT语法</a>
16164
+ # @type Context: String
16165
+ # @param SamplingRate: 执行统计分析(Query中包含SQL)时,是否对原始日志先进行采样,再进行统计分析。
16166
+ # 0:自动采样;
16167
+ # 0~1:按指定采样率采样,例如0.02;
16168
+ # 1:不采样,即精确分析
16169
+ # 默认值为1
16170
+ # @type SamplingRate: Float
16171
+ # @param UseNewAnalysis: 为true代表使用新的检索结果返回方式,输出参数AnalysisRecords和Columns有效
16172
+ # 为false时代表使用老的检索结果返回方式, 输出AnalysisResults和ColNames有效
16173
+ # 两种返回方式在编码格式上有少量区别,建议使用true
16174
+ # @type UseNewAnalysis: Boolean
16175
+
16176
+ attr_accessor :From, :To, :Query, :SyntaxRule, :TopicId, :Sort, :Limit, :Offset, :Context, :SamplingRate, :UseNewAnalysis
16177
+
16178
+ def initialize(from=nil, to=nil, query=nil, syntaxrule=nil, topicid=nil, sort=nil, limit=nil, offset=nil, context=nil, samplingrate=nil, usenewanalysis=nil)
16179
+ @From = from
16180
+ @To = to
16181
+ @Query = query
16182
+ @SyntaxRule = syntaxrule
16183
+ @TopicId = topicid
16184
+ @Sort = sort
16185
+ @Limit = limit
16186
+ @Offset = offset
16187
+ @Context = context
16188
+ @SamplingRate = samplingrate
16189
+ @UseNewAnalysis = usenewanalysis
16190
+ end
16191
+
16192
+ def deserialize(params)
16193
+ @From = params['From']
16194
+ @To = params['To']
16195
+ @Query = params['Query']
16196
+ @SyntaxRule = params['SyntaxRule']
16197
+ @TopicId = params['TopicId']
16198
+ @Sort = params['Sort']
16199
+ @Limit = params['Limit']
16200
+ @Offset = params['Offset']
16201
+ @Context = params['Context']
16202
+ @SamplingRate = params['SamplingRate']
16203
+ @UseNewAnalysis = params['UseNewAnalysis']
16204
+ end
16205
+ end
16206
+
16207
+ # SearchLog返回参数结构体
16208
+ class SearchLogResponse < TencentCloud::Common::AbstractModel
16209
+ # @param Context: 透传本次接口返回的Context值,可获取后续更多日志,过期时间1小时。
16210
+ # 注意:
16211
+ # * 仅适用于单日志主题检索,检索多个日志主题时,请使用Topics中的Context
16212
+ # @type Context: String
16213
+ # @param ListOver: 符合检索条件的日志是否已全部返回,如未全部返回可使用Context参数获取后续更多日志
16214
+ # 注意:仅当检索分析语句(Query)不包含SQL时有效
16215
+ # @type ListOver: Boolean
16216
+ # @param Analysis: 返回的是否为统计分析(即SQL)结果
16217
+ # @type Analysis: Boolean
16218
+ # @param Results: 匹配检索条件的原始日志
16219
+ # 注意:此字段可能返回 null,表示取不到有效值。
16220
+ # @type Results: Array
16221
+ # @param ColNames: 日志统计分析结果的列名
16222
+ # 当UseNewAnalysis为false时生效
16223
+ # 注意:此字段可能返回 null,表示取不到有效值。
16224
+ # @type ColNames: Array
16225
+ # @param AnalysisResults: 日志统计分析结果
16226
+ # 当UseNewAnalysis为false时生效
16227
+ # 注意:此字段可能返回 null,表示取不到有效值。
16228
+ # @type AnalysisResults: Array
16229
+ # @param AnalysisRecords: 日志统计分析结果
16230
+ # 当UseNewAnalysis为true时生效
16231
+ # 注意:此字段可能返回 null,表示取不到有效值。
16232
+ # @type AnalysisRecords: Array
16233
+ # @param Columns: 日志统计分析结果的列属性
16234
+ # 当UseNewAnalysis为true时生效
16235
+ # 注意:此字段可能返回 null,表示取不到有效值。
16236
+ # @type Columns: Array
16237
+ # @param SamplingRate: 本次统计分析使用的采样率
16238
+ # 注意:此字段可能返回 null,表示取不到有效值。
16239
+ # @type SamplingRate: Float
16240
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16241
+ # @type RequestId: String
16242
+
16243
+ attr_accessor :Context, :ListOver, :Analysis, :Results, :ColNames, :AnalysisResults, :AnalysisRecords, :Columns, :SamplingRate, :RequestId
16244
+
16245
+ def initialize(context=nil, listover=nil, analysis=nil, results=nil, colnames=nil, analysisresults=nil, analysisrecords=nil, columns=nil, samplingrate=nil, requestid=nil)
16246
+ @Context = context
16247
+ @ListOver = listover
16248
+ @Analysis = analysis
16249
+ @Results = results
16250
+ @ColNames = colnames
16251
+ @AnalysisResults = analysisresults
16252
+ @AnalysisRecords = analysisrecords
16253
+ @Columns = columns
16254
+ @SamplingRate = samplingrate
16255
+ @RequestId = requestid
16256
+ end
16257
+
16258
+ def deserialize(params)
16259
+ @Context = params['Context']
16260
+ @ListOver = params['ListOver']
16261
+ @Analysis = params['Analysis']
16262
+ unless params['Results'].nil?
16263
+ @Results = []
16264
+ params['Results'].each do |i|
16265
+ loginfo_tmp = LogInfo.new
16266
+ loginfo_tmp.deserialize(i)
16267
+ @Results << loginfo_tmp
16268
+ end
16269
+ end
16270
+ @ColNames = params['ColNames']
16271
+ unless params['AnalysisResults'].nil?
16272
+ @AnalysisResults = []
16273
+ params['AnalysisResults'].each do |i|
16274
+ logitems_tmp = LogItems.new
16275
+ logitems_tmp.deserialize(i)
16276
+ @AnalysisResults << logitems_tmp
16277
+ end
16278
+ end
16279
+ @AnalysisRecords = params['AnalysisRecords']
16280
+ unless params['Columns'].nil?
16281
+ @Columns = []
16282
+ params['Columns'].each do |i|
16283
+ column_tmp = Column.new
16284
+ column_tmp.deserialize(i)
16285
+ @Columns << column_tmp
16286
+ end
16287
+ end
16288
+ @SamplingRate = params['SamplingRate']
16289
+ @RequestId = params['RequestId']
16290
+ end
16291
+ end
16292
+
15530
16293
  # 参数包装
15531
16294
  class SessionData < TencentCloud::Common::AbstractModel
15532
16295
  # @param Res: session定义
@@ -15644,7 +16407,7 @@ module TencentCloud
15644
16407
 
15645
16408
  # 匹配字段不同,相应的匹配参数、逻辑符号、匹配内容有所不同
15646
16409
  # 具体如下所示:
15647
- # <table><thead><tr><th>匹配字段</th><th>匹配参数</th><th>逻辑符号</th><th>匹配内容</th></tr></thead><tbody><tr><td>IP(来源IP)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>多个IP以英文逗号隔开,最多20个</td></tr><tr><td>IPV6(来源IPv6)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>支持单个IPV6地址</td></tr><tr><td>Referer(Referer)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>URL(请求路径)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)<br/></td><td>请以/开头,512个字符以内</td></tr><tr><td>UserAgent(UserAgent)</td><td>不支持参数</td><td>同匹配字段<font color="Red">Referer</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>HTTP_METHOD(HTTP请求方法)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)</td><td>请输入方法名称,建议大写</td></tr><tr><td>QUERY_STRING(请求字符串)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET(GET参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_PARAMS_NAMES(GET参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST(POST参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_POST_NAMES(POST参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST_BODY(完整BODY)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入BODY内容,512个字符以内</td></tr><tr><td>COOKIE(Cookie)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>rematch(正则匹配)</td><td><font color="Red">暂不支持</font></td></tr><tr><td>GET_COOKIES_NAMES(Cookie参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>ARGS_COOKIE(Cookie参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_HEADERS_NAMES(Header参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,建议小写,512个字符以内</td></tr><tr><td>ARGS_HEADER(Header参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>CONTENT_LENGTH(Content-length)</td><td>支持参数录入</td><td>numgt(数值大于)<br/>numlt(数值小于)<br/>numeq(数值等于)<br/></td><td>请输入0-9999999999999之间的整数</td></tr><tr><td>IP_GEO(来源IP归属地)</td><td>支持参数录入</td><td>geo_in(属于)<br/>geo_not_in(不属于)<br/></td><td>请输入内容,10240字符以内,格式为序列化的JSON,格式为:[{"Country":"中国","Region":"广东","City":"深圳"}]</td></tr>
16410
+ # <table><thead><tr><th>匹配字段</th><th>匹配参数</th><th>逻辑符号</th><th>匹配内容</th></tr></thead><tbody><tr><td>IP(来源IP)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>多个IP以英文逗号隔开,最多20个</td></tr><tr><td>IPV6(来源IPv6)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>支持单个IPV6地址</td></tr><tr><td>Referer(Referer)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>URL(请求路径)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)<br/></td><td>请以/开头,512个字符以内</td></tr><tr><td>UserAgent(UserAgent)</td><td>不支持参数</td><td>同匹配字段<font color="Red">Referer</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>HTTP_METHOD(HTTP请求方法)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)</td><td>请输入方法名称,建议大写</td></tr><tr><td>QUERY_STRING(请求字符串)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET(GET参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_PARAMS_NAMES(GET参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST(POST参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_POST_NAMES(POST参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST_BODY(完整BODY)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入BODY内容,512个字符以内</td></tr><tr><td>COOKIE(Cookie)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>rematch(正则匹配)</td><td><font color="Red">暂不支持</font></td></tr><tr><td>GET_COOKIES_NAMES(Cookie参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>ARGS_COOKIE(Cookie参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_HEADERS_NAMES(Header参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,建议小写,512个字符以内</td></tr><tr><td>ARGS_HEADER(Header参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>CONTENT_LENGTH(Content-length)</td><td>支持参数录入</td><td>numgt(数值大于)<br/>numlt(数值小于)<br/>numeq(数值等于)<br/></td><td>请输入0-9999999999999之间的整数</td></tr><tr><td>IP_GEO(来源IP归属地)</td><td>支持参数录入</td><td>geo_in(属于)<br/>geo_not_in(不属于)<br/></td><td>请输入内容,10240字符以内,格式为序列化的JSON,格式为:[{"Country":"中国","Region":"广东","City":"深圳"}]</td></tr><tr><td>CAPTCHA_RISK(验证码风险)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)<br/>belong(属于)<br/>not_belong(不属于)<br/>null(不存在)<br/>exist(存在)</td><td>请输入风险等级值,支持数值范围0-255</td></tr><tr><td>CAPTCHA_DEVICE_RISK(验证码设备风险)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)<br/>belong(属于)<br/>not_belong(不属于)<br/>null(不存在)<br/>exist(存在)</td><td>请输入设备风险代码,支持取值:101、201、301、401、501、601、701</td></tr><tr><td>CAPTCHAR_SCORE(验证码风险评估分)</td><td>不支持参数</td><td>numeq(数值等于)<br/>numgt(数值大于)<br/>numlt(数值小于)<br/>numle(数值小于等于)<br/>numge(数值大于等于)<br/>null(不存在)<br/>exist(存在)</td><td>请输入评估分数,支持数值范围0-100</td></tr>
15648
16411
  # </tbody></table>
15649
16412
  # @type Field: String
15650
16413
  # @param CompareFunc: 逻辑符号
@@ -15666,6 +16429,9 @@ module TencentCloud
15666
16429
  # numgt ( 数值大于)
15667
16430
  # numlt ( 数值小于)
15668
16431
  # numeq ( 数值等于)
16432
+ # numneq ( 数值不等于)
16433
+ # numle ( 数值小于等于)
16434
+ # numge ( 数值大于等于)
15669
16435
  # geo_in ( IP地理属于)
15670
16436
  # geo_not_in ( IP地理不属于)
15671
16437
  # 各匹配字段对应的逻辑符号不同,详见上述匹配字段表格
@@ -15868,6 +16634,17 @@ module TencentCloud
15868
16634
  end
15869
16635
  end
15870
16636
 
16637
+ # 创建资源实例时同时绑定的标签对说明
16638
+ class Tag < TencentCloud::Common::AbstractModel
16639
+
16640
+
16641
+ def initialize()
16642
+ end
16643
+
16644
+ def deserialize(params)
16645
+ end
16646
+ end
16647
+
15871
16648
  # 需要开启/关闭API安全的 实例+域名 组合实体
15872
16649
  class TargetEntity < TencentCloud::Common::AbstractModel
15873
16650
  # @param InstanceId: 实例ID
@@ -15928,6 +16705,158 @@ module TencentCloud
15928
16705
  end
15929
16706
  end
15930
16707
 
16708
+ # 日志主题扩展信息
16709
+ class TopicExtendInfo < TencentCloud::Common::AbstractModel
16710
+ # @param AnonymousAccess: 日志主题免鉴权配置信息
16711
+ # 注意:此字段可能返回 null,表示取不到有效值。
16712
+ # @type AnonymousAccess: :class:`Tencentcloud::Waf.v20180125.models.AnonymousInfo`
16713
+
16714
+ attr_accessor :AnonymousAccess
16715
+
16716
+ def initialize(anonymousaccess=nil)
16717
+ @AnonymousAccess = anonymousaccess
16718
+ end
16719
+
16720
+ def deserialize(params)
16721
+ unless params['AnonymousAccess'].nil?
16722
+ @AnonymousAccess = AnonymousInfo.new
16723
+ @AnonymousAccess.deserialize(params['AnonymousAccess'])
16724
+ end
16725
+ end
16726
+ end
16727
+
16728
+ # 主题基本信息
16729
+ class TopicInfo < TencentCloud::Common::AbstractModel
16730
+ # @param LogsetId: 日志集ID
16731
+ # @type LogsetId: String
16732
+ # @param TopicId: 主题ID
16733
+ # @type TopicId: String
16734
+ # @param TopicName: 主题名称
16735
+ # @type TopicName: String
16736
+ # @param PartitionCount: 主题分区个数
16737
+ # @type PartitionCount: Integer
16738
+ # @param Index: 主题是否开启索引(主题类型需为日志主题)
16739
+ # @type Index: Boolean
16740
+ # @param AssumerName: 云产品标识,主题由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
16741
+ # 注意:此字段可能返回 null,表示取不到有效值。
16742
+ # @type AssumerName: String
16743
+ # @param CreateTime: 创建时间
16744
+ # @type CreateTime: String
16745
+ # @param Status: 主题是否开启采集,true:开启采集;false:关闭采集。
16746
+ # 创建日志主题时默认开启,可通过SDK调用ModifyTopic修改此字段。
16747
+ # 控制台目前不支持修改此参数。
16748
+ # @type Status: Boolean
16749
+ # @param Tags: 主题绑定的标签信息
16750
+ # 注意:此字段可能返回 null,表示取不到有效值。
16751
+ # @type Tags: Array
16752
+ # @param AutoSplit: 该主题是否开启自动分裂
16753
+ # 注意:此字段可能返回 null,表示取不到有效值。
16754
+ # @type AutoSplit: Boolean
16755
+ # @param MaxSplitPartitions: 若开启自动分裂的话,该主题能够允许的最大分区数
16756
+ # 注意:此字段可能返回 null,表示取不到有效值。
16757
+ # @type MaxSplitPartitions: Integer
16758
+ # @param StorageType: 主题的存储类型
16759
+ # 注意:此字段可能返回 null,表示取不到有效值。
16760
+ # @type StorageType: String
16761
+ # @param Period: 生命周期,单位天,可取值范围1~3600。取值为3640时代表永久保存
16762
+ # 注意:此字段可能返回 null,表示取不到有效值。
16763
+ # @type Period: Integer
16764
+ # @param SubAssumerName: 云产品二级标识,日志主题由其它云产品创建时,该字段会显示云产品名称及其日志类型的二级分类,例如TKE-Audit、TKE-Event。部分云产品仅有云产品标识(AssumerName),无该字段。
16765
+ # 注意:此字段可能返回 null,表示取不到有效值。
16766
+ # @type SubAssumerName: String
16767
+ # @param Describes: 主题描述
16768
+ # 注意:此字段可能返回 null,表示取不到有效值。
16769
+ # @type Describes: String
16770
+ # @param HotPeriod: 开启日志沉降,标准存储的生命周期, hotPeriod < Period。
16771
+ # 标准存储为 hotPeriod, 低频存储则为 Period-hotPeriod。(主题类型需为日志主题)
16772
+ # HotPeriod=0为没有开启日志沉降。
16773
+ # 注意:此字段可能返回 null,表示取不到有效值。
16774
+ # @type HotPeriod: Integer
16775
+ # @param BizType: 主题类型。
16776
+ # - 0: 日志主题
16777
+ # - 1: 指标主题
16778
+ # 注意:此字段可能返回 null,表示取不到有效值。
16779
+ # @type BizType: Integer
16780
+ # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
16781
+ # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
16782
+ # 注意:此字段可能返回 null,表示取不到有效值。
16783
+ # @type IsWebTracking: Boolean
16784
+ # @param Extends: 日志主题扩展信息
16785
+ # 注意:此字段可能返回 null,表示取不到有效值。
16786
+ # @type Extends: :class:`Tencentcloud::Waf.v20180125.models.TopicExtendInfo`
16787
+ # @param TopicAsyncTaskID: 异步迁移任务ID
16788
+ # 注意:此字段可能返回 null,表示取不到有效值。
16789
+ # @type TopicAsyncTaskID: String
16790
+ # @param MigrationStatus: 异步迁移状态
16791
+ # 注意:此字段可能返回 null,表示取不到有效值。
16792
+ # @type MigrationStatus: Integer
16793
+ # @param EffectiveDate: 异步迁移完成后,预计生效日期
16794
+ # 注意:此字段可能返回 null,表示取不到有效值。
16795
+ # @type EffectiveDate: String
16796
+
16797
+ attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends, :TopicAsyncTaskID, :MigrationStatus, :EffectiveDate
16798
+
16799
+ def initialize(logsetid=nil, topicid=nil, topicname=nil, partitioncount=nil, index=nil, assumername=nil, createtime=nil, status=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, subassumername=nil, describes=nil, hotperiod=nil, biztype=nil, iswebtracking=nil, extends=nil, topicasynctaskid=nil, migrationstatus=nil, effectivedate=nil)
16800
+ @LogsetId = logsetid
16801
+ @TopicId = topicid
16802
+ @TopicName = topicname
16803
+ @PartitionCount = partitioncount
16804
+ @Index = index
16805
+ @AssumerName = assumername
16806
+ @CreateTime = createtime
16807
+ @Status = status
16808
+ @Tags = tags
16809
+ @AutoSplit = autosplit
16810
+ @MaxSplitPartitions = maxsplitpartitions
16811
+ @StorageType = storagetype
16812
+ @Period = period
16813
+ @SubAssumerName = subassumername
16814
+ @Describes = describes
16815
+ @HotPeriod = hotperiod
16816
+ @BizType = biztype
16817
+ @IsWebTracking = iswebtracking
16818
+ @Extends = extends
16819
+ @TopicAsyncTaskID = topicasynctaskid
16820
+ @MigrationStatus = migrationstatus
16821
+ @EffectiveDate = effectivedate
16822
+ end
16823
+
16824
+ def deserialize(params)
16825
+ @LogsetId = params['LogsetId']
16826
+ @TopicId = params['TopicId']
16827
+ @TopicName = params['TopicName']
16828
+ @PartitionCount = params['PartitionCount']
16829
+ @Index = params['Index']
16830
+ @AssumerName = params['AssumerName']
16831
+ @CreateTime = params['CreateTime']
16832
+ @Status = params['Status']
16833
+ unless params['Tags'].nil?
16834
+ @Tags = []
16835
+ params['Tags'].each do |i|
16836
+ tag_tmp = Tag.new
16837
+ tag_tmp.deserialize(i)
16838
+ @Tags << tag_tmp
16839
+ end
16840
+ end
16841
+ @AutoSplit = params['AutoSplit']
16842
+ @MaxSplitPartitions = params['MaxSplitPartitions']
16843
+ @StorageType = params['StorageType']
16844
+ @Period = params['Period']
16845
+ @SubAssumerName = params['SubAssumerName']
16846
+ @Describes = params['Describes']
16847
+ @HotPeriod = params['HotPeriod']
16848
+ @BizType = params['BizType']
16849
+ @IsWebTracking = params['IsWebTracking']
16850
+ unless params['Extends'].nil?
16851
+ @Extends = TopicExtendInfo.new
16852
+ @Extends.deserialize(params['Extends'])
16853
+ end
16854
+ @TopicAsyncTaskID = params['TopicAsyncTaskID']
16855
+ @MigrationStatus = params['MigrationStatus']
16856
+ @EffectiveDate = params['EffectiveDate']
16857
+ end
16858
+ end
16859
+
15931
16860
  # bot自定义规则动作灰度
15932
16861
  class UCBActionProportion < TencentCloud::Common::AbstractModel
15933
16862
  # @param Action: 动作
@@ -16099,7 +17028,7 @@ module TencentCloud
16099
17028
  # @type Url: String
16100
17029
  # @param MatchFunc: 匹配方法,0表示等于,1表示前缀匹配,2表示包含,3表示不等于,6表示后缀匹配,7表示不包含
16101
17030
  # @type MatchFunc: Integer
16102
- # @param OptionsArr: CC的匹配条件JSON序列化的字符串,示例:[{\"key\":\"Method\",\"args\":[\"=R0VU\"],\"match\":\"0\",\"encodeflag\":true}] Key可选值为 Method、Post、Referer、Cookie、User-Agent、CustomHeader match可选值为,当Key为Method的时候可选值为0(等于)、3(不等于)。 Key为Post的时候可选值为0(等于)、3(不等于),Key为Cookie的时候可选值为0(等于)、2(包含),3(不等于)、7(不包含)、 当Key为Referer的时候可选值为0(等于)、3(不等于)、1(前缀匹配)、6(后缀匹配)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为Cookie的时候可选值为0(等于)、3(不等于)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为User-Agent的时候可选值为0(等于)、3(不等于)、1(前缀匹配)、6(后缀匹配)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为CustomHeader的时候可选值为0(等于)、3(不等于)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空)。 Key为IPLocation时,可选值为13(属于)、14(不属于)。args用来表示匹配内容,需要设置encodeflag为true,当Key为Post、Cookie、CustomHeader时,用等号=来分别串接Key和Value,并分别用Base64编码,类似YWJj=YWJj。当Key为Referer、User-Agent时,用等号=来串接Value,类似=YWJj。
17031
+ # @param OptionsArr: CC的匹配条件JSON序列化的字符串,示例:[{\"key\":\"Method\",\"args\":[\"=R0VU\"],\"match\":\"0\",\"encodeflag\":true}] Key可选值为 Method、Post、Referer、Cookie、User-Agent、CustomHeader、CaptchaRisk、CaptchaDeviceRisk、CaptchaScore match可选值为,当Key为Method的时候可选值为0(等于)、3(不等于)。 Key为Post的时候可选值为0(等于)、3(不等于),Key为Cookie的时候可选值为0(等于)、2(包含),3(不等于)、7(不包含)、 当Key为Referer的时候可选值为0(等于)、3(不等于)、1(前缀匹配)、6(后缀匹配)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为Cookie的时候可选值为0(等于)、3(不等于)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为User-Agent的时候可选值为0(等于)、3(不等于)、1(前缀匹配)、6(后缀匹配)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空), 当Key为CustomHeader的时候可选值为0(等于)、3(不等于)、2(包含)、7(不包含)、12(存在)、5(不存在)、4(内容为空)。 Key为IPLocation时,可选值为13(属于)、14(不属于)。 Key为CaptchaRisk时,可选值为0(等于)、3(不等于)、13(属于)、14(不属于)、12(存在)、5(不存在)。 Key为CaptchaDeviceRisk时,可选值为0(等于)、3(不等于)、13(属于)、14(不属于)、12(存在)、5(不存在)。 Key为CaptchaScore时,可选值为15(数值等于)、16(数值不等于)、17(数值大于)、18(数值小于)、19(数值大于等于)、20(数值小于等于)、12(存在)、5(不存在)。args用来表示匹配内容,需要设置encodeflag为true,当Key为Post、Cookie、CustomHeader时,用等号=来分别串接Key和Value,并分别用Base64编码,类似YWJj=YWJj。当Key为Referer、User-Agent时,用等号=来串接Value,类似=YWJj。
16103
17032
  # @type OptionsArr: String
16104
17033
  # @param Edition: waf版本,sparta-waf或者clb-waf
16105
17034
  # @type Edition: String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-waf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1130
4
+ version: 3.0.1131
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-26 00:00:00.000000000 Z
11
+ date: 2025-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common