tencentcloud-sdk-ssa 3.0.563 → 3.0.565
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180608/models.rb +246 -11
- 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: 2860ccc8622ee325b45c8d1e8beffa0c9bbf0338
|
4
|
+
data.tar.gz: b9f6a4250b8b6c0232f4374776ad1a0285131f45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4749361febb4c5be1680b11f85e7a2353a0f027e65a5442a3f307c0695fbe377d95b76ad1bf5807a5ab713dca86569fdda3a9f19968878fea768a377d84e9b7b
|
7
|
+
data.tar.gz: e478588b96f198a0dd1e62b0fcd6e20b67ea20bfbd0294f961c268704927895c6e3a7d68e3bf31bdee404e5254dcf5de99c02e37e6f05c57e26908842630044e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.565
|
data/lib/v20180608/models.rb
CHANGED
@@ -69,6 +69,28 @@ module TencentCloud
|
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
+
# 空Aggregations结构体
|
73
|
+
class AlertListAggregations < TencentCloud::Common::AbstractModel
|
74
|
+
# @param Name: 名字
|
75
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
76
|
+
# @type Name: String
|
77
|
+
# @param Value: 值
|
78
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
79
|
+
# @type Value: String
|
80
|
+
|
81
|
+
attr_accessor :Name, :Value
|
82
|
+
|
83
|
+
def initialize(name=nil, value=nil)
|
84
|
+
@Name = name
|
85
|
+
@Value = value
|
86
|
+
end
|
87
|
+
|
88
|
+
def deserialize(params)
|
89
|
+
@Name = params['Name']
|
90
|
+
@Value = params['Value']
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
72
94
|
# 告警列表响应数据
|
73
95
|
class AlertListData < TencentCloud::Common::AbstractModel
|
74
96
|
# @param Total: 总数
|
@@ -77,12 +99,16 @@ module TencentCloud
|
|
77
99
|
# @param AlertList: 返回列表
|
78
100
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
79
101
|
# @type AlertList: Array
|
102
|
+
# @param Aggregations: 聚合参数
|
103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
104
|
+
# @type Aggregations: :class:`Tencentcloud::Ssa.v20180608.models.AlertListAggregations`
|
80
105
|
|
81
|
-
attr_accessor :Total, :AlertList
|
106
|
+
attr_accessor :Total, :AlertList, :Aggregations
|
82
107
|
|
83
|
-
def initialize(total=nil, alertlist=nil)
|
108
|
+
def initialize(total=nil, alertlist=nil, aggregations=nil)
|
84
109
|
@Total = total
|
85
110
|
@AlertList = alertlist
|
111
|
+
@Aggregations = aggregations
|
86
112
|
end
|
87
113
|
|
88
114
|
def deserialize(params)
|
@@ -95,6 +121,10 @@ module TencentCloud
|
|
95
121
|
@AlertList << alerttype_tmp
|
96
122
|
end
|
97
123
|
end
|
124
|
+
unless params['Aggregations'].nil?
|
125
|
+
@Aggregations = AlertListAggregations.new
|
126
|
+
@Aggregations.deserialize(params['Aggregations'])
|
127
|
+
end
|
98
128
|
end
|
99
129
|
end
|
100
130
|
|
@@ -175,10 +205,31 @@ module TencentCloud
|
|
175
205
|
# @param VictimAssetSub: 资产子网
|
176
206
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
177
207
|
# @type VictimAssetSub: String
|
208
|
+
# @param VictimAssetVpc: 资产vpc
|
209
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
210
|
+
# @type VictimAssetVpc: String
|
211
|
+
# @param Timestamp: 时间戳
|
212
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
213
|
+
# @type Timestamp: String
|
214
|
+
# @param AssetGroupName: 资产组名
|
215
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
216
|
+
# @type AssetGroupName: Array
|
217
|
+
# @param AssetProjectName: 资产项目名
|
218
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
219
|
+
# @type AssetProjectName: String
|
220
|
+
# @param VictimAssetContent: 失陷资产内容
|
221
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
222
|
+
# @type VictimAssetContent: Array
|
223
|
+
# @param WrongReportStatus: 错误报告状态
|
224
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
225
|
+
# @type WrongReportStatus: Integer
|
226
|
+
# @param WrongReportConditionId: 错误报告Id
|
227
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
228
|
+
# @type WrongReportConditionId: Integer
|
178
229
|
|
179
|
-
attr_accessor :AlertTime, :AlertId, :AssetId, :AssetPrivateIp, :AlertName, :Level, :Type, :Source, :AttackChain, :AttackId, :Concerns, :Action, :AttackResult, :EventStatus, :EventId, :Status, :AssetName, :ConcernMaliciousCount, :ConcernVictimCount, :VictimAssetType, :SubType, :AttackName, :AssetPublicIp, :AttackTactic, :VictimAssetSub
|
230
|
+
attr_accessor :AlertTime, :AlertId, :AssetId, :AssetPrivateIp, :AlertName, :Level, :Type, :Source, :AttackChain, :AttackId, :Concerns, :Action, :AttackResult, :EventStatus, :EventId, :Status, :AssetName, :ConcernMaliciousCount, :ConcernVictimCount, :VictimAssetType, :SubType, :AttackName, :AssetPublicIp, :AttackTactic, :VictimAssetSub, :VictimAssetVpc, :Timestamp, :AssetGroupName, :AssetProjectName, :VictimAssetContent, :WrongReportStatus, :WrongReportConditionId
|
180
231
|
|
181
|
-
def initialize(alerttime=nil, alertid=nil, assetid=nil, assetprivateip=nil, alertname=nil, level=nil, type=nil, source=nil, attackchain=nil, attackid=nil, concerns=nil, action=nil, attackresult=nil, eventstatus=nil, eventid=nil, status=nil, assetname=nil, concernmaliciouscount=nil, concernvictimcount=nil, victimassettype=nil, subtype=nil, attackname=nil, assetpublicip=nil, attacktactic=nil, victimassetsub=nil)
|
232
|
+
def initialize(alerttime=nil, alertid=nil, assetid=nil, assetprivateip=nil, alertname=nil, level=nil, type=nil, source=nil, attackchain=nil, attackid=nil, concerns=nil, action=nil, attackresult=nil, eventstatus=nil, eventid=nil, status=nil, assetname=nil, concernmaliciouscount=nil, concernvictimcount=nil, victimassettype=nil, subtype=nil, attackname=nil, assetpublicip=nil, attacktactic=nil, victimassetsub=nil, victimassetvpc=nil, timestamp=nil, assetgroupname=nil, assetprojectname=nil, victimassetcontent=nil, wrongreportstatus=nil, wrongreportconditionid=nil)
|
182
233
|
@AlertTime = alerttime
|
183
234
|
@AlertId = alertid
|
184
235
|
@AssetId = assetid
|
@@ -204,6 +255,13 @@ module TencentCloud
|
|
204
255
|
@AssetPublicIp = assetpublicip
|
205
256
|
@AttackTactic = attacktactic
|
206
257
|
@VictimAssetSub = victimassetsub
|
258
|
+
@VictimAssetVpc = victimassetvpc
|
259
|
+
@Timestamp = timestamp
|
260
|
+
@AssetGroupName = assetgroupname
|
261
|
+
@AssetProjectName = assetprojectname
|
262
|
+
@VictimAssetContent = victimassetcontent
|
263
|
+
@WrongReportStatus = wrongreportstatus
|
264
|
+
@WrongReportConditionId = wrongreportconditionid
|
207
265
|
end
|
208
266
|
|
209
267
|
def deserialize(params)
|
@@ -239,6 +297,13 @@ module TencentCloud
|
|
239
297
|
@AssetPublicIp = params['AssetPublicIp']
|
240
298
|
@AttackTactic = params['AttackTactic']
|
241
299
|
@VictimAssetSub = params['VictimAssetSub']
|
300
|
+
@VictimAssetVpc = params['VictimAssetVpc']
|
301
|
+
@Timestamp = params['Timestamp']
|
302
|
+
@AssetGroupName = params['AssetGroupName']
|
303
|
+
@AssetProjectName = params['AssetProjectName']
|
304
|
+
@VictimAssetContent = params['VictimAssetContent']
|
305
|
+
@WrongReportStatus = params['WrongReportStatus']
|
306
|
+
@WrongReportConditionId = params['WrongReportConditionId']
|
242
307
|
end
|
243
308
|
end
|
244
309
|
|
@@ -524,10 +589,28 @@ module TencentCloud
|
|
524
589
|
# @param AssetVulNum: 漏洞数量
|
525
590
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
526
591
|
# @type AssetVulNum: Integer
|
592
|
+
# @param AssetEventNum: 资产事件
|
593
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
594
|
+
# @type AssetEventNum: Integer
|
595
|
+
# @param AssetCspmRiskNum: cspm风险
|
596
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
597
|
+
# @type AssetCspmRiskNum: Integer
|
598
|
+
# @param SsaAssetDeleteTime: 资产删除时间
|
599
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
600
|
+
# @type SsaAssetDeleteTime: String
|
601
|
+
# @param ChargeType: 费用类型
|
602
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
603
|
+
# @type ChargeType: String
|
604
|
+
# @param AssetRegionName: 地域
|
605
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
606
|
+
# @type AssetRegionName: String
|
607
|
+
# @param AssetVpcid: vpc信息
|
608
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
609
|
+
# @type AssetVpcid: String
|
527
610
|
|
528
|
-
attr_accessor :AssetType, :Name, :Region, :VpcId, :InstanceType, :InstanceState, :PublicIpAddresses, :EngineVersion, :Id, :Tag, :Vip, :Status, :LoadBalancerVips, :Uin, :CreationDate, :Domain, :AssetUniqid, :InstanceId, :DiskType, :DiskSize, :AssetStatus, :CertType, :ProjectName, :CertEndTime, :ProductType, :PrivateIpAddresses, :ValidityPeriod, :GroupName, :Port, :RiskConfig, :Event, :Vul, :SsaAssetDiscoverTime, :AssetSubnetId, :AssetSubnetName, :AssetVpcName, :ClusterType, :NameSpace, :AssetCreateTime, :LoadBalancerType, :AssetIpv6, :SSHRisk, :RDPRisk, :EventRisk, :AssetVulNum
|
611
|
+
attr_accessor :AssetType, :Name, :Region, :VpcId, :InstanceType, :InstanceState, :PublicIpAddresses, :EngineVersion, :Id, :Tag, :Vip, :Status, :LoadBalancerVips, :Uin, :CreationDate, :Domain, :AssetUniqid, :InstanceId, :DiskType, :DiskSize, :AssetStatus, :CertType, :ProjectName, :CertEndTime, :ProductType, :PrivateIpAddresses, :ValidityPeriod, :GroupName, :Port, :RiskConfig, :Event, :Vul, :SsaAssetDiscoverTime, :AssetSubnetId, :AssetSubnetName, :AssetVpcName, :ClusterType, :NameSpace, :AssetCreateTime, :LoadBalancerType, :AssetIpv6, :SSHRisk, :RDPRisk, :EventRisk, :AssetVulNum, :AssetEventNum, :AssetCspmRiskNum, :SsaAssetDeleteTime, :ChargeType, :AssetRegionName, :AssetVpcid
|
529
612
|
|
530
|
-
def initialize(assettype=nil, name=nil, region=nil, vpcid=nil, instancetype=nil, instancestate=nil, publicipaddresses=nil, engineversion=nil, id=nil, tag=nil, vip=nil, status=nil, loadbalancervips=nil, uin=nil, creationdate=nil, domain=nil, assetuniqid=nil, instanceid=nil, disktype=nil, disksize=nil, assetstatus=nil, certtype=nil, projectname=nil, certendtime=nil, producttype=nil, privateipaddresses=nil, validityperiod=nil, groupname=nil, port=nil, riskconfig=nil, event=nil, vul=nil, ssaassetdiscovertime=nil, assetsubnetid=nil, assetsubnetname=nil, assetvpcname=nil, clustertype=nil, namespace=nil, assetcreatetime=nil, loadbalancertype=nil, assetipv6=nil, sshrisk=nil, rdprisk=nil, eventrisk=nil, assetvulnum=nil)
|
613
|
+
def initialize(assettype=nil, name=nil, region=nil, vpcid=nil, instancetype=nil, instancestate=nil, publicipaddresses=nil, engineversion=nil, id=nil, tag=nil, vip=nil, status=nil, loadbalancervips=nil, uin=nil, creationdate=nil, domain=nil, assetuniqid=nil, instanceid=nil, disktype=nil, disksize=nil, assetstatus=nil, certtype=nil, projectname=nil, certendtime=nil, producttype=nil, privateipaddresses=nil, validityperiod=nil, groupname=nil, port=nil, riskconfig=nil, event=nil, vul=nil, ssaassetdiscovertime=nil, assetsubnetid=nil, assetsubnetname=nil, assetvpcname=nil, clustertype=nil, namespace=nil, assetcreatetime=nil, loadbalancertype=nil, assetipv6=nil, sshrisk=nil, rdprisk=nil, eventrisk=nil, assetvulnum=nil, asseteventnum=nil, assetcspmrisknum=nil, ssaassetdeletetime=nil, chargetype=nil, assetregionname=nil, assetvpcid=nil)
|
531
614
|
@AssetType = assettype
|
532
615
|
@Name = name
|
533
616
|
@Region = region
|
@@ -573,6 +656,12 @@ module TencentCloud
|
|
573
656
|
@RDPRisk = rdprisk
|
574
657
|
@EventRisk = eventrisk
|
575
658
|
@AssetVulNum = assetvulnum
|
659
|
+
@AssetEventNum = asseteventnum
|
660
|
+
@AssetCspmRiskNum = assetcspmrisknum
|
661
|
+
@SsaAssetDeleteTime = ssaassetdeletetime
|
662
|
+
@ChargeType = chargetype
|
663
|
+
@AssetRegionName = assetregionname
|
664
|
+
@AssetVpcid = assetvpcid
|
576
665
|
end
|
577
666
|
|
578
667
|
def deserialize(params)
|
@@ -628,6 +717,12 @@ module TencentCloud
|
|
628
717
|
@RDPRisk = params['RDPRisk']
|
629
718
|
@EventRisk = params['EventRisk']
|
630
719
|
@AssetVulNum = params['AssetVulNum']
|
720
|
+
@AssetEventNum = params['AssetEventNum']
|
721
|
+
@AssetCspmRiskNum = params['AssetCspmRiskNum']
|
722
|
+
@SsaAssetDeleteTime = params['SsaAssetDeleteTime']
|
723
|
+
@ChargeType = params['ChargeType']
|
724
|
+
@AssetRegionName = params['AssetRegionName']
|
725
|
+
@AssetVpcid = params['AssetVpcid']
|
631
726
|
end
|
632
727
|
end
|
633
728
|
|
@@ -985,6 +1080,84 @@ module TencentCloud
|
|
985
1080
|
# @param StatisticsCount: 最近数量
|
986
1081
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
987
1082
|
# @type StatisticsCount: Integer
|
1083
|
+
# @param IpCountry: IP国家
|
1084
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1085
|
+
# @type IpCountry: String
|
1086
|
+
# @param IpProvince: IP省份
|
1087
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1088
|
+
# @type IpProvince: String
|
1089
|
+
# @param Result: 结果
|
1090
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1091
|
+
# @type Result: String
|
1092
|
+
# @param Confidence: 置信度
|
1093
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1094
|
+
# @type Confidence: Integer
|
1095
|
+
# @param IpIsp: 服务商
|
1096
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1097
|
+
# @type IpIsp: String
|
1098
|
+
# @param IpInfrastructure: 是否基础设施
|
1099
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1100
|
+
# @type IpInfrastructure: String
|
1101
|
+
# @param ThreatType: 威胁类型
|
1102
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1103
|
+
# @type ThreatType: Array
|
1104
|
+
# @param Groups: 威胁团伙
|
1105
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1106
|
+
# @type Groups: Array
|
1107
|
+
# @param Status: 状态威胁情报接口
|
1108
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1109
|
+
# @type Status: String
|
1110
|
+
# @param Tags: 恶意标签
|
1111
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1112
|
+
# @type Tags: Array
|
1113
|
+
# @param VictimAssetType: 资产类型
|
1114
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1115
|
+
# @type VictimAssetType: String
|
1116
|
+
# @param VictimAssetName: 资产名
|
1117
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1118
|
+
# @type VictimAssetName: String
|
1119
|
+
# @param DomainRegistrant: 注册者
|
1120
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1121
|
+
# @type DomainRegistrant: String
|
1122
|
+
# @param DomainRegisteredInstitution: 注册机构
|
1123
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1124
|
+
# @type DomainRegisteredInstitution: String
|
1125
|
+
# @param DomainRegistrationTime: 注册时间
|
1126
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1127
|
+
# @type DomainRegistrationTime: String
|
1128
|
+
# @param FileName: 文件名
|
1129
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1130
|
+
# @type FileName: String
|
1131
|
+
# @param FileMd5: MD5
|
1132
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1133
|
+
# @type FileMd5: String
|
1134
|
+
# @param VirusName: 病毒名
|
1135
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1136
|
+
# @type VirusName: String
|
1137
|
+
# @param FilePath: 文件路径
|
1138
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1139
|
+
# @type FilePath: String
|
1140
|
+
# @param FileSize: 文件大小
|
1141
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1142
|
+
# @type FileSize: String
|
1143
|
+
# @param ProcName: 进程名
|
1144
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1145
|
+
# @type ProcName: String
|
1146
|
+
# @param Pid: 进程ID
|
1147
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1148
|
+
# @type Pid: String
|
1149
|
+
# @param ProcPath: 进程路径
|
1150
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1151
|
+
# @type ProcPath: String
|
1152
|
+
# @param ProcUser: 用户名
|
1153
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1154
|
+
# @type ProcUser: String
|
1155
|
+
# @param DefendedCount: 已防御
|
1156
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1157
|
+
# @type DefendedCount: Integer
|
1158
|
+
# @param DetectedCount: 仅检测
|
1159
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1160
|
+
# @type DetectedCount: Integer
|
988
1161
|
# @param SearchData: 可疑关注点字段
|
989
1162
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
990
1163
|
# @type SearchData: String
|
@@ -1001,13 +1174,39 @@ module TencentCloud
|
|
1001
1174
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1002
1175
|
# @type EventSubType: String
|
1003
1176
|
|
1004
|
-
attr_accessor :ConcernType, :EntityType, :Concern, :StatisticsCount, :SearchData, :IpCountryIso, :IpProvinceIso, :IpCity, :EventSubType
|
1177
|
+
attr_accessor :ConcernType, :EntityType, :Concern, :StatisticsCount, :IpCountry, :IpProvince, :Result, :Confidence, :IpIsp, :IpInfrastructure, :ThreatType, :Groups, :Status, :Tags, :VictimAssetType, :VictimAssetName, :DomainRegistrant, :DomainRegisteredInstitution, :DomainRegistrationTime, :FileName, :FileMd5, :VirusName, :FilePath, :FileSize, :ProcName, :Pid, :ProcPath, :ProcUser, :DefendedCount, :DetectedCount, :SearchData, :IpCountryIso, :IpProvinceIso, :IpCity, :EventSubType
|
1005
1178
|
|
1006
|
-
def initialize(concerntype=nil, entitytype=nil, concern=nil, statisticscount=nil, searchdata=nil, ipcountryiso=nil, ipprovinceiso=nil, ipcity=nil, eventsubtype=nil)
|
1179
|
+
def initialize(concerntype=nil, entitytype=nil, concern=nil, statisticscount=nil, ipcountry=nil, ipprovince=nil, result=nil, confidence=nil, ipisp=nil, ipinfrastructure=nil, threattype=nil, groups=nil, status=nil, tags=nil, victimassettype=nil, victimassetname=nil, domainregistrant=nil, domainregisteredinstitution=nil, domainregistrationtime=nil, filename=nil, filemd5=nil, virusname=nil, filepath=nil, filesize=nil, procname=nil, pid=nil, procpath=nil, procuser=nil, defendedcount=nil, detectedcount=nil, searchdata=nil, ipcountryiso=nil, ipprovinceiso=nil, ipcity=nil, eventsubtype=nil)
|
1007
1180
|
@ConcernType = concerntype
|
1008
1181
|
@EntityType = entitytype
|
1009
1182
|
@Concern = concern
|
1010
1183
|
@StatisticsCount = statisticscount
|
1184
|
+
@IpCountry = ipcountry
|
1185
|
+
@IpProvince = ipprovince
|
1186
|
+
@Result = result
|
1187
|
+
@Confidence = confidence
|
1188
|
+
@IpIsp = ipisp
|
1189
|
+
@IpInfrastructure = ipinfrastructure
|
1190
|
+
@ThreatType = threattype
|
1191
|
+
@Groups = groups
|
1192
|
+
@Status = status
|
1193
|
+
@Tags = tags
|
1194
|
+
@VictimAssetType = victimassettype
|
1195
|
+
@VictimAssetName = victimassetname
|
1196
|
+
@DomainRegistrant = domainregistrant
|
1197
|
+
@DomainRegisteredInstitution = domainregisteredinstitution
|
1198
|
+
@DomainRegistrationTime = domainregistrationtime
|
1199
|
+
@FileName = filename
|
1200
|
+
@FileMd5 = filemd5
|
1201
|
+
@VirusName = virusname
|
1202
|
+
@FilePath = filepath
|
1203
|
+
@FileSize = filesize
|
1204
|
+
@ProcName = procname
|
1205
|
+
@Pid = pid
|
1206
|
+
@ProcPath = procpath
|
1207
|
+
@ProcUser = procuser
|
1208
|
+
@DefendedCount = defendedcount
|
1209
|
+
@DetectedCount = detectedcount
|
1011
1210
|
@SearchData = searchdata
|
1012
1211
|
@IpCountryIso = ipcountryiso
|
1013
1212
|
@IpProvinceIso = ipprovinceiso
|
@@ -1020,6 +1219,32 @@ module TencentCloud
|
|
1020
1219
|
@EntityType = params['EntityType']
|
1021
1220
|
@Concern = params['Concern']
|
1022
1221
|
@StatisticsCount = params['StatisticsCount']
|
1222
|
+
@IpCountry = params['IpCountry']
|
1223
|
+
@IpProvince = params['IpProvince']
|
1224
|
+
@Result = params['Result']
|
1225
|
+
@Confidence = params['Confidence']
|
1226
|
+
@IpIsp = params['IpIsp']
|
1227
|
+
@IpInfrastructure = params['IpInfrastructure']
|
1228
|
+
@ThreatType = params['ThreatType']
|
1229
|
+
@Groups = params['Groups']
|
1230
|
+
@Status = params['Status']
|
1231
|
+
@Tags = params['Tags']
|
1232
|
+
@VictimAssetType = params['VictimAssetType']
|
1233
|
+
@VictimAssetName = params['VictimAssetName']
|
1234
|
+
@DomainRegistrant = params['DomainRegistrant']
|
1235
|
+
@DomainRegisteredInstitution = params['DomainRegisteredInstitution']
|
1236
|
+
@DomainRegistrationTime = params['DomainRegistrationTime']
|
1237
|
+
@FileName = params['FileName']
|
1238
|
+
@FileMd5 = params['FileMd5']
|
1239
|
+
@VirusName = params['VirusName']
|
1240
|
+
@FilePath = params['FilePath']
|
1241
|
+
@FileSize = params['FileSize']
|
1242
|
+
@ProcName = params['ProcName']
|
1243
|
+
@Pid = params['Pid']
|
1244
|
+
@ProcPath = params['ProcPath']
|
1245
|
+
@ProcUser = params['ProcUser']
|
1246
|
+
@DefendedCount = params['DefendedCount']
|
1247
|
+
@DetectedCount = params['DetectedCount']
|
1023
1248
|
@SearchData = params['SearchData']
|
1024
1249
|
@IpCountryIso = params['IpCountryIso']
|
1025
1250
|
@IpProvinceIso = params['IpProvinceIso']
|
@@ -2975,10 +3200,16 @@ module TencentCloud
|
|
2975
3200
|
# @param SecurityStatus: 安全防护状态
|
2976
3201
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2977
3202
|
# @type SecurityStatus: Array
|
3203
|
+
# @param DisposalRecommendation: 处置建议
|
3204
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3205
|
+
# @type DisposalRecommendation: Integer
|
3206
|
+
# @param MappingType: 测绘类型
|
3207
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3208
|
+
# @type MappingType: String
|
2978
3209
|
|
2979
|
-
attr_accessor :AssetName, :AssetIp, :PrivateIp, :AssetId, :Protocol, :Port, :Service, :Component, :Process, :OS, :LastMappingTime, :DisposalRecommendations, :DisposalRecommendationDetails, :AssetType, :Domain, :MappingStatus, :Region, :SecurityStatus
|
3210
|
+
attr_accessor :AssetName, :AssetIp, :PrivateIp, :AssetId, :Protocol, :Port, :Service, :Component, :Process, :OS, :LastMappingTime, :DisposalRecommendations, :DisposalRecommendationDetails, :AssetType, :Domain, :MappingStatus, :Region, :SecurityStatus, :DisposalRecommendation, :MappingType
|
2980
3211
|
|
2981
|
-
def initialize(assetname=nil, assetip=nil, privateip=nil, assetid=nil, protocol=nil, port=nil, service=nil, component=nil, process=nil, os=nil, lastmappingtime=nil, disposalrecommendations=nil, disposalrecommendationdetails=nil, assettype=nil, domain=nil, mappingstatus=nil, region=nil, securitystatus=nil)
|
3212
|
+
def initialize(assetname=nil, assetip=nil, privateip=nil, assetid=nil, protocol=nil, port=nil, service=nil, component=nil, process=nil, os=nil, lastmappingtime=nil, disposalrecommendations=nil, disposalrecommendationdetails=nil, assettype=nil, domain=nil, mappingstatus=nil, region=nil, securitystatus=nil, disposalrecommendation=nil, mappingtype=nil)
|
2982
3213
|
@AssetName = assetname
|
2983
3214
|
@AssetIp = assetip
|
2984
3215
|
@PrivateIp = privateip
|
@@ -2997,6 +3228,8 @@ module TencentCloud
|
|
2997
3228
|
@MappingStatus = mappingstatus
|
2998
3229
|
@Region = region
|
2999
3230
|
@SecurityStatus = securitystatus
|
3231
|
+
@DisposalRecommendation = disposalrecommendation
|
3232
|
+
@MappingType = mappingtype
|
3000
3233
|
end
|
3001
3234
|
|
3002
3235
|
def deserialize(params)
|
@@ -3025,6 +3258,8 @@ module TencentCloud
|
|
3025
3258
|
@SecurityStatus << securitystatus_tmp
|
3026
3259
|
end
|
3027
3260
|
end
|
3261
|
+
@DisposalRecommendation = params['DisposalRecommendation']
|
3262
|
+
@MappingType = params['MappingType']
|
3028
3263
|
end
|
3029
3264
|
end
|
3030
3265
|
|
@@ -3673,7 +3908,7 @@ module TencentCloud
|
|
3673
3908
|
class Tag < TencentCloud::Common::AbstractModel
|
3674
3909
|
# @param Fid: 数据库标识
|
3675
3910
|
# @type Fid: Integer
|
3676
|
-
# @param Fname:
|
3911
|
+
# @param Fname: 标签名称字段
|
3677
3912
|
# @type Fname: String
|
3678
3913
|
|
3679
3914
|
attr_accessor :Fid, :Fname
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ssa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.565
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|