tencentcloud-sdk-cwp 3.0.857 → 3.0.859
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180228/models.rb +44 -29
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c0e3144e9bd4da42558614ae7ef964bd2606672
|
4
|
+
data.tar.gz: a06429b70c4544da04369db42a0ba1e5e6d3d346
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b68f30d90a223a802df47ae4895b5e164c4847262c7154d184a6410022805f0f2f1ac80104f7f21cd726ace56407cbc717d2d59cf1ba3a2df46cf97796d5d3ca
|
7
|
+
data.tar.gz: 3389c20fecc75b8f1d012c8c5e26e95b6645849919ccbcb0e8213ec9ca2e31a058cffac315cc150c672a80b5c6d132c52ed1cd51197df60720daafbbac600275
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.859
|
data/lib/v20180228/models.rb
CHANGED
@@ -4756,8 +4756,8 @@ module TencentCloud
|
|
4756
4756
|
|
4757
4757
|
attr_accessor :Id, :Uuid, :Name, :Level, :Rule, :Decription, :Operator, :IsGlobal, :Status, :CreateTime, :ModifyTime, :Hostip, :Uuids, :White, :DealOldEvents, :Description
|
4758
4758
|
extend Gem::Deprecate
|
4759
|
-
deprecate :Decription, :none, 2024,
|
4760
|
-
deprecate :Decription=, :none, 2024,
|
4759
|
+
deprecate :Decription, :none, 2024, 7
|
4760
|
+
deprecate :Decription=, :none, 2024, 7
|
4761
4761
|
|
4762
4762
|
def initialize(id=nil, uuid=nil, name=nil, level=nil, rule=nil, decription=nil, operator=nil, isglobal=nil, status=nil, createtime=nil, modifytime=nil, hostip=nil, uuids=nil, white=nil, dealoldevents=nil, description=nil)
|
4763
4763
|
@Id = id
|
@@ -8077,13 +8077,13 @@ module TencentCloud
|
|
8077
8077
|
|
8078
8078
|
# 日志投递类型细节
|
8079
8079
|
class DeliverTypeDetails < TencentCloud::Common::AbstractModel
|
8080
|
-
# @param SecurityType: 安全模块类型 1: 入侵检测 2: 漏洞管理 3: 基线管理 4: 高级防御 5:客户端相关 6: 资产指纹
|
8080
|
+
# @param SecurityType: 安全模块类型 1: 入侵检测 2: 漏洞管理 3: 基线管理 4: 高级防御 5:客户端相关 6: 资产指纹 7 主机列表 8 客户端上报
|
8081
8081
|
# @type SecurityType: Integer
|
8082
|
-
# @param LogType:
|
8082
|
+
# @param LogType: 安全模块下的日志类型
|
8083
8083
|
# @type LogType: Array
|
8084
|
-
# @param TopicId:
|
8084
|
+
# @param TopicId: 主题ID
|
8085
8085
|
# @type TopicId: String
|
8086
|
-
# @param TopicName:
|
8086
|
+
# @param TopicName: 主题名
|
8087
8087
|
# @type TopicName: String
|
8088
8088
|
# @param Switch: 投递开关 0关闭 1开启
|
8089
8089
|
# @type Switch: Integer
|
@@ -8091,12 +8091,18 @@ module TencentCloud
|
|
8091
8091
|
# @type Status: Integer
|
8092
8092
|
# @param ErrInfo: 错误信息
|
8093
8093
|
# @type ErrInfo: String
|
8094
|
-
# @param StatusTime:
|
8094
|
+
# @param StatusTime: 最近一次状态上报时间戳
|
8095
8095
|
# @type StatusTime: Integer
|
8096
|
+
# @param LogName: 日志集名
|
8097
|
+
# @type LogName: String
|
8098
|
+
# @param LogSetId: 日志集ID
|
8099
|
+
# @type LogSetId: String
|
8100
|
+
# @param Region: 日志集所在地域
|
8101
|
+
# @type Region: String
|
8096
8102
|
|
8097
|
-
attr_accessor :SecurityType, :LogType, :TopicId, :TopicName, :Switch, :Status, :ErrInfo, :StatusTime
|
8103
|
+
attr_accessor :SecurityType, :LogType, :TopicId, :TopicName, :Switch, :Status, :ErrInfo, :StatusTime, :LogName, :LogSetId, :Region
|
8098
8104
|
|
8099
|
-
def initialize(securitytype=nil, logtype=nil, topicid=nil, topicname=nil, switch=nil, status=nil, errinfo=nil, statustime=nil)
|
8105
|
+
def initialize(securitytype=nil, logtype=nil, topicid=nil, topicname=nil, switch=nil, status=nil, errinfo=nil, statustime=nil, logname=nil, logsetid=nil, region=nil)
|
8100
8106
|
@SecurityType = securitytype
|
8101
8107
|
@LogType = logtype
|
8102
8108
|
@TopicId = topicid
|
@@ -8105,6 +8111,9 @@ module TencentCloud
|
|
8105
8111
|
@Status = status
|
8106
8112
|
@ErrInfo = errinfo
|
8107
8113
|
@StatusTime = statustime
|
8114
|
+
@LogName = logname
|
8115
|
+
@LogSetId = logsetid
|
8116
|
+
@Region = region
|
8108
8117
|
end
|
8109
8118
|
|
8110
8119
|
def deserialize(params)
|
@@ -8116,6 +8125,9 @@ module TencentCloud
|
|
8116
8125
|
@Status = params['Status']
|
8117
8126
|
@ErrInfo = params['ErrInfo']
|
8118
8127
|
@StatusTime = params['StatusTime']
|
8128
|
+
@LogName = params['LogName']
|
8129
|
+
@LogSetId = params['LogSetId']
|
8130
|
+
@Region = params['Region']
|
8119
8131
|
end
|
8120
8132
|
end
|
8121
8133
|
|
@@ -27903,20 +27915,19 @@ module TencentCloud
|
|
27903
27915
|
|
27904
27916
|
# ExportBaselineHostDetectList请求参数结构体
|
27905
27917
|
class ExportBaselineHostDetectListRequest < TencentCloud::Common::AbstractModel
|
27906
|
-
# @param Filters: <li>HostTag - string - 是否必填:否 - 主机标签</
|
27907
|
-
# <li>ItemId - int64 - 是否必填:否 - 项Id</i>
|
27908
|
-
# <li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
27909
|
-
# <li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
27910
|
-
# <li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
27918
|
+
# @param Filters: <li>HostTag - string - 是否必填:否 - 主机标签</li><li>ItemId - int64 - 是否必填:否 - 项Id</li><li>RuleId - int64 - 是否必填:否 - 规则Id</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
27911
27919
|
# @type Filters: Array
|
27912
27920
|
# @param ExportAll: 0:过滤的结果导出;1:全部导出
|
27913
27921
|
# @type ExportAll: Integer
|
27922
|
+
# @param IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
27923
|
+
# @type IsExportDetail: Integer
|
27914
27924
|
|
27915
|
-
attr_accessor :Filters, :ExportAll
|
27925
|
+
attr_accessor :Filters, :ExportAll, :IsExportDetail
|
27916
27926
|
|
27917
|
-
def initialize(filters=nil, exportall=nil)
|
27927
|
+
def initialize(filters=nil, exportall=nil, isexportdetail=nil)
|
27918
27928
|
@Filters = filters
|
27919
27929
|
@ExportAll = exportall
|
27930
|
+
@IsExportDetail = isexportdetail
|
27920
27931
|
end
|
27921
27932
|
|
27922
27933
|
def deserialize(params)
|
@@ -27929,6 +27940,7 @@ module TencentCloud
|
|
27929
27940
|
end
|
27930
27941
|
end
|
27931
27942
|
@ExportAll = params['ExportAll']
|
27943
|
+
@IsExportDetail = params['IsExportDetail']
|
27932
27944
|
end
|
27933
27945
|
end
|
27934
27946
|
|
@@ -27950,19 +27962,19 @@ module TencentCloud
|
|
27950
27962
|
|
27951
27963
|
# ExportBaselineItemDetectList请求参数结构体
|
27952
27964
|
class ExportBaselineItemDetectListRequest < TencentCloud::Common::AbstractModel
|
27953
|
-
# @param Filters: <li>HostId - string - 是否必填:否 - 主机Id</
|
27954
|
-
# <li>RuleId - int64 - 是否必填:否 - 规则Id</i>
|
27955
|
-
# <li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
27956
|
-
# <li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
27965
|
+
# @param Filters: <li>HostId - string - 是否必填:否 - 主机Id</li><li>RuleId - int64 - 是否必填:否 - 规则Id</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
27957
27966
|
# @type Filters: Array
|
27958
27967
|
# @param ExportAll: 0:过滤的结果导出;1:全部导出
|
27959
27968
|
# @type ExportAll: Integer
|
27969
|
+
# @param IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
27970
|
+
# @type IsExportDetail: Integer
|
27960
27971
|
|
27961
|
-
attr_accessor :Filters, :ExportAll
|
27972
|
+
attr_accessor :Filters, :ExportAll, :IsExportDetail
|
27962
27973
|
|
27963
|
-
def initialize(filters=nil, exportall=nil)
|
27974
|
+
def initialize(filters=nil, exportall=nil, isexportdetail=nil)
|
27964
27975
|
@Filters = filters
|
27965
27976
|
@ExportAll = exportall
|
27977
|
+
@IsExportDetail = isexportdetail
|
27966
27978
|
end
|
27967
27979
|
|
27968
27980
|
def deserialize(params)
|
@@ -27975,6 +27987,7 @@ module TencentCloud
|
|
27975
27987
|
end
|
27976
27988
|
end
|
27977
27989
|
@ExportAll = params['ExportAll']
|
27990
|
+
@IsExportDetail = params['IsExportDetail']
|
27978
27991
|
end
|
27979
27992
|
end
|
27980
27993
|
|
@@ -28106,18 +28119,19 @@ module TencentCloud
|
|
28106
28119
|
|
28107
28120
|
# ExportBaselineRuleDetectList请求参数结构体
|
28108
28121
|
class ExportBaselineRuleDetectListRequest < TencentCloud::Common::AbstractModel
|
28109
|
-
# @param Filters: <li>RuleName - string - 是否必填:否 - 规则名称</
|
28110
|
-
# <li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
28111
|
-
# <li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
28122
|
+
# @param Filters: <li>RuleName - string - 是否必填:否 - 规则名称</li><li>IsPassed - int - 是否必填:否 - 是否通过</li><li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
28112
28123
|
# @type Filters: Array
|
28113
28124
|
# @param ExportAll: 0:过滤的结果导出;1:全部导出
|
28114
28125
|
# @type ExportAll: Integer
|
28126
|
+
# @param IsExportDetail: 0:导出界面展示;1:导出全部结果事件
|
28127
|
+
# @type IsExportDetail: Integer
|
28115
28128
|
|
28116
|
-
attr_accessor :Filters, :ExportAll
|
28129
|
+
attr_accessor :Filters, :ExportAll, :IsExportDetail
|
28117
28130
|
|
28118
|
-
def initialize(filters=nil, exportall=nil)
|
28131
|
+
def initialize(filters=nil, exportall=nil, isexportdetail=nil)
|
28119
28132
|
@Filters = filters
|
28120
28133
|
@ExportAll = exportall
|
28134
|
+
@IsExportDetail = isexportdetail
|
28121
28135
|
end
|
28122
28136
|
|
28123
28137
|
def deserialize(params)
|
@@ -28130,6 +28144,7 @@ module TencentCloud
|
|
28130
28144
|
end
|
28131
28145
|
end
|
28132
28146
|
@ExportAll = params['ExportAll']
|
28147
|
+
@IsExportDetail = params['IsExportDetail']
|
28133
28148
|
end
|
28134
28149
|
end
|
28135
28150
|
|
@@ -28395,8 +28410,8 @@ module TencentCloud
|
|
28395
28410
|
|
28396
28411
|
attr_accessor :Filters, :Fileds, :Fields
|
28397
28412
|
extend Gem::Deprecate
|
28398
|
-
deprecate :Fileds, :none, 2024,
|
28399
|
-
deprecate :Fileds=, :none, 2024,
|
28413
|
+
deprecate :Fileds, :none, 2024, 7
|
28414
|
+
deprecate :Fileds=, :none, 2024, 7
|
28400
28415
|
|
28401
28416
|
def initialize(filters=nil, fileds=nil, fields=nil)
|
28402
28417
|
@Filters = filters
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cwp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.859
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|